2013-04-09 225 views
0

我无法弄清为什么我的应用程序是关闭屏幕时强行关闭,这是logcat 我的应用程序具有滚动文本,显示小部件,获取用户位置,有传呼机,获取当前时间,获取电池电量,所以代码相当长,所以现在我只会发布logcat,也许你可以通过这个数字找出问题 如果你需要一些代码让我知道当关闭屏幕时,应用程序强制关闭

04-09 02:57:56.498: D/Evolution Launcher(16574): Stopping 
04-09 02:57:56.623: W/IInputConnectionWrapper(16574): getExtractedText on inactive InputConnection 
04-09 02:57:56.639: W/IInputConnectionWrapper(16574): getTextBeforeCursor on inactive InputConnection 
04-09 02:57:56.655: W/IInputConnectionWrapper(16574): getSelectedText on inactive InputConnection 
04-09 02:57:56.662: W/IInputConnectionWrapper(16574): getTextAfterCursor on inactive InputConnection 
04-09 02:57:56.670: W/IInputConnectionWrapper(16574): getExtractedText on inactive InputConnection 
04-09 02:57:56.670: W/IInputConnectionWrapper(16574): getTextBeforeCursor on inactive InputConnection 
04-09 02:57:56.850: D/dalvikvm(16574): GC_EXPLICIT freed 1120K, 6% free 20548K/21696K, paused 3ms+13ms, total 140ms 
04-09 02:57:56.959: W/IInputConnectionWrapper(16574): getExtractedText on inactive InputConnection 
04-09 02:57:57.053: W/ResourceType(16574): Failure getting entry for 0x7f030004 (t=2 e=4) in package 0 (error -75) 
04-09 02:57:57.053: D/AndroidRuntime(16574): Shutting down VM 
04-09 02:57:57.053: W/dalvikvm(16574): threadid=1: thread exiting with uncaught exception (group=0x41356930) 
04-09 02:57:57.069: E/AndroidRuntime(16574): FATAL EXCEPTION: main 
04-09 02:57:57.069: E/AndroidRuntime(16574): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.doublep.evolution/com.doublep.evolution.LauncherActivity}: android.content.res.Resources$NotFoundException: Resource ID #0x7f030004 
04-09 02:57:57.069: E/AndroidRuntime(16574): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2180) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2230) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at android.app.ActivityThread.handleRelaunchActivity(ActivityThread.java:3692) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at android.app.ActivityThread.access$700(ActivityThread.java:141) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1240) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at android.os.Handler.dispatchMessage(Handler.java:99) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at android.os.Looper.loop(Looper.java:137) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at android.app.ActivityThread.main(ActivityThread.java:5041) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at java.lang.reflect.Method.invokeNative(Native Method) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at java.lang.reflect.Method.invoke(Method.java:511) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at dalvik.system.NativeStart.main(Native Method) 
04-09 02:57:57.069: E/AndroidRuntime(16574): Caused by: android.content.res.Resources$NotFoundException: Resource ID #0x7f030004 
04-09 02:57:57.069: E/AndroidRuntime(16574): at android.content.res.Resources.getValue(Resources.java:1014) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at android.content.res.Resources.loadXmlResourceParser(Resources.java:2139) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at android.content.res.Resources.getLayout(Resources.java:853) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at android.view.LayoutInflater.inflate(LayoutInflater.java:394) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at android.view.LayoutInflater.inflate(LayoutInflater.java:352) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:270) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at android.app.Activity.setContentView(Activity.java:1881) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at com.doublep.evolution.LauncherActivity.onCreate(LauncherActivity.java:455) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at android.app.Activity.performCreate(Activity.java:5104) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1080) 
04-09 02:57:57.069: E/AndroidRuntime(16574): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2144) 
04-09 02:57:57.069: E/AndroidRuntime(16574): ... 12 more 
04-09 02:57:57.116: I/Process(16574): Sending signal. PID: 16574 SIG: 9 

我已经将setContentView更改为不同的布局(不同的文件,从旧的复制的内容) 它给了我一个不同的力关闭

