编辑文本获得焦点时奇怪的布局渲染

时间:2013-09-02 11:13:46

标签: android android-layout

我有一个包含listview和edittext的片段。 当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>

这种行为的原因是什么?

1 个答案:

答案 0 :(得分:0)

将以下行添加到listview(在xml中)并尝试..

android:cacheColorHint="#00000000"

希望它有效!!