gpt4 book ai didi

android - 每个选项卡上的复选框列表

转载 作者:行者123 更新时间:2023-11-29 14:01:11 25 4
gpt4 key购买 nike

我是这个社区的新手,也是 android 开发的新手。为了我的学习,我需要做一个(是/否)问卷,分为 3 组,有些问题很长,所以我想把它的一部分做成大文本,下面的其他部分做成小文本。

我从 dev.and.com 上的教程制作了一个 TabLayout,目前我还有一个 LinearLayout 来解决我的问题

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
>

<LinearLayout
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="2dp">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/text_large"
android:textSize="16sp">
</TextView>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/text_small"
android:textSize="12sp">
</TextView>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="2dp"
android:gravity="right">
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/checkBxc">

</CheckBox>
</LinearLayout>
</LinearLayout>

同样适用于所有组。

tabLayout 的代码类似于 here

AgroupActivity 现在只显示一行文本(用于测试目的)。

如何让我的布局在每个选项卡中看起来像一个列表?或者也许还有其他一些可能性?据我了解,一个简单的 ListView 的标签中不能有任何东西(在我的例子中是复选框)?

最佳答案

您可以使用 ListView 在每个选项卡中显示类似于列表的布局。对于每个选项卡内容,您为每个选项卡使用一个 ListView:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ListView android:id="@+id/android:list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</LinearLayout>

ListView 中每一行的自定义行 (your_custom_row.xml):

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TableRow
android:gravity="left"
>
<TextView
android:id="@+id/row_textview1"
android:textSize="25sp"
android:textStyle="bold"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:lines="1"/>
<TextView
android:id="@+id/row_textview2"
android:textSize="16sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="right"
android:paddingRight="10dp"
android:lines="1"/>
</TableRow>
</TableLayout>

并使用 Adapter 将数据绑定(bind)到您的 ListView。

关于android - 每个选项卡上的复选框列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9447225/

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