Alterdialog 提示You need to use a Theme.AppCompat theme (or descendant) with this activity.
时间: 2023-12-10 10:11:36 浏览: 53
DescendantFocusabilityTest.rar_Descendant
这个错误提示通常是因为你的 Activity 使用的主题不是继承自 Theme.AppCompat 主题。解决方法是在你的 Activity 对应的 AndroidManifest.xml 文件中,给它指定一个继承自 Theme.AppCompat 主题的主题,例如:
```
<activity
android:name=".MyActivity"
android:theme="@style/Theme.AppCompat">
</activity>
```
或者,你也可以在你的 App 的主题中设置默认使用 Theme.AppCompat 主题,例如:
```
<style name="AppTheme" parent="Theme.AppCompat">
<!-- Customize your theme here -->
</style>
```
希望这能解决你的问题!
阅读全文