天天看點

Bug處理 java.lang.IllegalStateException

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

方案1 在清單檔案 下面加上樣式android:theme="@style/Theme.AppCompat.Light.NoActionBar"

<activity android:name=".activity.MainActivity"
            android:theme="@style/Theme.AppCompat.Light.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

        </activity>
           
方案2  繼承自activity 而不是appcompcatactivity

這種方法極其的low

繼續閱讀