通過@Archie.bpgc
答案是正確的。通過This Link這將幫助你瞭解要做什麼。
讓我試着解釋一下:
這裏就是你的列表適配器:
String Values [] = {"value 1","Value 2"......}
YourlistAdapter = new ArrayAdapter
(this, R.layout.listlayout, R.id.listTextView,Values);
YourListView.setAdapter(listAdapter);`
而且R.layout.listlayout:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/listTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="your_color"
android:text="TextView" />
現在我希望你明白了。
R.layout.listlayout
是您的列表視圖的佈局。
listTextView
是要在其上編寫文本的佈局內的文本視圖的標識。
值是你想寫在列表視圖的內容的字符串數組
請看這裏:http://stackoverflow.com/questions/4533440/android-listview-text-color – 2012-07-31 06:14:37