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>

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

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


当前回答

如果在扩展布局时使用getApplicationContext()作为参数,则可以尝试使用getBaseContext()。如。

    View.inflate(getBaseContext(),
            getLayoutId() == 0 ? R.layout.page_default : getLayoutId(),
            null);

其他回答

如果AndroidX SplashScreen库把你带到这里…

这是因为Theme。SplashScreen也没有r.s eleable . appcompattheme_windowactionbar:

if (!a.hasValue(R.styleable.AppCompatTheme_windowActionBar)) {
    a.recycle();
    throw new IllegalStateException(
            "You need to use a Theme.AppCompat theme (or descendant) with this activity.");
}

这需要在调用super()之前将主题切换到postSplashScreenTheme:

@Override
protected void onCreate(Bundle savedInstanceState) {

    /* When switching the theme to dark mode. */
    if (savedInstanceState != null) {
        this.setTheme(R.style.AppTheme);
    }
    super.onCreate(savedInstanceState);
    
    /* When starting the Activity. */
    if (savedInstanceState == null) {
        SplashScreen.installSplashScreen(this);
    }
}

然后是主题。来自AndroidManifest.xml的SplashScreen不会干扰。


同样相关的还有:当使用Theme时。MaterialComponents,有一个桥主题包含,它作为主题的替代品。AppCompat: Theme.MaterialComponents.DayNight.NoActionBar.Bridge。

这个桥的主题工作尽管主题。MaterialComponents不从Theme继承。AppCompat:

<?xml version="1.0" encoding="utf-8"?>
<resources>    
    <style name="AppTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar.Bridge" />   
    <style name="AppTheme.SplashScreen" parent="Theme.SplashScreen" />    
</resources>

复制上面评论中@MarkKeen的答案,因为我也有同样的问题。

我在帖子的顶部声明了错误,并在我添加警告对话框后发生。我在清单中有所有相关的样式信息。我的问题是通过更改警报构建器中的上下文引用来解决的-我更改了:

new android.support.v7.app.AlertDialog.Builder(getApplicationContext())

to:

new android.support.v7.app.AlertDialog.Builder(this)

不会再有问题了。

这是什么固定它为我:而不是指定在manifest主题,我定义它在onCreate为每个扩展ActionBarActivity的活动:

@Override
protected void onCreate(Bundle savedInstanceState) {
    setTheme(R.style.MyAppTheme);
    super.onCreate(savedInstanceState);
    setContentView(R.layout.my_activity_layout);
...
}

这里MyAppTheme是Theme的后代。在xml中定义。注意,主题必须设置在super之前。onCreate和setContentView。

快速的解决方案。

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

取代的

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

to

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

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

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

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