Я получил следующую ошибку после обновления моей версии Android SDK до r12.
error: Error retrieving parent for item: No resource found that matches the given name '@android:style/AlertDialog'.
Вот мой xml-файл.
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CustomDialogTheme" parent="@android:style/AlertDialog">
<item name="android:windowFrame">@null</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:backgroundDimEnabled">true</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowAnimationStyle">@android:style/Theme.Dialog</item>
</style>
</resources>
Я ничего не изменил в коде, и единственное, что я сделал, - это обновление Android SDK.