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);