環境設定アクティビティでリスト項目をクリックしたときにポップアップする警告ダイアログのウィンドウ タイトル テキストの色やその他のスタイルを変更する方法を知っている人はいますか?
背景を変更しましたが、テキストは変更されません。ここに私のスタイル コードを貼り付けます。
<style name="alertDialogThemeLight" parent="@android:style/Theme.Dialog">
<item name="android:background">#ffaaaaaa</item>
<item name="android:windowTitleStyle">@style/dialogTitleLight</item>
</style>
<style name="dialogTitleLight">
<item name="android:textSize">12sp</item>
<item name="android:textColor">#ff0000</item>
<!-- <item name="android:textAppearance">@style/dialogTitleTextLight</item> -->
</style>
<style name="dialogTitleTextLight">
<item name="android:textColor">#334455</item>
<item name="android:textSize">30dp</item>
</style>
テキストの色を変更する属性が見つかりません。