gpt4 book ai didi

Android:在 MaterialTheme 中使用自定义样式的 AlertDialog 抛出资源未找到异常

转载 作者:行者123 更新时间:2023-11-29 22:51:53 26 4
gpt4 key购买 nike

我有主题 Theme.MaterialComponents.Light.NoActionBar在我的风格中作为主要的 Apptheme。

我的提醒主题是

<style name="MyDialogTheme" parent="ThemeOverlay.MaterialComponents.Dialog.Alert">
<item name="android:windowBackground">@drawable/alert_bg</item>
<item name="android:textColor">@color/text</item>
</style>

我这样构建我的提醒对话

AlertDialog.Builder builder = new AlertDialog.Builder(AllowanceActivity.this, R.style.MyDialogTheme);

当我在没有样式的情况下运行它时它可以正常运行但是如果我使用任何其他样式它会崩溃我已经尝试过所有扩展警报的主题Theme.AppCompat.Light.Dialog.AlertTheme.AppCompat.Dialog.AlertTheme.MaterialComponents.Dialog.Alert 但我总是得到错误。

android.content.res.Resources$NotFoundException: Resource ID #0x7f07005d
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2462)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2522)
at android.app.ActivityThread.-wrap11(ActivityThread.java)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1363)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:148)
at android.app.ActivityThread.main(ActivityThread.java:5471)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:102)
Caused by: android.content.res.Resources$NotFoundException: Resource ID #0x7f07005d
at android.content.res.Resources.getValue(Resources.java:1432)
at android.content.res.Resources.getValue(Resources.java:1412)
at androidx.appcompat.widget.ResourceManagerInternal.loadDrawableFromDelegates(ResourceManagerInternal.java:252)
at androidx.appcompat.widget.ResourceManagerInternal.getDrawable(ResourceManagerInternal.java:139)
at androidx.appcompat.widget.AppCompatDrawableManager.getDrawable(AppCompatDrawableManager.java:411)
at androidx.appcompat.widget.TintTypedArray.getDrawableIfKnown(TintTypedArray.java:86)
at androidx.appcompat.app.AppCompatDelegateImpl.attachToWindow(AppCompatDelegateImpl.java:637)
at androidx.appcompat.app.AppCompatDelegateImpl.<init>(AppCompatDelegateImpl.java:311)
at androidx.appcompat.app.AppCompatDelegateImpl.<init>(AppCompatDelegateImpl.java:272)
at androidx.appcompat.app.AppCompatDelegate.create(AppCompatDelegate.java:232)
at androidx.appcompat.app.AppCompatDialog.getDelegate(AppCompatDialog.java:170)
at androidx.appcompat.app.AppCompatDialog.<init>(AppCompatDialog.java:59)
at androidx.appcompat.app.AlertDialog.<init>(AlertDialog.java:98)
at androidx.appcompat.app.AlertDialog$Builder.create(AlertDialog.java:983)

有没有人遇到同样的问题或者我遗漏了什么

最佳答案

使用 MaterialAlertDialogBuilder它使用 Material 规范和主题配置实例化的 AlertDialog

类似于:

new MaterialAlertDialogBuilder(context,
R.style.MyThemeOverlay_MaterialComponents_MaterialAlertDialog)
.setTitle("Dialog")
//...
.show();

同时使用此父样式 ThemeOverlay.MaterialComponents.MaterialAlertDialog

关于Android:在 MaterialTheme 中使用自定义样式的 AlertDialog 抛出资源未找到异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57801042/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com