使用Cursor和ListView适配器获取大量数据

时间:2010-12-02 00:28:41

标签: android database listview adapter

我正在使用自定义CursorAdapter从SQLite数据库中获取数据并在列表视图中显示它。该数据库包含2列,大约8.000行。所以我正在寻找一种方法来查询和尽快显示所有数据。我用asyncTask完成了这个代码:

private class PrepareAdapter extends AsyncTask<Void,Void,CustomCursorAdapter > {

 @Override
 protected void onPreExecute() {
     dialog.setMessage("Wait");
     dialog.setIndeterminate(true);
     dialog.setCancelable(false);
     dialog.show();


     Log.e("TAG","Posle nov mAdapter");
 }

 @Override
 protected CustomCursorAdapter doInBackground(Void... unused) {

   Cursor cursor =  myDbNamesHelper.getCursorQueryWithAllTheData();
   mAdapter.changeCursor(cursor);
   startManagingCursor(cursor);
   Log.e("TIME","posle start managing Cursor" + String.valueOf(SystemClock.elapsedRealtime()-testTime)+ " ms");
     testTime=SystemClock.elapsedRealtime();

     mAdapter.initIndexer(cursor);
     return mAdapter;
 }

 protected void onPostExecute(CustomCursorAdapter result) {

     TabFirstView.this.getListView().setAdapter(result);
     Log.e("TIME","posle adapterSet" + String.valueOf(SystemClock.elapsedRealtime()-testTime)+ " ms");
    testTime=SystemClock.elapsedRealtime();
     dialog.dismiss();
 }

}

除了我需要将结果设置为适配器的部分外,这个工作正常。我做了一些时间测试,需要大约700毫秒来使它超过startManagingCursor。问题是它需要大约7秒才能超过setAdapter(结果)并且它在UI线程中运行,因此它使我的应用程序无响应(进度对话框冻结,有时会执行应用程序)。我如何减少这个时间?我可以使这个也在后台运行或以任何方式提高响应能力吗?

TNX。

public class CustomCursorAdapter extends SimpleCursorAdapter implements OnClickListener,SectionIndexer,Filterable,
                                    android.widget.AdapterView.OnItemClickListener{

    private Context context;
    private int layout;
    private AlphabetIndexer alphaIndexer;

    public CustomCursorAdapter (Context context, int layout, Cursor c, String[] from, int[] to) {
        super(context, layout, c, from, to);
        this.context = context;
        this.layout = layout;

    }
    public void initIndexer(Cursor c){
         alphaIndexer=new AlphabetIndexer(c, c.getColumnIndex(DataBaseNamesHelper.COLUMN_NAME), " ABCDEFGHIJKLMNOPQRSTUVWXYZ");
    }

    @Override
    public View newView(Context context, Cursor cursor, ViewGroup parent) {

        Cursor c = getCursor();

        final LayoutInflater inflater = LayoutInflater.from(context);
        View v = inflater.inflate(layout, parent, false);

        int nameCol = c.getColumnIndex(DataBaseNamesHelper.COLUMN_NAME);

        String name = c.getString(nameCol);

        /**
         * Next set the name of the entry.
         */
        TextView name_text = (TextView) v.findViewById(R.id.name_entry);
        if (name_text != null) {
            name_text.setText(name);
        }

        int favCol = c.getColumnIndex(DataBaseNamesHelper.COLUMN_FAVOURITED);
        int fav = c.getInt(favCol);

        int idCol = c.getColumnIndex(DataBaseNamesHelper.COLUMN_ID);

        Button button = (Button) v.findViewById(R.id.Button01);
        button.setOnClickListener(this);
        button.setTag(c.getInt(idCol));
        if(fav==1){
            button.setVisibility(View.INVISIBLE);
        }
        else button.setVisibility(View.VISIBLE);

        return v;
    }

    @Override
    public void bindView(View v, Context context, Cursor c) {

        int nameCol = c.getColumnIndex(DataBaseNamesHelper.COLUMN_NAME);

        String name = c.getString(nameCol);

        /**
         * Next set the name of the entry.
         */
        TextView name_text = (TextView) v.findViewById(R.id.name_entry);
        if (name_text != null) {
            name_text.setText(name);
        }
        int favCol = c.getColumnIndex(DataBaseNamesHelper.COLUMN_FAVOURITED);
        int fav = c.getInt(favCol);

        Button button = (Button) v.findViewById(R.id.Button01);
        button.setOnClickListener(this);
        int idCol = c.getColumnIndex(DataBaseNamesHelper.COLUMN_ID);
        button.setTag(c.getInt(idCol));
      //  Log.e("fav",String.valueOf(fav));
        if(fav==1){
            button.setVisibility(View.INVISIBLE);
        } else button.setVisibility(View.VISIBLE);
    }



    @Override
    public int getPositionForSection(int section) {
        return alphaIndexer.getPositionForSection(section);
    }

    @Override
    public int getSectionForPosition(int position) {
          return alphaIndexer.getSectionForPosition(position);
    }

    @Override
    public Object[] getSections() {
          return alphaIndexer.getSections();
    }
    @Override
    public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
        Log.e("item Click", arg1.toString()+ " position> " +arg2);
    }

    @Override
    public void onClick(View v) {
            if(v.getId()==R.id.Button01){
                //Log.e("Button Click", v.toString()+ " position> " +v.getTag().toString());
                v.setVisibility(View.INVISIBLE);
                DataBaseNamesHelper dbNames = new DataBaseNamesHelper(context);
                dbNames.setFavouritesFlag(v.getTag().toString());
            }

        }



}

