我的MainActivity中有一个简单的列表视图,我希望用数据表填充我的数据库。但它不起作用。我只是得到一个没有任何列表迹象的白色活动。
据我所知,我需要扩展ListActivity或Activity的Activity。 然后获取Listview并设置SimpleCursorAdapter对象。
一些教程建议使用如下代码:
setContentView(myListView)
那会是什么?
首先是(我认为)相关代码:
MainActivity.java
public class MainActivity extends ListActivity {
ListView list;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
showTasks();
}
...
...
...
public void showTasks() {
SubtaskDbHelper thelper = new SubtaskDbHelper(getApplicationContext());
SQLiteDatabase db = thelper.getReadableDatabase();
Cursor c = db.rawQuery("SELECT * FROM task", null);
CursorAdapter ca = new SimpleCursorAdapter(
getApplicationContext(),
R.layout.list_element,
c,
new String[] {Task._ID,Task.TITLE,Task.CONTENT, Task.DUEDATE},
new int[] {R.id.list_item_id, R.id.list_item_title, R.id.list_item_content, R.id.list_item_duedate},
2 );
setListAdapter(ca);
c.close();
db.close();
}
}
我还尝试使用" Activity"。
扩展课程我不知道我错过了什么才能让它运转起来。
activity_main.xml中
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@android:id/list"
android:layout_alignParentStart="true"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true" />
</RelativeLayout>
list_element.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/list_item_id"/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/list_item_title"/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/list_item_content"/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/list_item_duedate"/>
</LinearLayout>
答案 0 :(得分:0)
我找到了解决方案。 问题是我在ShowTasks方法中关闭了cursoradapter。
Cursor c = db.rawQuery("SELECT * FROM task", null);
...
...
...
c.close();
不要关闭Cursoradapter。
public void showTasks() {
SubtaskDbHelper thelper = new SubtaskDbHelper(getApplicationContext());
SQLiteDatabase db = thelper.getReadableDatabase();
Cursor c = db.rawQuery("SELECT * FROM task", null);
CursorAdapter ca = new SimpleCursorAdapter(
getApplicationContext(),
R.layout.list_element,
c,
new String[] {Task._ID,Task.TITLE,Task.CONTENT, Task.DUEDATE},
new int[] {R.id.list_item_id, R.id.list_item_title, R.id.list_item_content, R.id.list_item_duedate},
2 );
setListAdapter(ca);
// remove this -> c.close();
db.close();
}