Android10 Dialog bug

之前写了个显示电池老化的Dialog,今天发新版本测试的时候报错了。

代码

java 复制代码
		AlertDialog dialog = new AlertDialog.Builder(mContext)
				.setTitle(R.string.battery_aging_dialog_title)
				.setMessage(R.string.battery_aging_dialog_message)
				.setPositiveButton(R.string.ok,null)
				.create();
		dialog.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_DIALOG);
		dialog.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM|WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);
		dialog.setCanceledOnTouchOutside(false);
		dialog.show();

终端表现

黑屏后重新加载界面

报错信息

java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.

原因

AlertDialog导入的是androidx包,具体原因未知,有没有大佬知道原因

解决方法

import android.app.AlertDialog就能正常运行了。

相关推荐
QQ_4376643147 分钟前
常见题目及答案
android·java·开发语言
菜鸟小九13 分钟前
mysql运维(主从复制)
android·运维·mysql
走在路上的菜鸟30 分钟前
Android学Dart学习笔记第十一节 分支
android·笔记·学习·flutter
hadage2331 小时前
windows alt + tab 切换窗口时会强制把我的中文键盘的中英文输入改为中文这个bug的曲线救国方式 da
bug
恋猫de小郭1 小时前
解读 Claude 对开发者的影响:AI 如何在 Anthropic 改变工作?
android·前端·ai编程
Digitally2 小时前
如何将照片从 Mac 传输到 Android
android·macos
用户41659673693552 小时前
Android 系统开发进阶:将应用配置为系统应用的完整指南
android
三少爷的鞋2 小时前
Retrofit 核心流程模拟实现深解析
android
zhimingwen2 小时前
使用 adb shell 命令检查手机上 App的APK大小
android·adb
泥嚎泥嚎2 小时前
【Android】RecyclerView 刷新方式全解析:从 notifyDataSetChanged 到 DiffUtil
android·java