gpt4 book ai didi

android - Activity 启动时随机抛出 IllegalStateException

转载 作者:行者123 更新时间:2023-12-02 11:36:48 24 4
gpt4 key购买 nike

当我运行 Activity 时,我随机收到 IllegalStateException: You need to use a Theme.AppCompat theme 。我只需要重建项目并在下次运行时启动 Activity ,但在运行几次后,我再次遇到异常。

我检查了我的应用程序和 Activity 主题是否继承自 Theme.AppCompat。我的所有 Activity 都扩展了 FragmentActivity

我在 API 22 (Android 5.1.1) 上遇到异常,并且运行的是 Android Studio 2.0 Beta 5

编辑

我使用Android Studio 1.5,但没有收到错误消息。看来在 AS 2.0 上,我的 Activity 中的 super 是指 AppCompatActivity 而不是继承的类 FragmentActivity。我无法理解这种行为

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="eu.heyway.heywayandroid">

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat.NoActionBar"
android:name=".HeyWayApplication">
<activity
android:name=".login.FacebookLoginActivity"
android:theme="@style/AppTheme.TriangleBackground">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".configuration.ConfigurationActivity"
android:label="@string/title_activity_configuration"
android:theme="@style/AppTheme.TriangleBackground" />
<activity android:name=".home.HomeActivity"
android:theme="@style/AppTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

styles.xml

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

<style name="AppTheme.TriangleBackground" parent="AppTheme">
<item name="android:windowBackground">@drawable/background_full</item>
</style>

我所有的 Activity 都扩展了这个类(class):

public class BaseActivity extends FragmentActivity {

@Override
protected void attachBaseContext(Context newBase) {
super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
}
}

我想知道我是否应该将此报告为错误,或者我是否做错了什么。

最佳答案

在您的 list 中,您缺少 minSdktargetSdk 条目。设置最小和目标 sdk 版本。另请确保您包含支持库。如果这不起作用,还可以尝试使用 Holo 主题,看看是否会出现错误。

关于android - Activity 启动时随机抛出 IllegalStateException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35553144/

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