0

我一直在搞乱 SimpleCursorAdapter 和 Listview 并得到不同的结果。起初我在我的列表视图上得到了一些结果,但是布局并不好,所以我决定修改它。然而,这似乎毁了一切,现在 APP 不断崩溃并出现空指针异常类型错误,我似乎无法弄清楚。

我的列表视图的 XML

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_below="@+id/linearLayout1" >





        <ListView
            android:id="@+id/list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true" >

        </ListView>

    </RelativeLayout>

</RelativeLayout>

</ScrollView> 

我的活动课与 ListActivity

public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.playerdata);
    //list = (ListView) findViewById(R.id.list);

    mDbHelper = new PlayerDbAdapter(this);
    mDbHelper.open();
    fillData();
    registerForContextMenu(getListView());
}

 private void fillData() {
    Cursor players = mDbHelper.fetchAllPlayers();
    startManagingCursor(players);

    // Create an array to specify the fields we want to display in the list (only TITLE)
    String[] from = new String[]{PlayerDbAdapter.KEY_TITLE,PlayerDbAdapter.KEY_BODY};


    // and an array of the fields we want to bind those fields to (in this case just text1)
    int[] to = new int[]{R.id.playerPosition,R.id.playerName};

    // Now create a simple cursor adapter and set it to display
    SimpleCursorAdapter playerlist = 
        new SimpleCursorAdapter(this, R.layout.playerinfo , players, from, to);
    setListAdapter(playerlist);
}

日志猫

04-15 20:09:07.326: E/AndroidRuntime(600): FATAL EXCEPTION: main
04-15 20:09:07.326: E/AndroidRuntime(600): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{your.dissertation.project/your.dissertation.project.PlayersActivity}: java.lang.NullPointerException
04-15 20:09:07.326: E/AndroidRuntime(600):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1544)
04-15 20:09:07.326: E/AndroidRuntime(600):  at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1638)
04-15 20:09:07.326: E/AndroidRuntime(600):  at android.app.ActivityThread.access$1500(ActivityThread.java:117)
04-15 20:09:07.326: E/AndroidRuntime(600):  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:928)
04-15 20:09:07.326: E/AndroidRuntime(600):  at android.os.Handler.dispatchMessage(Handler.java:99)
04-15 20:09:07.326: E/AndroidRuntime(600):  at android.os.Looper.loop(Looper.java:123)
04-15 20:09:07.326: E/AndroidRuntime(600):  at android.app.ActivityThread.main(ActivityThread.java:3647)
04-15 20:09:07.326: E/AndroidRuntime(600):  at java.lang.reflect.Method.invokeNative(Native Method)
04-15 20:09:07.326: E/AndroidRuntime(600):  at java.lang.reflect.Method.invoke(Method.java:507)
04-15 20:09:07.326: E/AndroidRuntime(600):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
04-15 20:09:07.326: E/AndroidRuntime(600):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
04-15 20:09:07.326: E/AndroidRuntime(600):  at dalvik.system.NativeStart.main(Native Method)
04-15 20:09:07.326: E/AndroidRuntime(600): Caused by: java.lang.NullPointerException
04-15 20:09:07.326: E/AndroidRuntime(600):  at android.app.Activity.setContentView(Activity.java:1657)
04-15 20:09:07.326: E/AndroidRuntime(600):  at android.app.ListActivity.ensureList(ListActivity.java:312)
04-15 20:09:07.326: E/AndroidRuntime(600):  at android.app.ListActivity.getListView(ListActivity.java:297)
04-15 20:09:07.326: E/AndroidRuntime(600):  at your.dissertation.project.PlayersActivity.<init>(PlayersActivity.java:27)
04-15 20:09:07.326: E/AndroidRuntime(600):  at java.lang.Class.newInstanceImpl(Native Method)
04-15 20:09:07.326: E/AndroidRuntime(600):  at java.lang.Class.newInstance(Class.java:1409)
04-15 20:09:07.326: E/AndroidRuntime(600):  at android.app.Instrumentation.newActivity(Instrumentation.java:1021)
04-15 20:09:07.326: E/AndroidRuntime(600):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1536)
04-15 20:09:07.326: E/AndroidRuntime(600):  ... 11 more

我的光标类

 public Cursor fetchAllPlayers()
  {
    return this.mDb.query("players", new String[] { "_id", "Player_Name", "Player_Position" }, null, null, null, null, null);
  }
4

3 回答 3

3

你很接近,但我看到了几个问题:

  1. startManagingCursor 已弃用。您应该改用 CursorLoader。这在 Android 培训课程Loading Data in the Background 中有记录。这不会导致您的 RuntimeException,但这是不好的编程习惯。
  2. 您的 ListView 和 SimpleCursorAdapter 的设置需要工作。您犯了一个错误,这在使用 SimpleCursorAdapter 的人中很常见。构造函数的参数是
SimpleCursorAdapter(上下文,item_layout_file,光标,from_columns,to_fields)

在哪里

  • 上下文是一个上下文对象
  • item_layout_file是一个 layout.xml 文件,其中包含列表视图的一个项目或行的布局。在您的情况下,此布局文件将包含一个 TextView(或两个?),而不是ListView。您正在创建一个绑定到 ListView 的对象,而不是 ListView 本身。
  • 游标是包含数据的游标
  • from_columns是一个包含列名的字符串数组
  • to_fields是一个整数数组,包含项目布局文件中视图对象的资源 ID。

此外,还有这些要求:

  • from_columns中的元素数量必须与to_fields中的元素数量相同我怀疑这是导致错误的原因
  • 光标必须包含名为“_ID”的列。

但是,from_columns不必包含光标中的所有列。

于 2013-04-15T21:17:50.107 回答
0

改变
String[] from = new String[]{PlayerDbAdapter.KEY_TITLE,PlayerDbAdapter.KEY_BODY};

String[] from = new String[]{PlayerDbAdapter.KEY_TITLE};
于 2013-04-15T21:55:16.977 回答
0

ListView应该有一个 idandroid:id="@android:id/list"不是android:id="@+id/list"

于 2013-04-15T22:14:01.747 回答