-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); 
          }             
     }

布局是 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>

你们中的任何人都可以帮我解决这个问题吗?

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>  

如果您评论中的最后一个问题与您为什么不必执行 a 相关findViewById,那是因为您使用的是 ListActivity,并且它做出了某些假设。主要是您的布局中有一个 ListView 并且它具有上面提到的特定 id(这就是您收到该错误的原因)。由于只有一个而且它知道 id 是什么,所以没有必要专门调用它。

于 2012-06-19T14:07:49.520 回答