我更改了manifest的android:targetSdkVersion值并仍然存在同样的问题:
是父文件有问题还是我应该删除所有这些行?
答案 0 :(得分:0)
检查你的style.xml。您尚未在那里声明alertbox和DialogWindowTitle,但您在Manifest中提到它。首先声明它。我给你举个例子向你展示如何做到这一点:
<style name="MyAlertDialogStyle"parent="Theme.AppCompat.Light.Dialog.Alert">
<!-- Used for the buttons -->
<item name="colorAccent">@color/button_background</item>
<!-- Used for the title and text -->
<item name="android:textColorPrimary">@color/editTextColor</item>
<!-- Used for the background -->
<item name="android:background">@color/alertPopupColor</item>
</style>
只需在您的style.xml中为alertbox和DialogWindowTitle声明如下。希望它有效..