リストビューを使用してユーザーに表示する予定のデータベースにデータがあります。これは、コンテンツを表示するために作成した関数です
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);
}
}
レイアウトは、id "list" を持つリスト ビューを含む displayitems.xml と、id name_entry を持つリニア レイアウト内のテキストビューを含む list_example_entry.xml です。
表示項目.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>
この問題で私を助けてくれる人はいますか?