我不確定您要搜索的是什麼。 TwoLineListItem
是一個簡單的小部件,如果您搜索SDK/platforms/android-x/data/res/layout
中的layout
文件夾,則使用您可以輕鬆查看的佈局。這裏是一個爲Jelly Bean
:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView android:id="@android:id/text1"
android:textSize="16sp"
android:textStyle="bold"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView android:id="@android:id/text2"
android:textSize="16sp"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
窗口小部件的代碼是very simple to replicate。
你貼什麼基本上就是我要找的,但在我看來,這使得該表看上去比以前略有不同,當TwoLineListItem可以使用原生 - 似乎有一些填充從頂部失蹤雙方可能,並且text2尺寸不像text1尺寸那麼大。 –
也許它與我使用simple_list_item_2初始化陣列適配器有關? –
是的,這是可能的。 simple_list_item_2.xml是不同的。你可以在這裏找到它的平臺/ Android的17 /數據/ RES /佈局/ simple_list_item_2.xml – Henry