我正在使用simple_list_item_1
内置的listview,它的代码是:
<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/textAppearanceLarge"
android:gravity="center_vertical"
android:paddingLeft="6dip"
android:minHeight="?android:attr/listPreferredItemHeight"
/>
我这样使用它:
String functions[] = new String[] { "asdf", "asdfasdf",
"asdf", "asdfasdfasdf" };
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setListAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, functions));
}
它工作得很好,但我问android是否有一个内置listview,它的每一行都包含一个imageview和一个textview,非常感谢