1

我有个问题。:) 在我正在开发的一个应用程序中,在一个部分中,我有两个选项卡,两个选项卡都由它们各自的片段和一个列表视图运行。
现在,我需要用我在 SQLite 数据库中读取的数据填充这些列表。我为 DB 部分创建了几乎所有必要的类,但我被困在需要获取这些数据的部分

 public List<String> getAllRockBands() {
     List<String> bandList = new ArrayList<String>();

     String selection = BAND_GENRE + "=1";
     String orderBy = BAND_NAME+" ASC";

     SQLiteDatabase db = sqLiteHelper.getReadableDatabase();
     Cursor cursor = db.query(BANDDATABASE_TABLE,new String[]{BAND_NAME}, selection,  null, null, null, orderBy);

     int index = cursor.getColumnIndex(BAND_NAME);

     if (cursor.moveToFirst()) {
         do {
          String bandName = cursor.getString(index);
              bandList.add(bandName);
         } while (cursor.moveToNext());
     }

     return bandList;
 }

从我的 sqlhelper 类到我的 listfragment 扩展类。它的代码目前是:

public class RockAllFragment extends SherlockListFragment {

private String[] bandList;

 @Override
  public View onCreateView(LayoutInflater inflater, ViewGroup container,
         Bundle savedInstanceState) {

     return inflater.inflate(R.layout.my_list, null);
 }

  @Override
 public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setRetainInstance(true);
 }

 @Override
 public void onViewCreated(View view, Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onViewCreated(view, savedInstanceState);
    setListAdapter(new ArrayAdapter<String>(getSherlockActivity(),   android.R.layout.simple_list_item_multiple_choice, android.R.id.text1, bandList));
 }
}

private BandDatabaseAdapter mySQLiteAdapter;使用仅适用于 Activity 扩展类而不适用于 ListFragment 的方法?完成我想做的事情的最佳方式是什么?(PS 我对 Android 编程很陌生,如果我犯了一些小错误,我很抱歉 :)

谢谢,
阿莱克萨

4

2 回答 2

1

CursorAdapter就是你想要的。

您只需将其连接到从查询返回的光标。只需扩展 CursorAdapter 并实现newView()andbindView()方法。

于 2012-12-26T04:49:25.790 回答
0

最后我发现这是一个笨拙的入门错误,只需使用mySQLiteAdapter = new DatabaseAdapter(getSherlockActivity());atonViewCreated并使用数组适配器就可以了。

于 2013-01-18T16:34:38.140 回答