我正在使用 AVD 在不同的 API 中调试我的应用程序。使用 4.2.1(或 API 16/17)目标平台,一切顺利。但是当我使用 API 8 时,复选框之一不会被切换。是错误还是什么?我的代码如下:
listview_item_checkbox.xml
<CheckedTextView
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:textSize="22sp"
android:paddingTop="7dp"
android:paddingBottom="7dp"
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
/>
MainActivity.java
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
CheckedTextView checkBox = (CheckedTextView) v.findViewById(R.id.text1);
final int finalPosition = position;
if (checkBox != null) {
checkBox.toggle();