1
データベースをAndroid ExpandableListに読み込もうとしていますが、CursorTreeメソッドとSimpleCursorTreeメソッドを最小限の成功で使用しようとしたので、今すぐ取得しようとしていますBaseExpandableListAdapterを使用して作業します。何らかの理由で私が得るのはカテゴリですが、カテゴリの実際のリストではありません。何が間違っていますか?カーソルから2次元文字列配列を埋め込む
public static String[][] sortSpellNames(){
int groupnmbr = 0;
int childnmbr = 0;
String[] aGroups = {"Combat", "Detection", "Health", "Illusion", "Manipulation"};
String[] Combat = new String[grabList("SHADOWRUNSPELLS",new String[]{"Name"}, "'Category' like 'Combat'").getCount()],
Detection = new String[grabList("SHADOWRUNSPELLS",new String[]{"Name"}, "'Category' like 'Detection'").getCount()],
Health = new String[grabList("SHADOWRUNSPELLS",new String[]{"Name"}, "'Category' like 'Health'").getCount()],
Illusion = new String[grabList("SHADOWRUNSPELLS",new String[]{"Name"}, "'Category' like 'Illusion'").getCount()],
Manipulation = new String[grabList("SHADOWRUNSPELLS",new String[]{"Name"}, "'Category' like 'Manipulation'").getCount()];
Cursor cursor;
while(groupnmbr < aGroups.length){
childnmbr = 0;
cursor = grabList("SHADOWRUNSPELLS",new String[]{"Name"}, "'Category' like '" + aGroups[groupnmbr] + "'");
cursor.moveToFirst();
while(cursor.moveToNext()){
switch(groupnmbr){
case 0: Combat[childnmbr] = cursor.getString(cursor.getColumnIndex("Name"));
break;
case 1: Detection[childnmbr] = cursor.getString(cursor.getColumnIndex("Name"));
break;
case 2: Health[childnmbr] = cursor.getString(cursor.getColumnIndex("Name"));
break;
case 3: Illusion[childnmbr] = cursor.getString(cursor.getColumnIndex("Name"));
break;
case 4: Manipulation[childnmbr] = cursor.getString(cursor.getColumnIndex("Name"));
break;
}
childnmbr++;
}
groupnmbr++;
}
String[][] aChildren = {Combat, Detection, Health, Illusion, Manipulation};
return aChildren;
}
これは奇妙に見えます: '' '' '' ''のような "カテゴリ"(フィールドではありません!)を別の文字列と比較していますか?あなたはこれがあなたが望むものだと確信していますか? – Fixpoint
カテゴリーは私のデータベースでは、この検索方法はプログラムのすべての部分で機能します。 – adragon202