zl程序教程

您现在的位置是:首页 >  后端

当前栏目

Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant)

JAVA to or by use lang you need
2023-09-11 14:22:08 时间

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.healthmanager/com.example.healthmanager.LoginActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.

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

解决办法:检查 values 目录下的 style.xml文件,修改定义的style名称和parent,是否有多的 </style>标签,修改Theme例如:

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="android:windowNoTitle">true</item>
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

更多资源请关注作者专栏。