gpt4 book ai didi

java - Android Studio : Android Theme. AppCompat 错误

转载 作者:太空宇宙 更新时间:2023-11-04 12:16:54 25 4
gpt4 key购买 nike

我正在关注 Google 的 tutorial关于使用 Android Studio 开发 Android 应用程序(我使用的是 2.1.3),并且我正在按照说明进行操作,但是,我无法在不立即崩溃的情况下运行我的基本应用程序。 Android Studio 的 Android Monitor 输出以下内容:

FATAL EXCEPTION: main
Process: com.example.myfirstapp, PID: 2384
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.myfirstapp/com.example.myfirstapp.MainActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.

我做错了什么?我应该使用什么主题,应该编辑什么代码?作为记录,我将输出到物理设备和模拟器上的 Nexus 5,以及 Android API 23。

最佳答案

在 list 中,权限下方, Activity 标记内,放置/更改属性android:theme="@style/Theme.AppCompat"

或者,如果您想自定义主题,请将其更改为 android:theme="@style/MyTheme"并在 res/values 中添加新的资源文件并将其命名为“styles”(styles.xml)并将其用作:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyTheme" parent="Theme.AppCompat">
// customize your theme here...(optional)
</style>
</resources>

关于java - Android Studio : Android Theme. AppCompat 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39298144/

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