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()

ccgetのインスタンスだと思いますCursorSimpleCursorAdapterこれにより、デフォルトのコンストラクターを使用してインスタンス化できます。

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

公式ドキュメントを参照してください。

于 2013-08-01T09:40:36.223 に答える