我设法从数据库中检索数据并将其存储在ArrayList:
中ArrayList<Category> selectCategory = select.all().from(Category.class).execute();
for (Category category: selectCategory) {
builder.append(category.name).append("\n");
}
现在我想将该数据添加到ExpandableListView的子元素中。以下代码是硬编码的,我不希望这样。我希望它从数据库中获取数据。我怎么做?
List<String> class1= new ArrayList<String>();
class1.add("English");
class1.add("Maths");
class1.add("Geo");
答案 0 :(得分:0)
http://www.androidhive.info/2013/07/android-expandable-list-view-tutorial/
我使用本教程创建自己的ExpandableListAdapter。 基本上,您需要一个包含所有父项的列表和一个额外的Hashmap,其中父项为键,子项为List&lt;&gt;。
List<Parent> parentList = new ArrayList<>();
HashMap<Parent, List<Child>> childHashMap = new HashMap<Parent, List<Child>>