这是我的ListView的xml:
<ListView
android:layout_width="fill_parent"
android:layout_height="0dp"
android:id="@+id/listview"
android:layout_marginTop="8dp"
android:layout_weight="8"
android:choiceMode="multipleChoice"/>
我想在用户检查一个项目时显示复选标记,但是复选框仅将其颜色更改为绿色,并且没有选中标记。为什么呢?
我无法发布图片,因为我没有足够的声誉。
答案 0 :(得分:0)
使用此:
<ListView
android:layout_width="fill_parent"
android:layout_height="0dp"
android:id="@+id/listview"
android:layout_marginTop="8dp"
android:layout_weight="8"
android:choiceMode="singleChoice"/>
这将解决您的问题 您可以进一步了解:http://developer.android.com/reference/android/widget/AbsListView.html#attr_android:choiceMode