gpt4 book ai didi

安卓 : how to adjust custom list views?

转载 作者:行者123 更新时间:2023-11-30 00:42:44 27 4
gpt4 key购买 nike

我想在自定义列表适配器的一个节点中显示一个 ImageView、2 个 TextViews 和一个 Rating Bar 但当我将其裁剪时运行代码 这里是自定义列表的xml代码 Here is the picture of list

custom_list.xml

?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TableRow>
<ImageView
android:id="@+id/img"
android:layout_width="50dp"
android:layout_height="50dp"/>

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Name"
android:id="@+id/tv_name"
android:layout_column="2" />

</TableRow>

<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView
android:textAppearance="?android:attr/textAppearanceMedium"
android:id="@+id/tv_deal"
android:layout_column="2"
android:text="deals" />
</TableRow>

<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">

<RatingBar android:id="@+id/rb_rating"
android:layout_column="2" />
</TableRow>

最佳答案

为您的 ListView 项目使用以下 XML:

 <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
android:id="@+id/img"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" />

<TextView
android:id="@+id/tv_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/img"
android:text="Name"
android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
android:id="@+id/tv_deal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/img"
android:text="deals"
android:textAppearance="?android:attr/textAppearanceMedium" />


<RatingBar
android:id="@+id/rb_rating"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_deal" />
</RelativeLayout>

关于安卓 : how to adjust custom list views?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42297041/

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