使用要在adpater中使用的索引从数据中选择行

时间:2018-07-30 14:39:19

标签: android

我想选择要显示的特定行的数据,例如从childForm的字符串数组中,我想选择适配器要使用的第一和第二数据(0和1)。我想我可以用代码做到这一点,但是怎么办呢?否则还有其他选择吗?非常感谢!我渴望得到答案! (我是android新手)

String[] childFrom = new String[]{Database.DATABASE_CHILD_1};
        String[] groupFrom = new String[]{Database.DATABASE_GROUP_1};

int[] groupTo = {R.id.group1};
int[] childTo = {R.id.child1};

SimpleCursorTreeAdapter simplecursortreeAdapter = new ExpandableListViewAdapter(
        this,
        cursor,
        R.layout.list_group,
        groupFrom,
        groupTo,
        R.layout.list_child,
        childFrom,
        childTo
);

0 个答案:

没有答案