棉花糖RelativeLayout使用alignBaseline表现得很奇怪

时间:2015-10-07 11:40:56

标签: android android-layout android-relativelayout android-6.0-marshmallow

在Android 6.0 Marshmallow上,相对于RelativeLayout中ImageView的EditText与属性baseline和layout_alignBaseline的定位不再起作用。甚至可以在Android studio的布局编辑器中观察到这种行为。在一个真正的Android Marshmallow设备或emulatr上,我的情况下EditText移出屏幕并且不可见。我是否会错过一些变化,这是一个错误吗?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivityFragment">

<ImageView
    android:layout_width="48dp"
    android:layout_height="48dp"
    android:id="@+id/imageView"
    android:src="@drawable/icon_category_geography_raster"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:baselineAlignBottom="true"
    android:background="#00ffff"
     />

<EditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/editText"
    android:layout_alignParentTop="true"
    android:layout_toRightOf="@id/imageView"
    android:background="#ff0000"
    android:inputType="text"
    android:hint="Hint"
    android:layout_alignBaseline="@id/imageView" />

我创建了Android Studio布局编辑器的屏幕截图。这两个屏幕截图之间的区别仅在于API级别的更改。

我创建了一个示例项目 https://github.com/mikegr/baseline

Layout Editor with API Level 22 Layout Editor with API Level 23

1 个答案:

答案 0 :(得分:0)

这是在https://code.google.com/p/android/issues/detail?id=73697&thanks=73697

上报告的错误

自API11起,您只需使用android:baselineAlignBottom="true"

即可

在API11下方,您可以覆盖getBaseLine()

更新到Android Support Library 23.2.1,这可能会解决您的问题。