04-09 03:34:25.514: D/dalvikvm(18864): GC_EXPLICIT freed 1259K, 6% free 20440K/21728K, paused 2ms+7ms, total 36ms 
04-09 03:34:28.553: D/Evolution Launcher(18864): Stopping 
04-09 03:34:28.756: W/IInputConnectionWrapper(18864): getExtractedText on inactive InputConnection 
04-09 03:34:28.772: W/IInputConnectionWrapper(18864): getTextBeforeCursor on inactive InputConnection 
04-09 03:34:28.780: W/IInputConnectionWrapper(18864): getSelectedText on inactive InputConnection 
04-09 03:34:28.780: W/IInputConnectionWrapper(18864): getTextAfterCursor on inactive InputConnection 
04-09 03:34:28.780: W/IInputConnectionWrapper(18864): getExtractedText on inactive InputConnection 
04-09 03:34:28.787: W/IInputConnectionWrapper(18864): getTextBeforeCursor on inactive InputConnection 
04-09 03:34:28.795: W/IInputConnectionWrapper(18864): getExtractedText on inactive InputConnection 
04-09 03:34:28.795: W/IInputConnectionWrapper(18864): getTextBeforeCursor on inactive InputConnection 
04-09 03:34:28.803: W/IInputConnectionWrapper(18864): getSelectedText on inactive InputConnection 
04-09 03:34:28.803: W/IInputConnectionWrapper(18864): getTextAfterCursor on inactive InputConnection 
04-09 03:34:28.811: W/IInputConnectionWrapper(18864): getExtractedText on inactive InputConnection 
04-09 03:34:28.819: W/IInputConnectionWrapper(18864): getTextBeforeCursor on inactive InputConnection 
04-09 03:34:28.819: W/IInputConnectionWrapper(18864): getSelectedText on inactive InputConnection 
04-09 03:34:28.826: W/IInputConnectionWrapper(18864): getTextAfterCursor on inactive InputConnection 
04-09 03:34:28.834: W/IInputConnectionWrapper(18864): beginBatchEdit on inactive InputConnection 
04-09 03:34:28.834: W/IInputConnectionWrapper(18864): endBatchEdit on inactive InputConnection 
04-09 03:34:28.834: W/IInputConnectionWrapper(18864): getExtractedText on inactive InputConnection 
04-09 03:34:28.834: W/IInputConnectionWrapper(18864): getTextBeforeCursor on inactive InputConnection 
04-09 03:34:28.842: W/IInputConnectionWrapper(18864): getSelectedText on inactive InputConnection 
04-09 03:34:28.842: W/IInputConnectionWrapper(18864): getTextAfterCursor on inactive InputConnection 
04-09 03:34:28.858: W/IInputConnectionWrapper(18864): beginBatchEdit on inactive InputConnection 
04-09 03:34:28.858: W/IInputConnectionWrapper(18864): endBatchEdit on inactive InputConnection 
04-09 03:34:29.569: D/dalvikvm(18864): GC_FOR_ALLOC freed 1154K, 7% free 21232K/22604K, paused 51ms, total 66ms 
04-09 03:34:29.819: D/dalvikvm(18864): GC_FOR_ALLOC freed 201K, 7% free 23846K/25416K, paused 25ms, total 25ms 
04-09 03:34:30.170: D/dalvikvm(18864): GC_FOR_ALLOC freed 3K, 6% free 26556K/28128K, paused 21ms, total 24ms 
04-09 03:34:30.420: D/Evolution Launcher(18864): Loading variables 
04-09 03:34:30.420: D/Evolution Launcher(18864): Restoring prefs 
04-09 03:34:30.420: D/Evolution Launcher(18864): Screen density actions 
04-09 03:34:30.467: W/IInputConnectionWrapper(18864): getExtractedText on inactive InputConnection 
04-09 03:34:30.475: I/Choreographer(18864): Skipped 71 frames! The application may be doing too much work on its main thread. 
04-09 03:34:30.631: E/ActivityThread(18864): Activity com.doublep.evolution.LauncherActivity has leaked IntentReceiver [email protected] that was originally registered here. Are you missing a call to unregisterReceiver()? 
04-09 03:34:30.631: E/ActivityThread(18864): android.app.IntentReceiverLeaked: Activity com.doublep.evolution.LauncherActivity has leaked IntentReceiver [email protected] that was originally registered here. Are you missing a call to unregisterReceiver()? 
04-09 03:34:30.631: E/ActivityThread(18864): at android.app.LoadedApk$ReceiverDispatcher.<init>(LoadedApk.java:795) 
04-09 03:34:30.631: E/ActivityThread(18864): at android.app.LoadedApk.getReceiverDispatcher(LoadedApk.java:596) 
04-09 03:34:30.631: E/ActivityThread(18864): at android.app.ContextImpl.registerReceiverInternal(ContextImpl.java:1316) 
04-09 03:34:30.631: E/ActivityThread(18864): at android.app.ContextImpl.registerReceiver(ContextImpl.java:1296) 
04-09 03:34:30.631: E/ActivityThread(18864): at android.app.ContextImpl.registerReceiver(ContextImpl.java:1290) 
04-09 03:34:30.631: E/ActivityThread(18864): at android.content.ContextWrapper.registerReceiver(ContextWrapper.java:423) 
04-09 03:34:30.631: E/ActivityThread(18864): at com.doublep.evolution.LauncherActivity.batteryLevel(LauncherActivity.java:144) 
04-09 03:34:30.631: E/ActivityThread(18864): at com.doublep.evolution.LauncherActivity.access$0(LauncherActivity.java:116) 
04-09 03:34:30.631: E/ActivityThread(18864): at com.doublep.evolution.LauncherActivity$1.run(LauncherActivity.java:985) 
04-09 03:34:30.631: E/ActivityThread(18864): at android.os.Handler.handleCallback(Handler.java:725) 
04-09 03:34:30.631: E/ActivityThread(18864): at android.os.Handler.dispatchMessage(Handler.java:92) 
04-09 03:34:30.631: E/ActivityThread(18864): at android.os.Looper.loop(Looper.java:137) 
04-09 03:34:30.631: E/ActivityThread(18864): at android.app.ActivityThread.main(ActivityThread.java:5041) 
04-09 03:34:30.631: E/ActivityThread(18864): at java.lang.reflect.Method.invokeNative(Native Method) 
04-09 03:34:30.631: E/ActivityThread(18864): at java.lang.reflect.Method.invoke(Method.java:511) 
04-09 03:34:30.631: E/ActivityThread(18864): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793) 
04-09 03:34:30.631: E/ActivityThread(18864): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560) 
04-09 03:34:30.631: E/ActivityThread(18864): at dalvik.system.NativeStart.main(Native Method) 
04-09 03:34:30.701: W/IInputConnectionWrapper(18864): getTextBeforeCursor on inactive InputConnection 
04-09 03:34:30.701: D/AndroidRuntime(18864): Shutting down VM 
04-09 03:34:30.701: W/dalvikvm(18864): threadid=1: thread exiting with uncaught exception (group=0x41356930) 
04-09 03:34:30.709: E/AndroidRuntime(18864): FATAL EXCEPTION: main 
04-09 03:34:30.709: E/AndroidRuntime(18864): java.lang.RuntimeException: Error receiving broadcast Intent { act=android.intent.action.BATTERY_CHANGED flg=0x60000010 (has extras) } in [email protected] 
04-09 03:34:30.709: E/AndroidRuntime(18864): at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:768) 
04-09 03:34:30.709: E/AndroidRuntime(18864): at android.os.Handler.handleCallback(Handler.java:725) 
04-09 03:34:30.709: E/AndroidRuntime(18864): at android.os.Handler.dispatchMessage(Handler.java:92) 
04-09 03:34:30.709: E/AndroidRuntime(18864): at android.os.Looper.loop(Looper.java:137) 
04-09 03:34:30.709: E/AndroidRuntime(18864): at android.app.ActivityThread.main(ActivityThread.java:5041) 
04-09 03:34:30.709: E/AndroidRuntime(18864): at java.lang.reflect.Method.invokeNative(Native Method) 
04-09 03:34:30.709: E/AndroidRuntime(18864): at java.lang.reflect.Method.invoke(Method.java:511) 
04-09 03:34:30.709: E/AndroidRuntime(18864): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793) 
04-09 03:34:30.709: E/AndroidRuntime(18864): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560) 
04-09 03:34:30.709: E/AndroidRuntime(18864): at dalvik.system.NativeStart.main(Native Method) 
04-09 03:34:30.709: E/AndroidRuntime(18864): Caused by: java.lang.IllegalArgumentException: Receiver not registered: [email protected] 
04-09 03:34:30.709: E/AndroidRuntime(18864): at android.app.LoadedApk.forgetReceiverDispatcher(LoadedApk.java:657) 
04-09 03:34:30.709: E/AndroidRuntime(18864): at android.app.ContextImpl.unregisterReceiver(ContextImpl.java:1339) 
04-09 03:34:30.709: E/AndroidRuntime(18864): at android.content.ContextWrapper.unregisterReceiver(ContextWrapper.java:445) 
04-09 03:34:30.709: E/AndroidRuntime(18864): at com.doublep.evolution.LauncherActivity$4.onReceive(LauncherActivity.java:121) 
04-09 03:34:30.709: E/AndroidRuntime(18864): at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:758) 
04-09 03:34:30.709: E/AndroidRuntime(18864): ... 9 more 
04-09 03:34:30.741: I/Process(18864): Sending signal. PID: 18864 SIG: 9 

