gpt4 book ai didi

安卓。 ListView 中的单选按钮

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:18:44 24 4
gpt4 key购买 nike

我动态生成了 ListView,它包含作为列表项的单选按钮。

是否可以在该 ListView 或这些单选按钮中使用单选组功能。

我的意思是,如果用户选择了一个单选按钮,那么之前选择的单选按钮将被取消选择。

这是我目前的解决方案,我不太喜欢。我只是保存选定的单选按钮,如果另一个将被选中,取消选择保存的那个。

感谢您的建议或链接。

这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@drawable/bg_tile"
android:padding="10dp">
<TextView
android:id="@+id/text_station_name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:text="TEST"
android:textColor="@color/black"
android:background="@color/transparent_white"/>
<ListView
android:id="@+id/list_lines"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</LinearLayout>

项目.xml:

<?xml version="1.0" encoding="utf-8"?>
<RadioButton xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rb_lineId"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="@color/black"
android:paddingLeft="50dp"
android:background="@drawable/selector_custombutton"/>

但我也试过这个:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@drawable/bg_tile"
android:padding="10dp">
<TextView
android:id="@+id/text_station_name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:text="TEST"
android:textColor="@color/black"
android:background="@color/transparent_white"/>
<RadioGroup
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ListView
android:id="@+id/list_lines"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</RadioGroup>
</LinearLayout>

最佳答案

我想你想要android:choiceMode="singleChoice" .实现起来有点棘手(我自己也不知 Prop 体细节),但这是一个起点。

关于安卓。 ListView 中的单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4343834/

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