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>

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

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


最小SDK为10。ActionBar从api级别11可用。因此,对于10,您将使用来自支持库的AppCompat,您需要使用Theme。AppCompat或其后代。

Use

android:theme="@style/Theme.AppCompat" >

或者如果你不想在顶部的操作栏

android:theme="@style/Theme.AppCompat.NoActionBar">

更多信息@

http://developer.android.com/guide/topics/ui/actionbar.html

编辑:

我可能看错了行动报告。

似乎op想要一个带有活动主题的对话框。正如Bobbake4所建议的,扩展Activity而不是ActionBarActivity。

也可以看看下面链接中的@ Dialog Attributes

http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.4_r1/frameworks/base/core/res/res/values/themes.xml/


你遇到这个问题的原因是因为你试图应用对话框主题的活动正在扩展ActionBarActivity,这需要应用AppCompat主题。

更新:扩展AppCompatActivity也会有这个问题

在本例中,将Java继承从ActionBarActivity更改为Activity,并在清单中保留对话框主题,即非theme。AppCompat价值


一般的规则是,如果你想让你的代码支持旧版本的Android,它应该有AppCompat主题,java代码应该扩展AppCompat活动。如果你有一个活动不需要这种支持,比如你只关心Android的最新版本和功能,你可以应用任何主题,但java代码必须扩展普通的旧活动。


注意:当从AppCompatActivity(或子类ActionBarActivity)更改为Activity时,也必须将各种带有“support”的调用更改为相应的不带“support”的调用。因此,调用getFragmentManager而不是getSupportFragmentManager。


