E/AndroidRuntime: FATAL EXCEPTION: main Process: com.example.hjschoolhelper210301201_1, PID: 2778 java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.hjschoolhelper210301201_1/com.example.hjschoolhelper210301201_1.LoginMainActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity. at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3645) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3782) at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:101) at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135) at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2307) at android.os.Handler.dispatchMessage(Handler.java:106) at android.os.Looper.loopOnce(Looper.java:201) at android.os.Looper.loop(Looper.java:288) at android.app.ActivityThread.main(ActivityThread.java:7872) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936) Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity. at androidx.appcompat.app.AppCompatDelegateImpl.createSubDecor(AppCompatDelegateImpl.java:846) at androidx.appcompat.app.AppCompatDelegateImpl.ensureSubDecor(AppCompatDelegateImpl.java:809) at androidx.appcompat.app.AppCompatDelegateImpl.setContentView(AppCompatDelegateImpl.java:696) at androidx.appcompat.app.AppCompatActivity.setContentView(AppCompatActivity.java:195) at com.example.hjschoolhelper210301201_1.LoginMainActivity.onCreate(LoginMainActivity.java:26) at android.app.Activity.performCreate(Activity.java:8305) at android.app.Activity.performCreate(Activity.java:8284) at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1417) at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3626) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3782) at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:101) at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135) at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2307) at android.os.Handler.dispatchMessage(Handler.java:106) at android.os.Looper.loopOnce(Looper.java:201) at android.os.Looper.loop(Looper.java:288) at android.app.ActivityThread.main(ActivityThread.java:7872) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)
时间: 2023-07-15 14:11:46 浏览: 403
这个错误提示是因为你的 Activity 使用了不兼容的主题。具体地说,你需要使用一个继承自 Theme.AppCompat 主题的主题。你可以在你的 AndroidManifest.xml 文件中为该 Activity 添加一个主题,比如:
```xml
<activity
android:name=".LoginMainActivity"
android:theme="@style/Theme.AppCompat.Light">
```
或者你可以在你的 styles.xml 文件中定义一个主题,然后在 AndroidManifest.xml 文件中引用该主题,比如:
```xml
<style name="AppTheme" parent="Theme.AppCompat.Light">
<!-- Customize your theme here. -->
</style>
```
然后在 AndroidManifest.xml 文件中引用该主题:
```xml
<application
android:theme="@style/AppTheme">
<!-- ... -->
</application>
```
相关问题
E/AndroidRuntime: FATAL EXCEPTION: main Process: com.example.photodiary2, PID: 7737 java.lang.RuntimeException: Unable to resume activity {com.example.photodiary2/com.example.photodiary2.Diary}: java.lang.IllegalStateException: Cannot access database on the main thread since it may potentially lock the UI for a long period of time.
这是一个运行时异常,出现在安卓应用程序 com.example.photodiary2 的 Diary 活动中。异常信息显示,无法恢复活动,因为出现了 java.lang.IllegalStateException 异常,该异常的原因是当前代码在主线程中尝试访问数据库,这可能会导致界面被长时间锁定,从而导致应用程序无响应。为了避免这种情况,你应该在后台线程中执行数据库操作。可以使用 AsyncTask 或者 Kotlin 的协程等异步机制来实现。
E/AndroidRuntime: FATAL EXCEPTION: main Process: com.example.design, PID: 20349 java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.design/com.example.design.admin.admin_bookinfo}: android.database.sqlite.SQLiteException: table recommendBook already exists (code 1 SQLITE_ERROR): , while compiling: create table recommendBook(people_name text, yonghu text, guanliyuan text, _id integer primary key autoincrement);
这个错误的原因是在创建名为 recommendBook 的表时出现了问题。错误信息表明该表已经存在,因此无法再次创建该表。
解决方法是检查你的代码,确保在创建表之前,检查该表是否已经存在。你还可以尝试删除该表并重新运行应用程序,这样可能会解决问题。 但是,这样做会导致数据丢失,因此请确保在删除表之前备份数据。
阅读全文