我的主题有以下几种:
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/primary</item>
<item name="colorPrimaryDark">@color/primaryDark</item>
<item name="colorAccent">@color/accent</item>
<item name="alertDialogTheme">@style/AppTheme.Dialog</item>
</style>
<style name="AppTheme.Dialog" parent="Theme.AppCompat.Dialog.Alert">
<item name="colorAccent">@color/accent</item>
</style>
然而,当我在我的应用程序中创建AlertDialogs时,它们根本不是主题。其他组件如ActionBar正在正确着色。我错过了什么吗?
我使用的是AppCompat版本com.android.support:appcompat-v7:23.1.1
,我的设备安装了Android 4.4.4。
答案 0 :(得分:9)
对于遇到类似问题而遇到此问题的任何人:请仔细检查您是否正在使用支持库包中的AlertDialog.Builder,因此import语句应如下所示:
import android.support.v7.app.AlertDialog;
在我的情况下,我导入android.app.AlertDialog
导致错误的结果。
答案 1 :(得分:-1)
创建AlertDialog时,您可以设置要使用的主题:
import android.support.v7.app.AlertDialog;