崩溃:IllegalStateException:您需要使用 Theme.AppCompat 主题
Crash: IllegalStateException: You need to use a Theme.AppCompat theme
我在启动 activity 时遇到启动崩溃问题。
堆栈跟踪:
main Process: com.haziqhussain.hazgames, PID: 10248
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.haziqhussain.hazgames/com.haziqhussain.hazgames.MainActivity}:
java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2325)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2387)
错误很明显,因为您正在使用 ActionBarActivity
,所以您需要为此 activity 使用 Theme.AppCompat
或其后代主题。或者更好地将它用于整个应用程序。打开您的 AndroidManifest.xml
并编辑这些标签之一:
将 android:theme="@style/Theme.AppCompat.Light"
添加到 application
标签以将此主题应用到所有活动或应用到特定 activity 将其添加到该 activity
标签。
我在启动 activity 时遇到启动崩溃问题。
堆栈跟踪:
main Process: com.haziqhussain.hazgames, PID: 10248
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.haziqhussain.hazgames/com.haziqhussain.hazgames.MainActivity}:
java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2325)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2387)
错误很明显,因为您正在使用 ActionBarActivity
,所以您需要为此 activity 使用 Theme.AppCompat
或其后代主题。或者更好地将它用于整个应用程序。打开您的 AndroidManifest.xml
并编辑这些标签之一:
将 android:theme="@style/Theme.AppCompat.Light"
添加到 application
标签以将此主题应用到所有活动或应用到特定 activity 将其添加到该 activity
标签。