如果您看到日志“停止”这是当我关掉屏幕,在那里你看到“加载变量”,它是在OnCreate,所以它的意思是这一次它重新启动,但崩溃反正

UPDATE : 我的应用程序在横向模式下运行,所以我的主要布局是土地布局内只,显然第一logcat的是,当我只有山水,第二个是当我有它的纵向布局

内更新2 0x7f0 30004是未使用,删除它实施后的布局叫做numpad.xml,价值得到了重新建立关联的Settings.XML,同样的问题

更新3 我注释掉的广播接收器,这是logcat的我得到 http://pastebin.com/CXYA7bJe

UPDATE 4部分解决 好,所以,第一logcat的是给我时,我只能以横向有布局,将其转移到纵向解决的首要logcat的

第二logcat的是通过注释掉的BroadcastReceiver

这是广播接收器的样子

batteryLevelReceiver = new BroadcastReceiver() { 
      public void onReceive(Context context, Intent intent) { 
       context.unregisterReceiver(this); 
       int rawlevel = intent.getIntExtra("level", -1); 
       int scale = intent.getIntExtra("scale", -1); 
       int level = -1; 
       if (rawlevel >= 0 && scale > 0) { 
        level = (rawlevel * 100)/scale; 
       } 
       if (animToBattery == true) { 
        if (animValue < level * 1.8) { 
         animValue = animValue +2; 
        } 
        else { 
         animToBattery = false; 
        } 
        ArcView.value = (float)(animValue); 
       } 
       else { 
        ArcView.value = (float)(level * 1.8); 
       } 

      } 
     }; 
     IntentFilter batteryLevelFilter = new IntentFilter(Intent.ACTION_BATTERY_CHANGED); 
     registerReceiver(batteryLevelReceiver, batteryLevelFilter); 

