2

我的应用程序中有一个具有以下属性的 ListView:

    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:choiceMode="singleChoice"
    android:clickable="true"
    android:fastScrollEnabled="true"
    android:drawSelectorOnTop="true" 
    android:focusable="true"
    android:focusableInTouchMode="true"

但我在屏幕上看不到选择器。我需要一个可见的选择器,如何使选择器可见并正常工作?在“触摸模式”中也一样吗?

4

1 回答 1

0
    <ListView 
            android:id="@+id/..."
            android:choiceMode="singleChoice" 
            android:listSelector="@android:color/darker_gray" />
于 2013-01-26T18:45:52.490 回答