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>

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

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


当前回答

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

设计库依赖于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'

其他回答

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

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

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

在我的情况下,我有AppTheme在AndroidManifest正确设置为一个样式继承自Theme.AppCompat。然而,单个活动在AndroidManifest中有覆盖它的样式设置。

注意:我本来打算用这个作为答案,但进一步的测试显示,从命令行使用maven构建时仍然会失败,所以我不得不对它进行编辑,使之成为一个问题!: - (

在我的情况下,当我得到这个错误时,我已经在使用AppCompat主题和错误没有多大意义。

我正在构思我的安卓系统。我已经依赖于apklib和jar版本的应用程序compat,因此:

    <!-- See https://github.com/mosabua/maven-android-sdk-deployer -->
        <dependency>
            <groupId>android.support</groupId>
            <artifactId>compatibility-v7-appcompat</artifactId>
            <version>${compatibility.version}</version>
            <type>apklib</type>
        </dependency>

        <dependency>
            <groupId>android.support</groupId>
            <artifactId>compatibility-v7-appcompat</artifactId>
            <type>jar</type>
        </dependency>

        <dependency>
            <groupId>android.support</groupId>
            <artifactId>compatibility-v7</artifactId>
            <type>jar</type>
        </dependency>

        <dependency>
            <groupId>android.support</groupId>
            <artifactId>compatibility-v4</artifactId>
        </dependency>

现在,当我导入maven项目并从IntelliJ构建和运行时,一切都好了。

但是当我使用maven从命令行构建、部署和运行时,我仍然会得到这个异常。

这是当你想在一个片段中有一个AlertDialog的时候

            AlertDialog.Builder adb = new AlertDialog.Builder(getActivity());
            adb.setTitle("My alert Dialogue \n");
            adb.setPositiveButton("OK", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int which) {

                  //some code

            } });
            adb.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int which) {

                 dialog.dismiss();

                } });
            adb.show();

所有你需要做的是添加android:theme="@style/ theme . appcompat。在AndroidManifest.xml文件中将“Light”添加到应用程序标签中。