AlertDialogカスタムスタイル
リストのような選択項目のポップアップダイアログボックスでは、スタイルを変更するにはlayoutを書き換えるのが一般的です
今日やっと知ったのは実はスタイルをカスタマイズすることができて、みんなと分かち合って、実はとても簡単です
それから自分のスタイルをカスタマイズすればいいです.
今日やっと知ったのは実はスタイルをカスタマイズすることができて、みんなと分かち合って、実はとても簡単です
AlertDialog.Builder builder = new AlertDialog.Builder(new ContextThemeWrapper(this, R.style.AlertDialogCustom));
それから自分のスタイルをカスタマイズすればいいです.
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AlertDialogCustom" parent="@android:style/AlertDialog">
<item name="android:textColor">#00FF00</item>
<item name="android:typeface">monospace</item>
<item name="android:textSize">10sp</item>
</style>
</resources>