注意:我本来打算用这个作为答案,但进一步的测试显示,从命令行使用maven构建时仍然会失败,所以我不得不对它进行编辑,使之成为一个问题!: - (

在我的情况下,当我得到这个错误时,我已经在使用AppCompat主题和错误没有多大意义。

我正在构思我的安卓系统。我已经依赖于apklib和jar版本的应用程序compat,因此:

    <!-- See https://github.com/mosabua/maven-android-sdk-deployer -->
        <dependency>
            <groupId>android.support</groupId>
            <artifactId>compatibility-v7-appcompat</artifactId>
            <version>${compatibility.version}</version>
            <type>apklib</type>
        </dependency>

        <dependency>
            <groupId>android.support</groupId>
            <artifactId>compatibility-v7-appcompat</artifactId>
            <type>jar</type>
        </dependency>

        <dependency>
            <groupId>android.support</groupId>
            <artifactId>compatibility-v7</artifactId>
            <type>jar</type>
        </dependency>

        <dependency>
            <groupId>android.support</groupId>
            <artifactId>compatibility-v4</artifactId>
        </dependency>

现在,当我导入maven项目并从IntelliJ构建和运行时,一切都好了。

但是当我使用maven从命令行构建、部署和运行时,我仍然会得到这个异常。


所有你需要做的是添加android:theme="@style/ theme . appcompat。在AndroidManifest.xml文件中将“Light”添加到应用程序标签中。


你之所以这么做,是因为你想在之前的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">

转到你的样式,把父元素

parent="Theme.AppCompat"

而不是

parent="@android:style/Theme.Holo.Light"

对我来说,Android SDK似乎无法找到样式定义。一切都连接正确,做一个简单的项目清洁固定它为我。


这是什么固定它为我:而不是指定在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。


将您的主题样式父样式更改为

 parent="Theme.AppCompat"

这对我很管用……


这个对我很有用:

<application
           android:allowBackup="true"
           android:icon="@mipmap/ic_launcher"
           android:label="@string/app_name"
           android:theme="@style/AppTheme" >
           <activity
               android:name=".MainActivity"
               android:label="@string/app_name"
               android:theme="@style/Theme.AppCompat.NoActionBar">

               <intent-filter>
                   <action android:name="android.intent.action.MAIN" />

                   <category android:name="android.intent.category.LAUNCHER" />
               </intent-filter>
           </activity>
</application>

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

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

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

我在三星设备上有这样的崩溃,即使活动使用Theme.AppCompat。 根本原因与三星方面的奇怪优化有关:

- if one activity of your app has theme not inherited from Theme.AppCompat
- and it has also `android:launchMode="singleTask"`
- then all the activities that are launched from it will share the same Theme

我的解决方案只是删除android:launchMode="singleTask"


如果你需要扩展ActionBarActivity,你需要在style.xml上:

<!-- Base application theme. -->
<style name="AppTheme" parent="AppTheme.Base"/>

<style name="AppTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->

如果你将应用程序的主题设置为android: theme . material。Light代替AppTheme。Base,那么你会得到一个“IllegalStateException:你需要使用一个主题。”AppCompat主题(或后代)与此活动“错误。


对于这个错误,有很多解决方案。

你应该使用Activity或FragmentActivity而不是ActionbarActivity或AppCompatActivity 如果你想使用ActionbarActivity或AppCompatActivity,你应该把styles.xml Theme.Holo.xxxx改成Theme.AppCompat.Light(如果需要的话添加到DarkActionbar)

如果你不需要关于动作栏或AppCompat的高级属性,你不需要使用动作栏或AppCompat。


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

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

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

to:

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

不会再有问题了。


我的活动与SectionsPagerAdapter和ViewPager & Fragment

public class MyActivity extends AppCompatActivity implements ActionBar.TabListener
...
...
     @Override
        public void onPostResume(){
            super.onPostResume();
            try {
               getSupportActionBar().setDisplayShowTitleEnabled(false);
            }catch (NullPointerException ignored){
            }
        }

把它做成

.getTheme getApplicationContext () () .applyStyle (R.style.Theme_Mc, 真正的);

在values/styles.xml中 添加这个

 <style  name="Theme.Mc" parent="Theme.AppCompat.Light.NoActionBar">
         <!-- ADD Your Styles  -->


     </style>

在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;如果适用,使用您的支持库版本。


在Android manifest中,只需将活动主题更改为AppTheme,如下代码片段所示

<activity
  android:name=".MainActivity"
  android:label="@string/app_name"
  android:theme="@style/AppTheme">
</activity>

以防有人还在想这个问题。

试试这个:

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

我有同样的问题,但它解决了,当我把这个manifest: android:theme="@style/ theme . appcompat。

    <application
        android:allowBackup="true"
        android:icon="@drawable/icon"
        android:label="@string/app_name_test"
        android:supportsRtl="true"
        android:theme="@style/Theme.AppCompat">

        ...    

    </application>

我遇到这个问题,即使我的主题是一个AppCompat主题和我的活动是一个AppCompatActivity(或活动,建议对其他人的答案)。所以我清理、重建并重新运行这个项目。

(Build -> Clean Project;Build ->重建项目;Run -> Run)

这可能看起来很愚蠢,但现在它很有效!

希望这能有所帮助!


在我的情况下,我没有值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>

这个解决方案对我很有效。

设计库依赖于Support v4和AppCompat支持库,所以不要在gradle中使用不同版本的AppCompat和设计库。

use

 compile 'com.android.support:appcompat-v7:23.0.0'
 compile 'com.android.support:design:23.0.0'

而不是

 compile 'com.android.support:appcompat-v7:23.0.0'
 compile 'com.android.support:design:23.1.0'

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

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


对于我的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编程?


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

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

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

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

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

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

对我来说,通过在我的customDialog类中更改从AppCompatActivity到Activity的继承来解决问题。无需更改Theme.Dialog的manifest。


这是当你想在一个片段中有一个AlertDialog的时候

            AlertDialog.Builder adb = new AlertDialog.Builder(getActivity());
            adb.setTitle("My alert Dialogue \n");
            adb.setPositiveButton("OK", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int which) {

                  //some code

            } });
            adb.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int which) {

                 dialog.dismiss();

                } });
            adb.show();

快速的解决方案。

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

取代的

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

to

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

我也有这个问题,我做了什么来解决它,仍然使用Holo主题是采取以下步骤:

首先我替换了这个导入:

import android.support.v7.app.AppCompatActivity;

比如这个:

import android.app.Activity;

然后将我的扩展名从:

