Android Studio 0.4.5

用于创建自定义对话框的Android文档:http://developer.android.com/guide/topics/ui/dialogs.html

如果您想要一个自定义对话框,您可以将活动显示为对话框,而不是使用对话框api。简单地创建一个活动,并将其主题设置为theme . holo . dialog in <activity> manifest元素:

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

然而,当我尝试这样做时,我得到以下异常:

java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity

我支持以下,我不能使用大于10的最小值:

minSdkVersion 10
targetSdkVersion 19

在我的风格中,我有以下几点:

<!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

在我的清单上,我有这样的活动:

 <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:theme="@android:style/Theme.Holo.Light.Dialog"
            android:name="com.ssd.register.Dialog_update"
            android:label="@string/title_activity_dialog_update" >
        </activity>

创建这样的对话框是我一直在做的事情,因为我已经完成了布局。

谁能告诉我如何解决这个问题?


当前回答

我有一个类似的错误,因为我的活动是扩展AppCompatActivity。我的解决方案是改变活动从AppCompatActivity扩展到ComponentActivity的基类。

其他回答

当我试图将这个免费的资源管理器模块(NoNonsense - FilePicker)添加到我当前的应用程序时,我得到了这个异常:

illegalstateexception:您需要使用主题。AppCompat主题(或后代)

为使模块工作而添加的代码是在之前的App中的styles.xml文件中,并且它工作得很好:

<!-- You can also inherit from NNF_BaseTheme.Light -->
<style name="FilePickerTheme" parent="NNF_BaseTheme">
    <!-- Set these to match your theme -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>

    <!-- Setting a divider is entirely optional -->
    <item name="nnf_list_item_divider">?android:attr/listDivider</item>

    <!-- Need to set this also to style create folder dialog -->
    <item name="alertDialogTheme">@style/FilePickerAlertDialogTheme</item>

    <!-- If you want to set a specific toolbar theme, do it here -->
    <!-- <item name="nnf_toolbarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item> -->
</style>

<style name="FilePickerAlertDialogTheme" parent="Theme.AppCompat.Dialog.Alert">
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

但这在最近的应用程序中不起作用。解决方案很简单,我只是将代码移动到themes.xml文件(并从styles.xml文件中删除它)。 出于某种原因,现代版本有了细微的变化。这是显而易见的,但如果某样东西起作用了,那么它通常是正确的方式……

如果你需要扩展ActionBarActivity,你需要在style.xml上:

<!-- Base application theme. -->
<style name="AppTheme" parent="AppTheme.Base"/>

<style name="AppTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->

如果你将应用程序的主题设置为android: theme . material。Light代替AppTheme。Base,那么你会得到一个“IllegalStateException:你需要使用一个主题。”AppCompat主题(或后代)与此活动“错误。

对于这个错误,有很多解决方案。

你应该使用Activity或FragmentActivity而不是ActionbarActivity或AppCompatActivity 如果你想使用ActionbarActivity或AppCompatActivity,你应该把styles.xml Theme.Holo.xxxx改成Theme.AppCompat.Light(如果需要的话添加到DarkActionbar)

如果你不需要关于动作栏或AppCompat的高级属性,你不需要使用动作栏或AppCompat。

这个解决方案对我很有效。

设计库依赖于Support v4和AppCompat支持库,所以不要在gradle中使用不同版本的AppCompat和设计库。

use

 compile 'com.android.support:appcompat-v7:23.0.0'
 compile 'com.android.support:design:23.0.0'

而不是

 compile 'com.android.support:appcompat-v7:23.0.0'
 compile 'com.android.support:design:23.1.0'

快速的解决方案。

在styles.xml中更改基本主题父元素

取代的

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

to

<style name="AppTheme" parent="Theme.AppCompat">