0
我想顯示一個ImageView
,2 TextViews
和一個Rating Bar
在自定義列表適配器一個節點,但它裁剪當我運行這裏的代碼是自定義列表的XML代碼 Here is the picture of listAndroid:如何調整自定義列表視圖?
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>
爲什麼使用'TableLayout'代替'RelativeLayout'? ...也似乎問題不在這裏,但在佈局中,你有一個列表視圖 – Selvin
相對佈局是否像這樣在自定義佈局中工作? – SFAH
是的,它的工作原理。發佈你的Listview或Recyclerview佈局 –