我的数据库中有数据,我打算使用列表视图显示给用户..这是我写的用来显示内容的函数
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的线性布局中的textview
displayitems.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>
你们中的任何人都可以帮我解决这个问题吗?
答案 0 :(得分: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/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,并且它会做出某些假设。主要的一个是你的布局中有一个ListView,并且它具有上面提到的特定id(这就是你得到那个错误的原因)。由于只有一个,它知道id是什么,所以没有必要专门调用它。