私のアプリケーションでは、明るいテーマと暗いテーマを切り替えようとしています。ただし、Alert Dialog のテキストの色はテーマによって変更されません。アラート ダイアログのテーマを作成しましたが、機能していないようです。これが私のコードです:
final AlertDialog.Builder builder = new AlertDialog.Builder(new ContextThemeWrapper(mContext, R.style.DialogWhite));
builder.setAdapter(adapter, new OnClickListener() {
@Override
public void onClick(final DialogInterface dialog, final int which) {
final ActionBarItemResource eab = aList.get(which);
eab.getAction().run();
}
});
// builder.setTitle(tEntityNew.getName());
final AlertDialog alert = builder.create();
alert.show();
私のstyles.xml
<style name="DialogWhite" parent="@android:style/Theme.Dialog">
<item name="android:textColor">?android:attr/textColorPrimaryInverseDisableOnly</item>
</style>
誰でもこれで私を助けることができますか?