-1

複数の列を持つSQLiteデータベースがあり、これらの列の1つは日付です。日付を見出しとして、データベースから拡張可能なリストビューにデータを入力したいと思います。したがって、同じ日付値を共有するすべての行について、その特定の日付の子として表示したいと思います。

arraylistを使用して、データベースのデータを保存しました。グループの見出しが表示されましたが、展開しようとするとnullポインター例外が発生します。エラーはgetChildViewメソッドから発生します。

public class MyExpandableListAdapter extends BaseExpandableListAdapter {

    public Object getChild(int groupPosition, int childPosition) {
        return infoList.get(groupPosition).get(childPosition);
    }

    public long getChildId(int groupPosition, int childPosition) {
        return childPosition;
    }

    public View getChildView(int groupPosition, int childPosition,
            boolean isLastChild, View convertView, ViewGroup parent) {
        RelativeLayout infoLayout = (RelativeLayout) findViewById(R.id.infoLayout);
        String exercise = ((ArrayList<Object>) getChild(groupPosition, childPosition)).get(0).toString();
        String weight = ((ArrayList<Object>) getChild(groupPosition, childPosition)).get(1).toString();
        String reps = ((ArrayList<Object>) getChild(groupPosition, childPosition)).get(2).toString();
        ((TextView) infoLayout.findViewById(R.id.exercise)).setText(exercise);
        ((TextView) infoLayout.findViewById(R.id.weight)).setText(weight);
        ((TextView) infoLayout.findViewById(R.id.reps)).setText(reps);


        return infoLayout;
    }

    public int getChildrenCount(int groupPosition) {
        return infoList.get(groupPosition).size();
    }

    public Object getGroup(int groupPosition) {
        return dateList.get(groupPosition);
    }

    public int getGroupCount() {
        return dateList.size();
    }

    public long getGroupId(int groupPosition) {
        return groupPosition;
    }

    public View getGroupView(int groupPosition, boolean isExpanded,
            View convertView, ViewGroup parent) {
        TextView dateView = new TextView(getApplicationContext());
        dateView.setText(getGroup(groupPosition).toString());
        return dateView;
    }

    public boolean hasStableIds() {
        return false;
    }

    public boolean isChildSelectable(int groupPosition, int childPosition) {
        return true;
    }
}

そして、これが私がアレイリストに入力した方法です。子を含む配列リストは2回ネストされます。最も内側には同じ行に表示される3つのオブジェクトが含まれ、「中央」のオブジェクトは最も内側の配列リストをグループ化して、展開可能なリストビューの正しいグループの下に表示されます。

private DatabaseMethods dbm;
private ArrayList<String> dateList = new ArrayList<String>();
private ArrayList<ArrayList<ArrayList<Object>>> infoList = new ArrayList<ArrayList<ArrayList<Object>>>();

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.stats);
    dbm = new DatabaseMethods(this);
    dbm.read();
    Cursor dates = dbm.fetchGroup();
    int DATES_INDEX = dates.getColumnIndexOrThrow("date");
    while (dates.moveToNext()) {
        String date = dates.getString(DATES_INDEX);
        if (!dateList.contains(date)) {
            dateList.add(date);
        }
    }
    for (String date : dateList) {
        Cursor info = dbm.fetchChildren(date);
        int EXERCISE_INDEX = info.getColumnIndexOrThrow("exercise");
        int WEIGHT_INDEX = info.getColumnIndexOrThrow("weight");
        int REPS_INDEX = info.getColumnIndexOrThrow("reps");
        ArrayList<ArrayList<Object>> secondInnerInfoList = new ArrayList<ArrayList<Object>>();
        while (info.moveToNext()) {
            String exercise = info.getString(EXERCISE_INDEX);
            int weight = info.getInt(WEIGHT_INDEX);
            int reps = info.getInt(REPS_INDEX);
            ArrayList<Object> thirdInnerInfoList = new ArrayList<Object>();
            thirdInnerInfoList.add(exercise);
            thirdInnerInfoList.add(weight);
            thirdInnerInfoList.add(reps);
            secondInnerInfoList.add(thirdInnerInfoList);
        infoList.add(secondInnerInfoList);
        }

    }
4

3 に答える 3

0
  1. データを取得して ArrayList または配列文字列に変換するメソッドを記述します。
  2. Activity で ArrayAdapter のデータを次のように宣言して初期化します。
  3. ListView.setAdapter(mAdapter);
于 2012-12-14T03:10:19.130 に答える
0

sqlite データベースを使用した展開可能なリストビューの場合: BaseExpandablelistAdapter を使用する代わりに、CursorTreeAdapter を使用できます。これにより、タスクを簡単に達成できます。以下のリンクを参照してください。

http://developer.android.com/reference/android/widget/CursorTreeAdapter.html

于 2013-11-11T11:20:32.417 に答える