我已经阅读了一些有关此事的帖子,但仍然无法让它发挥作用。我想要一个带有复选框的列表视图。这是我的activity_choose_songs.xml
:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/songs_to_choose"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/sd_cards_playlist"
android:textStyle="bold"
android:gravity="center"
android:textSize="30sp"
android:paddingTop="5dp"
android:paddingBottom="5dp"
/>
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:listSelector="@drawable/list_selector"
android:divider="#242424"
android:dividerHeight="1dp"
android:layout_below="@+id/songs_to_choose">
</ListView>
</RelativeLayout>
这是特定项目的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:padding="5dp"
android:background="@drawable/list_selector">
<CheckedTextView
android:id="@+id/checkedTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp"
android:padding="10dp"
android:gravity="center"
android:drawableStart="?android:attr/listChoiceIndicatorMultiple"
android:textColor="#f3f3f3" />
</LinearLayout>
以下是我希望显示列表视图的活动中onCreate()
方法的摘录:
ListAdapter adapter = new SimpleAdapter(getApplicationContext(),chosenSongsListData,
R.layout.playlist_checked_item,new String[]{"songTitle"},new int[]{R.id.checkedTextView});
setListAdapter(adapter);
ListView lw = getListView();
lw.setItemsCanFocus(false);
lw.setChoiceMode(AbsListView.CHOICE_MODE_MULTIPLE);
lw.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
}
});
然而,当我开始活动并且我试图检查它时,它看起来像(屏幕处于按下状态):
我的方法出了什么问题?
答案 0 :(得分:2)
我认为问题是你的项目视图中有LinearLayout
。它无法将其状态传播给孩子。
我认为你有两种选择。
首先是删除LinearLayout
。您的观点目前尚未实施Checkable
。删除它时CheckedTextView
应该可以正常工作。
第二个选项是使用CheckedLinearLayout
并让您的孩子拥有此属性:
android:duplicateParentState="true"`
您可以在线找到CheckedLinearLayout
的实施。
答案 1 :(得分:-1)
您必须在项目点击监听器中执行此操作,下面给出示例代码。
lw.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
CheckBox check = (CheckBox) view.findViewById(R.id.checkedTextView);
check.toggle(); //check or un-check the checkbox
}
});