0
我使用的ListView simple_list_item_1
這是建立在其代碼是:Android是有建立在ListView中包含的ImageView和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/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有一個內置的列表視圖,它的每一行包含一個imageview和一個文本視圖, 非常感謝你
感謝您的回答,對您+1,我知道如何手動執行,但我只是問是否有構建它的事情,因爲它是一個非常常見的列表視圖,所以我認爲谷歌應該建立這樣一個列表,謝謝 – 2013-02-17 17:31:27
不錯的教程。謝謝。教程鏈接 – 2013-05-17 09:57:41
重定向到404 – shivisuper 2016-10-18 07:03:43