有什么不对的地方解决了吗? 我注销它的onStop(),此外,我不知道这是什么context.unregisterReceiver(this);是在那里做,但删除它并没有解决任何问题

UPDATE 5 初始化变量

http://pastebin.com/PAuw5fmd

+0

当屏幕熄灭时,您是否开始进行任何活动?它说它无法在活动LauncherActivity.java中找到一个资源“资源ID#0x7f030004”:455' – 2013-04-09 01:15:43

+0

在455行我有setContentView(R.layout.launcher_main); launcher_main有一个包含在里面 我没有开始任何活动(我已经评论他们出来进行调试) – DoubleP90 2013-04-09 01:19:37

+0

您可能引用了您的'launcher_main'布局中的一个资源,该资源在平台版本的应用程序中不可用被执行。也可能是因为您已将资源定义在具有特定限定符的文件夹中,以防止运行时环境加载该资源。 – 2013-04-09 01:43:49

回答

1

Caused by: java.lang.IllegalArgumentException: Receiver not registered: [email protected]

java.lang.RuntimeException: Error receiving broadcast Intent { act=android.intent.action.BATTERY_CHANGED flg=0x60000010 (has extras) }似乎腥。如果电池电量发生变化,您是否确实注册过广播接收器?

Activity com.doublep.evolution.LauncherActivity has leaked IntentReceiver [email protected] that was originally registered here. Are you missing a call to unregisterReceiver()?

我靠着越来越趋向事实上,有与广播接收器有问题。

首先logcat的

由logcat的再来看,我看到有一个资源未发现异常 - Caused by: android.content.res.Resources$NotFoundException: Resource ID #0x7f030004

检查什么R.java文件指向为#0x7f030004,看看资源确实存在。

二logcat的

Caused by: java.lang.IllegalArgumentException: Receiver not registered: [email protected]

检查,如果你已经注册LauncherActivity接收器。

更新

尝试使IntentFilter batteryLevelFilter全球然后初始化它batteryLevel。我假设这是由于Android无法识别Receiver的解析范围。

+0

我现在没有注册它,但我仍然得到forceclosing,这次没有关于broadcastReceiver的错误,所以它有帮助但仍然没有解决问题 – DoubleP90 2013-04-09 02:21:55

+0

将新的logcat放到pastebin请把它与我们联系起来。 – 2013-04-09 02:26:44

+0

对不起,我错了,我已经更新了这个问题,显然第一个logcat是当我只有布局内陆地布局,第二个logcat是从我有肖像布局时,这有点奇怪,我我仍然有相同的broadcastReceiver问题(只有当我有肖像布局里面的布局) – DoubleP90 2013-04-09 02:33:11