-1

ListView 项目有一个自定义布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="10dip"
    android:background="@android:color/white"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textStyle="bold"
        android:textAppearance="?android:attr/textAppearanceLarge" />

</LinearLayout>

现在,当我按项目单击时,我看不到任何突出显示;我知道我可以使用选择器来做到这一点,但可能有一种简单的方法来启用默认突出显示?

4

1 回答 1

0

是的。删除行:

android:background="@android:color/white"
于 2013-02-03T09:41:25.743 回答