Android - SimpleCursorTreeAdapter - bindChildView覆盖

时间:2016-12-23 09:11:30

标签: java android cursor android-cursoradapter

如何根据游标特定值自定义行布局?猜猜我需要自定义bindChildView - 但是如何? :)

主要功能:

public void fillQuestions(int id) {
        Cursor questionsCursor = db.getQuestions(id);
        EventActivity.this.startManagingCursor(questionsCursor);
        questionsCursor.moveToFirst();

        ExpandableListView questionsList = (ExpandableListView) findViewById(R.id.elv_questions);

        ExpandableQuestionsAdapter adapter = new ExpandableQuestionsAdapter(
                questionsCursor,
                EventActivity.this,
                R.layout.display_name_row,
                R.layout.display_cb_answer_row,
                new String[] {"questionText"},
                new int[] {R.id.r_lv_name},
                new String[] {"answerName"},
                new int[] {R.id.r_lv_cb_name});



    }

适配器:

    public class ExpandableQuestionsAdapter extends SimpleCursorTreeAdapter {


            public ExpandableQuestionsAdapter(Cursor cursor, Context context, int groupLayout,
                                              int childLayout, String[] groupFrom, int[] groupTo, String[] childrenFrom,
                                              int[] childrenTo) {
                super(context, cursor, groupLayout, groupFrom, groupTo, childLayout, childrenFrom, childrenTo);
            }

            @Override
            protected Cursor getChildrenCursor(Cursor groupCursor) {
                Cursor childCursor = db.getAnswers(groupCursor.getInt(groupCursor.getColumnIndex(KEY_F_ID)));
                EventActivity.this.startManagingCursor(childCursor);
                childCursor.moveToFirst();
                return childCursor;

            }

            @Override
            public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
                View rowView = super.getChildView(groupPosition, childPosition, isLastChild, convertView, parent);
                return rowView;
            }

            @Override
            protected void bindChildView(View view, Context context, Cursor cursor, boolean isLastChild) {
                super.bindChildView(view, context, cursor, isLastChild);
            }
        }

我试图寻找一些例子,但遗憾的是找不到任何帮助

谢谢, 的Jakub

1 个答案:

答案 0 :(得分:0)

我不是很专业,但也许我的研究可以帮助你

protected void bindChildView(View view, Context context, Cursor getChildrenCursor, boolean isLastChild) {
        super.bindChildView(view, context, getChildrenCursor, isLastChild);
        //take value from getChildrenCursor but its also work with just cursor, because its already have correct position
        String color = getChildrenCursor.getString(getChildrenCursor.getColumnIndex(COLOR));
        //String color ="#1B3F51B5";
        view.setBackgroundColor(Color.parseColor(color));
    }

在我的情况下,我有特定的列COLOR,其颜色值类似于#1B3F51B5 也可以使用像这样的

来代替view.setBackgroundColor
TextView textView = (TextView) view.findViewById(R.id.r_lv_name);
textView.setBackgroundColor(Color.parseColor(color));