0

我知道 simple_list_item1 在 Android 中用于创建 ListView。simple_list_item2 是做什么用的?另外,如何更改 ListView 的整体外观?

示例代码:ListView lv; lv.setAdapter(new ArrayAdapter(this, android.R.layout.simple_list_item_1, results));

4

1 回答 1

1

simple_list_item2 是一个 LineListItem 意味着只有一个 TextView

<TextView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/text1" android:layout_width="match_parent" android:layout_height="wrap_content" android:textAppearance="?android:attr/textAppearanceListItemSmall" android:gravity="center_vertical" android:paddingLeft="?android:attr/listPreferredItemPaddingLeft" android:paddingRight="?android:attr/listPreferredItemPaddingRight" android:minHeight="?android:attr/listPreferredItemHeightSmall" />

simple_list_item2 是 TwoLineListItem 表示有 2 个 TextViews......

 <TwoLineListItem xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:minHeight="?android:attr/listPreferredItemHeight" android:mode="twoLine">

      <TextView android:id="@android:id/text1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="?android:attr/listPreferredItemPaddingLeft" android:layout_marginTop="8dip" android:textAppearance="?android:attr/textAppearanceListItem" />

      <TextView android:id="@android:id/text2" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@android:id/text1" android:layout_alignLeft="@android:id/text1" android:textAppearance="?android:attr/textAppearanceSmall" />


</TwoLineListItem>

用于http://mylifewithandroid.blogspot.in/2008/03/my-first-meeting-with-simpleadapter.html

于 2012-06-07T10:36:23.180 回答