答案@Archie.bpgc
是正确的。通过此链接将帮助您了解要完成的工作。
让我试着解释一下:
这是您的列表适配器:
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
是要在其上写入文本的布局内的文本视图的 ID。
值是您要在列表视图上写入的内容的字符串数组