如何基于共享偏好对SQLite数据库onCreate以及onResume进行排序?

时间:2011-10-06 00:49:43

标签: android sqlite sorting preferences listadapter

我正在尝试在我的应用程序中获取数据库,以便在将数据传递到带有自定义列表适配器的列表视图之前对其进行排序。我以为我弄清楚了,但每次运行它,我都会得到一个FC。 onCreate中的代码如下:

 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);
  debtlist = (ListView)findViewById(R.id.debtlist);
  registerForContextMenu(debtlist);

    //Retrieve the users sort order
    SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(this);
    String sortorder = sp.getString("sortPref","id");
    db=new DatabaseHelper(this);
//      constantsCursor=db.getReadableDatabase().rawQuery("SELECT _ID, Debt, StartingAmount, CurrentAmount, InterestRate, DueDate, MinimumPayment "+
//                "FROM tblDebts ORDER BY _ID", null);
    if (sortorder == "intrate")
    {
        constantsCursor=db.getReadableDatabase().rawQuery("SELECT _ID, Debt, StartingAmount, CurrentAmount, InterestRate, DueDate, MinimumPayment "+
                  "FROM tblDebts ORDER BY InterestRate DESC", null);
    }
    else if (sortorder == "balance")
    {
        constantsCursor=db.getReadableDatabase().rawQuery("SELECT _ID, Debt, StartingAmount, CurrentAmount, InterestRate, DueDate, MinimumPayment "+
                  "FROM tblDebts ORDER BY CurrentAmount DESC", null);
    }
    else if (sortorder == "id")
    {
        constantsCursor=db.getReadableDatabase().rawQuery("SELECT _ID,   Debt, StartingAmount, CurrentAmount, InterestRate, DueDate, MinimumPayment "+
                  "FROM tblDebts ORDER BY _ID", null);
    }

  adapter1=new ImgCursorAdapter(this,
          R.layout.debt_row, constantsCursor,
          new String[] {DbAdapter.KEY_DEBT,
          DbAdapter.KEY_STARTINGAMOUNT},
          new int[] {R.id.toptext, R.id.bottomtext});
  debtlist.setAdapter(adapter1);
  DbAdapter debtDbAdapter = new DbAdapter(this);
  debtDbAdapter.open();
  updateTotalProgress();
  Cursor cursor = debtDbAdapter.queueAll();
  startManagingCursor(cursor);

}

当我运行我的应用程序时,我得到一个FC,看着DDMS我看到一个指向第130行的nullpointer异常,它位于我的onResume代码中:

 @Override
   public void onResume() {
    super.onResume();
    ((BaseAdapter) adapter1).notifyDataSetChanged();
    constantsCursor.requery();
    debtlist.setAdapter(adapter1);
    updateTotalProgress();
   }

有问题的一行是constanstCursor.requery();一。在我的偏好xml中,我将默认设置为“id”,但我认为不是问题。我也尝试使用相同的代码在onResume代码中设置constanstCursor,基本上强制它重新创建适配器并将其分配给列表,但这只会产生相同的NullPointer错误。

我是否缺少如何根据偏好选择排序顺序?

 <string-array name="sortArray">
    <item>Highest Interest Rate</item>
    <item>Highest Balance</item>
    <item>No Sort</item>
</string-array>
<string-array name="sortValues">
    <item>intrate</item>
    <item>balance</item>
    <item>id</item>
</string-array>

1 个答案:

答案 0 :(得分:1)

我的猜测是constantsCursor永远不会被初始化,因为这些if条件都不满足。字符串是对象,因此您无法通过这种方式将它们与==运算符进行比较(请参阅讨论in this post),因此您的所有条件都评估为假。使用Object.equals(other_object)来测试等效性,如下所示:else if (sortorder.equals("id"))

另请注意,Cursor.requery()已弃用。最好在完成后调用光标上的close(),稍后再调用另一个。也许将该数据库代码移动到返回Cursor的私有方法中。然后从onCreate()和onResume()调用该私有方法,如果这是必要的。