我的数据库中有数据,我打算使用列表视图向用户显示。这是我为显示内容而编写的函数
public class List_View extends ListActivity {
ListView lv;
Databasehelp db = new Databasehelp(this);
public void onCreate(Bundle icicle)
{
super.onCreate(icicle);
setContentView(R.layout.displayitems);
List<String> items = new ArrayList<String>();
lv = (ListView)findViewById(android.R.id.list);
Cursor cursor = db.getAllTable1(); cursor.moveToFirst();
//startManagingCursor(cursor);
lv.setAdapter(new ArrayAdapter<String>(this,
R.layout.displayitems, items));
lv.setTextFilterEnabled(true);
ListAdapter adapter=new SimpleCursorAdapter(this,
R.layout.list_example_entry, cursor,
new String[] {"name"},
new int[] {R.id.name_entry});
setListAdapter(adapter);
}
}
布局是 displayitems.xml,其中包含一个 ID 为“list”的列表视图和 list_example_entry.xml,其中包含一个线性布局内的文本视图,ID 为 name_entry
显示项目.xml
<ListView
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent">
</ListView>
list_example_entry
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/name_entry"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="28dip" />
</LinearLayout>
你们中的任何人都可以帮我解决这个问题吗?