4 个答案:

答案 0 :(得分:24)

加载适配器的时间较慢的原因是CursorAdapter对Cursor.getCount()的内部调用。

Android中的游标被懒散加载。在需要之前不会加载结果。当CursorAdapter调用getCount()时,这会强制查询完全执行并计算结果。

下面是几个讨论这个问题的链接。

http://groups.google.com/group/android-developers/browse_thread/thread/c1346ec6e2310c0c

http://www.androidsoftwaredeveloper.com/2010/02/25/sqlite-performance/

我的建议是拆分您的查询。仅加载屏幕上可见列表项的数量。当用户滚动加载下一组时。非常像GMail和市场应用程序。不幸的是,我没有一个方便的例子:(

这不能回答你的问题,但希望它能提供一些见解:)

答案 1 :(得分:3)

不确定为什么setAdapter需要这么长时间。我做了大约5000行比这快得多。但是,我通常首先创建一个没有游标的适配器,使用“空”适配器调用setAdapter,然后使用AsyncQueryHandler子类启动异步查询。然后,在onQueryComplete中,我在适配器上调用changeCursor。

答案 2 :(得分:2)

好吧,我现在只能给你一个愚蠢的建议 - 在一个单独的线程中开始查询,该线程将遍历整个数据库并创建你的8000行游标。

在UI线程中,创建一个光标,将限制设置为100左右,并将其用于适配器。如果用户滚动到列表的底部,您可以添加带有ProgressBar的行,或者指示还有更多内容。

完成第二个线程后,请更换适配器。

或者,您可以使用数组适配器或类似的东西,在第二个线程中执行一堆查询,每个查询包含100行,并在它们进入时将它们添加到数组适配器中。这样也可以更轻松地添加底部的虚拟行告诉用户抓住他们的马匹。

一个注意事项 - 我认为同时从两个线程读取数据库是安全的,但在写入时要小心。我的应用程序有一个很好的错误,当我在一个单独的线程中进行数据库操作时它会破坏数据库,直到我添加了正确的锁定(你也可以在数据库中启用)。

编辑:当然,AsyncQueryHandler,我知道有类似的东西,但我不记得名字了。当然,比单独的线程更优雅。

顺便说一句 - 你是如何存储数据库的?它只是内部存储中的常规数据库文件吗?

答案 3 :(得分:1)

嗨,我尝试用超过50000的力量来实现这个目标。我认为我的代码可以为你提供更好的结果,因为你只有8000条记录。

1)使用内容提供者而不是sqlite。 2)使用loadermanager回调异步加载游标 3)用于搜索使用FTS表。 4)使用索引优化ur db。

相信我,即使使用sectionIndexer,也可以使用8000行进行非常精细的操作。

如果您有任何疑问,请告诉我。

如果您找到了更好的解决方案,您认为可以处理50000行,请告诉我。