“你需要使用Theme.AppCompat主题”

我正在编写一个应用程序在android上,我有一个小问题:我想制作一个customiz对话框,所以我喜欢在android文档中:

在我的清单中:

<application
        android:allowBackup="true"
        android:icon="@drawable/indice"
        android:label="33"
        android:theme="@style/AppTheme">

<activity android:name=".Autres.Indice"
        android:theme="@android:style/Theme.Holo.Dialog">

        </activity>

您遇到此问题是因为您尝试应用对话框主题的Activity未扩展Activity ,这需要AppCompat主题。

更改

    android:theme="@style/AppTheme">

对于

    android:theme="@style/Theme.AppCompat" />
链接地址: http://www.djcxy.com/p/24251.html

上一篇: "You need to use a Theme.AppCompat theme"

下一篇: How to hide the title bar for an Activity in XML with existing custom theme