我有一个带有列表视图和编辑文本的片段。当edittext
获得焦点时,除edittext之外的所有布局都会变黑一秒钟。
如果我按住 edittext 单击然后周围的布局保持黑色,直到我滚动列表或触摸屏幕,它只发生在 Jelly Bean 4.1.2 上。
这是我的xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@null"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/search_layout"
android:layout_width="fill_parent"
android:layout_height="49.33dp"
android:background="@color/grey">
<EditText
android:id="@+id/search_box"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_gravity="center"
android:layout_marginRight="5dp"
android:background="@drawable/searchbox"
android:drawableLeft="@drawable/search_icon"
android:ems="8"
android:hint="@string/search_hint"
android:maxLines="1"
android:padding="3dp"
android:paddingLeft="15dp"
android:paddingRight="25dp"
android:singleLine="true" />
</RelativeLayout>
<com.emilsjolander.components.stickylistheaders.StickyListHeadersListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/search_layout"
android:divider="@color/light_blue"
android:dividerHeight="0.67dp" />
</RelativeLayout>
这种行为的原因是什么?