我正在通过做这样的事情来创建一个ExpandableListView
及其适配器(ExpandableListAdapter
,使用一个)。SimpleExpandableListAdapter
它在浅色模式下工作正常,但在深色模式/夜间模式下文本保持黑色,而我的应用程序的其余部分样式正确:
ExpandableListAdapter adapter = new SimpleExpandableListAdapter(
activity.getApplicationContext(),
groupData, groupLayout, groupFrom, groupTo,
childData, childLayout, childFrom, childTo);
ExpandableListView expandableListView = view.findViewById(R.id.my_expandable_list_view);
expandableListView.setAdapter(adapter);