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>

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

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


当前回答

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

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

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

其他回答

我也遇到过同样的问题。

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

这样做

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

而不是

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

对于我的Xamarin Android项目(在MainActivity.cs中),我改变了…

public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity

to

public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsApplicationActivity

然后错误就消失了。我知道这不是每个人的解决方案,但它可能会给潜在问题提供线索。

对我来说是使用ContextThemeWrapper的解决方案:

private FloatingActionButton getFAB() {
Context context = new android.support.v7.view.ContextThemeWrapper(getContext(), R.style.AppTheme);
FloatingActionButton fab = new FloatingActionButton(context);
return fab;}

从Android -如何创建FAB编程?

如果你正在使用应用程序上下文,就像这样:

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

将其更改为如下所示的活动上下文:

final AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);

在我的例子中,我用ApplicationContext来膨胀一个视图。当你使用ApplicationContext时,theme/style不会被应用,所以尽管有theme . context。Appcompat在我的风格,它没有应用,导致这个异常。更多细节:当膨胀器与ApplicationContext一起使用时,主题/样式不应用