私は次のように AlertDialog.Builder を使用しています:
ContextThemeWrapper cw = new ContextThemeWrapper(context, R.style.AlertDialogTheme);
AlertDialog.Builder builder = new AlertDialog.Builder(cw);
これは私のカスタム AlertDialogTheme スタイルです:
<style name="AlertDialogTheme" parent="@android:Theme.Dialog">
<item name="android:textSize">15sp</item>
<item name="android:windowTitleStyle">@style/custom_style</item>
</style>
属性はtextSize
、ビルダーで入れたアイテムのリストでは正常に機能しますがbuilder.setItems()
、タイトルでは機能しないため、属性をオーバーライドしようとしましたwindowTitleStyle
が、機能しません。
それは可能ですか、それとも私は何か間違っていますか?