-1

リストビューを使用してユーザーに表示する予定のデータベースにデータがあります。これは、コンテンツを表示するために作成した関数です

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>

この問題で私を助けてくれる人はいますか?

4

1 に答える 1

3

カーソルを呼び出してから、配列アダプターを設定しようとしました。そして、カーソルアダプター...

ArrayAdapter 呼び出しを取り除きます。必要ありません。moveToFirst()また、カーソルをアダプターにフィードするときに呼び出す必要はありません。アダプターが処理します。

次のようになります。

public void onCreate(Bundle icicle) 
{ 
    super.onCreate(icicle); 
    setContentView(R.layout.displayitems); 

    Cursor cursor = db.getAllTable1();
    startManagingCursor(cursor); 

    SimpleCusrorAdapter adapter = new SimpleCursorAdapter(this, 
           R.layout.list_example_entry, cursor, 
           new String[] {"name"}, 
           new int[] {R.id.name_entry}); 
    setListAdapter(adapter);  
 } 

編集

エラーは、それが言うことを正確に意味します。ListActivity を使用している場合、リストに id があることが期待されます@id/android:list。したがって、ListView xml を次のように変更します。

<ListView xmlns:android="http://schemas.android.com/apk/res/android"  
    android:orientation="vertical"  
    android:id="@id/android:list"
    android:layout_width="match_parent"  
    android:layout_height="match_parent">  
</ListView>  

コメントの最後の質問が、なぜ を実行する必要がないのかに関連している場合findViewById、それは ListActivity を使用しているためであり、特定の前提を置いています。主なものは、レイアウトに 1 つの ListView があり、上記の特定の ID があることです (そのため、エラーが発生しました)。1つしかなく、IDが何であるかを知っているので、特に呼び出す必要はありません。

于 2012-06-19T14:07:49.520 に答える