0

这是我的 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"/>

我想在用户选中一项时显示复选标记,但复选框仅将其颜色更改为绿色并且没有复选标记。为什么?

我不能发布图片,因为我没有足够的声誉。

4

1 回答 1

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

于 2015-03-07T13:26:21.497 回答