0

是否可以从我制作的数据数组中加载 SimpleCursorAdapter?这是加载我的数组的方式:

String[][] arrayStixoi = new String[countCategory][countCategory];
            int i = 0;
            while(ccget.moveToNext()){
                String stixoi = ccget.getString(ccget.getColumnIndex("stixoi"));
                String syggraf=ccget.getString(ccget.getColumnIndex("syggrafeas"));
                String notes=ccget.getString(ccget.getColumnIndex("syggrafeas"));
                String news=ccget.getString(ccget.getColumnIndex("syggrafeas"));
                arrayStixoi[i][0] = Integer.toString(i);
                arrayStixoi[i][1] = stixoi;
                arrayStixoi[i][2] = syggraf;
                arrayStixoi[i][3] = notes;
                arrayStixoi[i][4] = news;
                i++;
                String _id=arrayStixoi[i][0]+1;

            }

现在我希望 Array: arrayStixoi 加载 SimpleCursorAdapter,然后将此适配器添加到 ListView。

这可能吗?如何?

提前感谢您的宝贵时间。

4

1 回答 1

0

在您的代码段中,您有

ccget.moveToNext()

我假设ccgetCursor. 有了它,您可以SimpleCursorAdapter使用其默认构造函数实例化 a :

new SimpleCursorAdapter(
   this, R.layout.your_layout, 
   ccget, 
   from, 
   to,
   flags)

请参考官方文档

于 2013-08-01T09:40:36.223 回答