public class MyClass extends AppCompatActivity {//...

:

public class MyClass extends Activity {//...

同时还要更改这个导入:

import android.support.v7.app.AlertDialog;

对于这一点:

import android.app.AlertDialog;

然后你可以在活动级别的清单中使用你的主题标签:

android:theme="@android:style/Theme.Holo.Dialog" />

最后,(除非你的项目中有其他类必须使用v7 appCompat),你可以清理并重新构建你的项目,或者在应用程序级别删除gradle构建文件中的这个条目:

compile 'com.android.support:appcompat-v7:23.2.1'

如果你的项目中有其他类必须使用v7 appCompat,那么只需清理并重新构建项目。


我也遇到了同样的问题。因为我正在创建自定义导航抽屉。但我忘记在清单上提到主题了

android:theme="@style/Theme.AppCompat.NoActionBar"

当我把上面的主题添加到我的清单时,问题就解决了。


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


根据我的经验,问题在于我展示对话的环境。 在一个按钮点击中,我以这样的方式实例化了一个AlertDialog:

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

但是上下文不正确,导致了这个错误。我使用应用程序上下文更改了它,如下所示:

在声明部分:

Context mContext;

onCreate方法

mContext = this;

最后在我需要AlertDialog的代码中:

start_stop = (Button) findViewById(R.id.start_stop);
start_stop.setOnClickListener( new View.OnClickListener()
     {
                @Override
                public void onClick(View v)
                {
                    if (!is_running)
                    {
                        builder = new AlertDialog.Builder(mContext);
                        builder.setMessage("MYTEXT")
                                .setCancelable(false)
                                .setPositiveButton("SI", new DialogInterface.OnClickListener() {
                                    public void onClick(DialogInterface dialog, int id) {
                                    Task_Started = false;
                                    startTask();
                                    }
                                })
                                .setNegativeButton("NO",
                                        new DialogInterface.OnClickListener() {
                                    public void onClick(DialogInterface dialog, int id) {
                                        dialog.cancel();
                                    }
                                });
                        AlertDialog alert = builder.create();
                        alert.show();
                    }
            }
        }

这就是我的解决方案。


这真的迫使我张贴我自己的答案。

因为我正在使用Theme.AppCompat.Light。NoActionBar,也用支持兼容性的导入替换了所有AlertDialog实例,但在v21 (Lollipop)下仍然面临问题。

我不喜欢改变主题的想法,这是合适的。 所以在2天之后,我终于想到了其他为AndroidManifest.xml指定AppTheme的库。

我发现还有另外一个:Paytm Checkout SDK。

因此,下面的更改解决了这个问题。

Renaming AppTheme using for my app to 'XYZAppTheme' using tools:replace method in AndroidManifest of my project(app). <uses-permission android:name="android.permission.INTERNET" /> <application android:name=".XYZ" android:allowBackup="true" android:icon="@mipmap/ic_launcher_v2" android:label="@string/app_name" android:largeHeap="true" android:roundIcon="@mipmap/ic_launcher_v2_round" android:supportsRtl="true" android:theme="@style/XYZAppTheme" tools:replace="android:icon,android:theme"> <activity android:name=".xyz.SplashActivity" android:launchMode="singleTask" android:screenOrientation="portrait"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>


改变主题从突出显示标签在图片。


只做

new AlertDialog.Builder(this)

而不是

new AlertDialog.Builder(getApplicationContext())

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

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

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

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

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

我有一个活动的主题<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);
}

在你的app/build中。Gradle添加这个依赖:

implementation "com.google.android.material:material:1.1.0-alpha03"

更新你的styles.xml AppTheme的父类:

<style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar"/>

在我的例子中,我使用了一个名为“FullScreenTheme”的样式,尽管它似乎是正确定义的(它是Theme.AppCompat的后代),但它并不能工作。

我终于意识到,我正在使用一个AAR库,内部也定义了一个名为“FullScreenTheme”的风格,它不是Theme.AppCompat的后代。名字的冲突导致了这个问题。

通过重命名我自己的样式名称来修复它,现在Android正在使用正确的样式。


当你使用Kotlin时,没有什么能解决我的问题,直到我将生成器参数从“applicationContext”更改为“this”。

这行不通

val dialogDelete = AlertDialog.Builder(applicationContext)
            .setTitle("Confirmation")
            .setMessage("Delete this photo?")
            .setNegativeButton(android.R.string.no){ it, which ->
                it.dismiss()
            }
dialogDelete.show()

遵循代码工作

val dialogDelete = AlertDialog.Builder(this)
            .setTitle("Confirmation")
            .setMessage("Delete this photo?")
            .setNegativeButton(android.R.string.no){ it, which ->
                it.dismiss()
            }
dialogDelete.show()

在我的情况下,我有AppTheme在AndroidManifest正确设置为一个样式继承自Theme.AppCompat。然而,单个活动在AndroidManifest中有覆盖它的样式设置。


不要忘记在VCS本地历史记录恢复后清理项目


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


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

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

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


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

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

如果您正在与Recyclerview Adapter类斗争,那么使用

view.getRootView().getContext()

而不是

getApplicationContext() or activity.this

首先,将其添加为import => import androidx.appcompat.app.AlertDialog

我发布这个是有史以来最小的问题解决方案。 我只是改变了实例化

new AlertDialog.Builder(mContex)

to

new AlertDialog。Builder (mContext R.style.PreferenceDialogLight)

Where <style name="PreferenceDialogLight" parent="Base.Theme.MaterialComponents.Dialog.Alert">


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

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

问题解决了!

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

希望能有所帮助!


检查是否向Dialog传递了正确的上下文。这发生在我身上,然后我意识到我正在启动AlertDialog。使用applicationContext而不是Activity上下文的构建器。


我也遇到过同样的问题。

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

这样做

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

而不是

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

如果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 12启动画面时看到这个错误,请遵循以下简单的步骤

The app theme in values/themes.xml and values-night/themes.xml should have Theme.AppCompat as the parent theme. <style name="Theme.Ace" parent="Theme.AppCompat.DayNight.NoActionBar"> Use this theme in postSplashScreenTheme for the splash screen theme <style name="Theme.App.Starting" parent="Theme.SplashScreen"> <item name="windowSplashScreenBackground">@color/orange_900</item> <item name="windowSplashScreenAnimatedIcon">@drawable/ic_help_outline</item> <item name="windowSplashScreenAnimationDuration">2000</item> <item name="postSplashScreenTheme">@style/Theme.Ace</item> Remove any theme from the starting activity and use Theme.App.Starting as an application theme <application... android:theme="@style/Theme.App.Starting">


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


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

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

当我试图将这个免费的资源管理器模块(NoNonsense - FilePicker)添加到我当前的应用程序时,我得到了这个异常:

illegalstateexception:您需要使用主题。AppCompat主题(或后代)

为使模块工作而添加的代码是在之前的App中的styles.xml文件中,并且它工作得很好:

<!-- You can also inherit from NNF_BaseTheme.Light -->
<style name="FilePickerTheme" parent="NNF_BaseTheme">
    <!-- Set these to match your theme -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>

    <!-- Setting a divider is entirely optional -->
    <item name="nnf_list_item_divider">?android:attr/listDivider</item>

    <!-- Need to set this also to style create folder dialog -->
    <item name="alertDialogTheme">@style/FilePickerAlertDialogTheme</item>

    <!-- If you want to set a specific toolbar theme, do it here -->
    <!-- <item name="nnf_toolbarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item> -->
</style>

<style name="FilePickerAlertDialogTheme" parent="Theme.AppCompat.Dialog.Alert">
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

但这在最近的应用程序中不起作用。解决方案很简单,我只是将代码移动到themes.xml文件(并从styles.xml文件中删除它)。 出于某种原因,现代版本有了细微的变化。这是显而易见的,但如果某样东西起作用了,那么它通常是正确的方式……


更改清单文件

/ Theme.Holo @android:风格。Light //应用中提到的任何一个

to

@android:主题=“@style /主题。AppCompat”

这让我工作了,希望能有所帮助


我有一个类似的错误,因为我的活动是扩展AppCompatActivity。我的解决方案是改变活动从AppCompatActivity扩展到ComponentActivity的基类。


在MaterialAlertDialogBuilder中使用“this”而不使用“applicationContext”

MaterialAlertDialogBuilder(this).show()