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>

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

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


当前回答

我也遇到过同样的问题。

如果你为任何类或方法提供上下文,那么提供YourActivityName。而不是getApplicationContext()。

这样做

builder = new AlertDialog.Builder(YourActivity.this);

而不是

builder = new AlertDialog.Builder(getApplicationContext());

其他回答

我被这个问题难住了好几个小时。问题是我实现了自己的.jar依赖项,没有使用Theme。主题。xml和AndroidManifest.xml中的AppCompat样式。即使在我改变和重建我的依赖之后,它也没有起作用。经过一些研究,我发现我应该使用这里描述的.aar (Android Archive)库。在将我的依赖模块更改为Android库后,我可以毫无错误地构建和实现它。希望这能有所帮助。

您的活动正在扩展ActionBarActivity,这需要AppCompat。应用的主题。 将ActionBarActivity更改为Activity或FragmentActivity,就可以解决问题。

如果你不使用操作栏,那么:

android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen" 

在我的情况下,我没有值v21文件在我的res目录。然后我创建了它,并添加了以下代码:

  <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

对我来说,在尝试了所有的解决方案后,一个解决方案就是改变

    <activity
        android:name="com.github.cythara.MainActivity"
        android:label="Main">
    </activity>

包含一个主题:

    <activity
        android:name="com.github.cythara.MainActivity"
        android:theme="@style/Theme.AppCompat.NoActionBar"
        android:label="Main">
    </activity>

对我来说,即使在我拥有了《Theme》之后,上述答案也都不适用。AppCompat作为应用程序的基本主题。我用的是com.android.support:design:24.1.0,所以我把版本改成了24.1.1。gradle同步后,它再次工作,异常消失了。在我看来,问题出在一些老版本的设计支持库上。

把这个放在这里,以防其他答案对某些人不适用。