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>

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

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


当前回答

如果你在你的项目中使用VCS(例如GIT),尝试:

删除本地项目文件; 从远程重新导入。

问题解决了!

在我的例子中,我删除了一个包含错误的文件,但不知何故,Studio仍然检测到该文件,因此阻止了它的构建。

希望能有所帮助!

其他回答

而不是所有这些,在你的应用程序中改变很多。就像这个视频做的那样简单。

https://www.youtube.com/watch?v=Bsm-BlXo2SI

我已经用过了,所以…这是100%有效的。

在我的情况下,这样的问题出现时,我试图显示对话。 问题是在上下文中,我使用了getBaseContext(),理论上应该返回活动上下文,但似乎不是,或者它在任何主题应用之前返回上下文。

所以我只是用“this”替换了getBaseContexts(),现在它像预期的那样工作了。

        Dialog.showAlert(this, title, message,....);

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

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

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

我在使用SplashScreen Api时遇到了这个问题,当MainActivity中没有调用installSplashScreen()时,也会抛出这个错误

override fun onCreate(savedInstanceState: Bundle?) {
        installSplashScreen()
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
}

确保在创建新的Alert Dialog时使用的是活动上下文,而不是应用程序或基本上下文。