2017-09-30 61 views
-1

我是新的Android開發人員,我在設備中運行應用程序時遇到以下錯誤。任何人都可以請幫我關於下面的錯誤。您的幫助將不勝感激。在android studio中運行應用程序時出錯

E/AndroidRuntime: FATAL EXCEPTION: main 
                   Process: test1.uitflashlight, PID: 28312 
                   java.lang.RuntimeException: Unable to start activity ComponentInfo{test1.uitflashlight/test1.uitflashlight.MainActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity. 
                    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2345) 
                    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2405) 
                    at android.app.ActivityThread.access$800(ActivityThread.java:149) 
                    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1324) 
                    at android.os.Handler.dispatchMessage(Handler.java:102) 
                    at android.os.Looper.loop(Looper.java:211) 
                    at android.app.ActivityThread.main(ActivityThread.java:5319) 
                    at java.lang.reflect.Method.invoke(Native Method) 
                    at java.lang.reflect.Method.invoke(Method.java:372) 
                    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1016) 
                    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:811) 
                    Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity. 
                    at android.support.v7.app.AppCompatDelegateImplV9.createSubDecor(AppCompatDelegateImplV9.java:359) 
                    at android.support.v7.app.AppCompatDelegateImplV9.ensureSubDecor(AppCompatDelegateImplV9.java:328) 
                    at android.support.v7.app.AppCompatDelegateImplV9.setContentView(AppCompatDelegateImplV9.java:289) 
                    at android.support.v7.app.AppCompatActivity.setContentView(AppCompatActivity.java:140) 
                    at test1.uitflashlight.MainActivity.onCreate(MainActivity.java:23) 
                    at android.app.Activity.performCreate(Activity.java:5933) 
                    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1105) 
                    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2298) 
                    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2405)  
                    at android.app.ActivityThread.access$800(ActivityThread.java:149)  
                    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1324)  
                    at android.os.Handler.dispatchMessage(Handler.java:102)  
                    at android.os.Looper.loop(Looper.java:211)  
                    at android.app.ActivityThread.main(ActivityThread.java:5319)  
                    at java.lang.reflect.Method.invoke(Native Method)  
                    at java.lang.reflect.Method.invoke(Method.java:372)  
                    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1016)  
                    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:811)  

Manifest File

回答

0

的錯誤顯示在由此造成的日誌 :java.lang.IllegalStateException:您需要使用Theme.AppCompat主題(或後代)與本次活動。

爲主題,從Theme.AppCompat擴展了活動必須在AndroidManifest.xml中

android:theme="@style/Theme" 

使用App.Theme或其後代

+0

ü可以給我一些更多的信息像什麼改變一個即時通訊一點英語不好:D – E1337K

相關問題