gpt4 book ai didi

android,带复选框的 ListView

转载 作者:行者123 更新时间:2023-11-30 01:41:28 27 4
gpt4 key购买 nike

我已经阅读了一些关于此事的帖子,但仍然无法正常工作。我想要一个带有复选框的 ListView 。这是我的 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>

这是我希望显示此 ListView 的 Activity 中 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) {

}
});

然而,当我开始 Activity 并尝试检查它时,它看起来像(屏幕处于按下状态): enter image description here

我的方法有什么问题?

最佳答案

我认为问题在于您的项目 View 中有一个 LinearLayout。它不能将其状态传播给 child 。

我认为您有 2 个选择。

第一个是删除 LinearLayout。您的 View 目前未实现 Checkable。当您删除它时,CheckedTextView 应该可以工作。

第二种选择是使用 CheckedLinearLayout 并让您的 child 拥有此属性:

  android:duplicateParentState="true"`

您可以在线找到CheckedLinearLayout 的实现。

关于android,带复选框的 ListView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34452423/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com