如何使用圖片和摘要(項目列表文本下的文本)製作一個列表,對項目的描述很少。使用摘要製作ListActivity
我的代碼與圖片列表。我如何添加摘要?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/icon"
android:layout_width="22px"
android:layout_height="22px"
android:layout_marginLeft="4px"
android:layout_marginRight="10px"
android:layout_marginTop="4px"
android:src="@drawable/ic_launcher" >
</ImageView>
<TextView
android:id="@+id/label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@+id/label"
android:textSize="20px" >
</TextView>
</LinearLayout>
活動類:
public class MyListActivity extends ListActivity {
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
String[] values = new String[] { "Android", "iPhone", "WindowsMobile",
"Blackberry", "WebOS", "Ubuntu", "Windows7", "Max OS X",
"Linux", "OS/2" };
// Use your own layout
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
R.layout.rowlayout, R.id.label, values);
setListAdapter(adapter);
}
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
String item = (String) getListAdapter().getItem(position);
Toast.makeText(this, item + " selected", Toast.LENGTH_LONG).show();
}
}
你能告訴我什麼是摘要的方法,因爲我更喜歡留在我的代碼中。謝謝 – user1257040 2012-03-24 19:55:43
方法摘要?你是什麼意思?如果你想適應你的問題,你可以在你的MyListActivity上使用你的xml和幾乎相同的代碼。你只需要創建一個適配器和getView(int position,View convertView,ViewGroup parent)。我會盡力完成我的答案。 – 2012-03-24 20:09:40
摘要=該項目下的小說明,它就像另一個文本視圖。 – user1257040 2012-03-24 20:47:56