B
badkeks
Neues Mitglied
Hallo Leute,
und zwar hab ich eine einfache App geschrieben welche sich allerdings nicht starten lässt... Es erscheint stets die Nachricht:
the application has stopped unexpectedly
Bin dann mal hergegangen und hab ddms laufen lassen...
Der Log sieht wie folgt aus:
Sieht jemand von euch Profis woran es liegt?
Oder könnte Ihr ohne Quellcode nichts sagen?
Viele Dank!
und zwar hab ich eine einfache App geschrieben welche sich allerdings nicht starten lässt... Es erscheint stets die Nachricht:
the application has stopped unexpectedly
Bin dann mal hergegangen und hab ddms laufen lassen...
Der Log sieht wie folgt aus:
Code:
03-18 22:49:32.511: INFO/ActivityManager(51): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=de.verleihsystem/.LoanForm }
03-18 22:49:32.741: INFO/ActivityManager(51): Start proc de.verleihsystem for activity de.verleihsystem/.LoanForm: pid=326 uid=10003 gids={}
03-18 22:49:33.031: INFO/jdwp(326): received file descriptor 10 from ADB
03-18 22:49:33.101: INFO/jdwp(326): Ignoring second debugger -- accepting and dropping
03-18 22:49:33.151: DEBUG/ddm-heap(326): Got feature list request
03-18 22:49:33.561: WARN/ResourceType(326): getEntry failing because entryIndex 1 is beyond type entryCount 1
03-18 22:49:33.561: WARN/ResourceType(326): Failure getting entry for 0x7f030001 (t=2 e=1) in package 0: 0x80000001
03-18 22:49:33.571: DEBUG/AndroidRuntime(326): Shutting down VM
03-18 22:49:33.571: WARN/dalvikvm(326): threadid=3: thread exiting with uncaught exception (group=0x4001aa28)
03-18 22:49:33.571: ERROR/AndroidRuntime(326): Uncaught handler: thread main exiting due to uncaught exception
03-18 22:49:33.591: ERROR/AndroidRuntime(326): java.lang.RuntimeException: Unable to start activity ComponentInfo{de.verleihsystem/de.verleihsystem.LoanForm}: android.content.res.Resources$NotFoundException: Resource ID #0x7f030001
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2401)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2417)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at android.app.ActivityThread.access$2100(ActivityThread.java:116)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1794)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at android.os.Handler.dispatchMessage(Handler.java:99)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at android.os.Looper.loop(Looper.java:123)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at android.app.ActivityThread.main(ActivityThread.java:4203)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at java.lang.reflect.Method.invokeNative(Native Method)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at java.lang.reflect.Method.invoke(Method.java:521)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:791)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:549)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at dalvik.system.NativeStart.main(Native Method)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): Caused by: android.content.res.Resources$NotFoundException: Resource ID #0x7f030001
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at android.content.res.Resources.getValue(Resources.java:896)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at android.content.res.Resources.loadXmlResourceParser(Resources.java:1869)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at android.content.res.Resources.getLayout(Resources.java:735)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at android.view.LayoutInflater.inflate(LayoutInflater.java:318)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at android.view.LayoutInflater.inflate(LayoutInflater.java:276)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:313)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at android.app.Activity.setContentView(Activity.java:1620)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at de.verleihsystem.LoanForm.onCreate(LoanForm.java:23)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1123)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2364)
03-18 22:49:33.591: ERROR/AndroidRuntime(326): ... 11 more
03-18 22:49:33.601: INFO/Process(51): Sending signal. PID: 326 SIG: 3
03-18 22:49:33.601: INFO/dalvikvm(326): threadid=7: reacting to signal 3
03-18 22:49:33.601: ERROR/dalvikvm(326): Unable to open stack trace file '/data/anr/traces.txt': Permission denied
03-18 22:49:37.151: INFO/Process(326): Sending signal. PID: 326 SIG: 9
03-18 22:49:37.171: INFO/ActivityManager(51): Process de.verleihsystem (pid 326) has died.
03-18 22:49:37.271: WARN/UsageStats(51): Unexpected resume of com.android.launcher while already resumed in de.verleihsystem
03-18 22:49:37.441: WARN/InputManagerService(51): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@4391e0d0
Oder könnte Ihr ohne Quellcode nichts sagen?
Viele Dank!