作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
这是我设置已检查 TextView 的方法。怎么没有出现复选框?
我也添加了这个,但没有效果: listView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
<CheckedTextView
android:id="@+id/ctv_checktext"
android:layout_width="fill_parent"
android:paddingLeft="2px"
android:paddingRight="2px"
android:paddingTop="2px"
android:layout_height="wrap_content"
/>
最佳答案
(我正在回答我自己的问题,因为它在 Android API 中没有记录)
这还不够:
listView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
您需要包含 android:checkMark="?android:attr/listChoiceIndicatorMultiple"否则
<CheckedTextView
android:id="@+id/ctv_checktext"
android:layout_width="fill_parent"
android:paddingLeft="2px"
android:paddingRight="2px"
android:paddingTop="2px"
android:layout_height="wrap_content"
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
/>
关于android - 我的复选框没有出现在我的 CheckedTextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2928401/
我是一名优秀的程序员,十分优秀!