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>

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

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


当前回答

对我来说是使用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编程?

其他回答

在Android Studio中: 添加支持库到gradle文件并同步。 编辑build.gradle(Module:app)使其具有如下依赖项:

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    implementation 'com.android.support:appcompat-v7:23.1.1'
    implementation 'com.android.support:design:23.1.1'
    implementation 'com.android.support:support-v4:23.1.1'
}

我的支持库版本是23.1.1;如果适用,使用您的支持库版本。

更改所需活动的主题。这对我来说很管用:

<activity
            android:name="HomeActivity"
            android:screenOrientation="landscape"
            android:theme="@style/Theme.AppCompat.Light"
            android:windowSoftInputMode="stateHidden" />

如果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>

我有一个活动的主题<android:主题="@android:风格/主题。对话框“>用于显示对话框在我的appWidget和我有同样的问题

我通过更改活动代码解决了这个错误,如下所示:

@Override
protected void onCreate(Bundle savedInstanceState) {
    setTheme(R.style.Theme_AppCompat_Dialog); //this line i added
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_dialog);
}

你之所以这么做,是因为你想在之前的sdk版本21的主题样式中应用材质设计。ActionBarActivity需要AppThemeso,如果你也想防止你自己的自定义关于你的AppTheme,只是你必须改变你的样式。xml(之前的sdk 21),这样,可以继承一个App Compat主题。

<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">

:

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