zoukankan      html  css  js  c++  java
  • Android(java)学习笔记65:Clock App 编写报错02

    1. 首先之间看错误:

    07-13 10:07:55.354: E/AndroidRuntime(8008): FATAL EXCEPTION: main
    07-13 10:07:55.354: E/AndroidRuntime(8008): java.lang.NullPointerException
    07-13 10:07:55.354: E/AndroidRuntime(8008):     at com.himi.clock.AlarmActivity.onClick(AlarmActivity.java:42)
    07-13 10:07:55.354: E/AndroidRuntime(8008):     at android.view.View.performClick(View.java:4171)
    07-13 10:07:55.354: E/AndroidRuntime(8008):     at android.view.View$PerformClick.run(View.java:17097)
    07-13 10:07:55.354: E/AndroidRuntime(8008):     at android.os.Handler.handleCallback(Handler.java:615)
    07-13 10:07:55.354: E/AndroidRuntime(8008):     at android.os.Handler.dispatchMessage(Handler.java:92)
    07-13 10:07:55.354: E/AndroidRuntime(8008):     at android.os.Looper.loop(Looper.java:137)
    07-13 10:07:55.354: E/AndroidRuntime(8008):     at android.app.ActivityThread.main(ActivityThread.java:4914)
    07-13 10:07:55.354: E/AndroidRuntime(8008):     at java.lang.reflect.Method.invokeNative(Native Method)
    07-13 10:07:55.354: E/AndroidRuntime(8008):     at java.lang.reflect.Method.invoke(Method.java:511)
    07-13 10:07:55.354: E/AndroidRuntime(8008):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:808)
    07-13 10:07:55.354: E/AndroidRuntime(8008):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:575)
    07-13 10:07:55.354: E/AndroidRuntime(8008):     at dalvik.system.NativeStart.main(Native Method)

    找到AlarmActivity.java:42  会发现calendar.(调用方法),之前我是直接private Calendar calendar;我以为我实例化,后来我追踪到API才知道原来这个Calendar是个抽象类,所以这是不能实例化。但是Calendar这个抽象类内部提供了获得这个抽象类实例的方法。

    这样解决这个空指针异常问题

    2. 还有一个类似的报错:

    07-13 09:45:15.643: E/AndroidRuntime(5437): FATAL EXCEPTION: main
    07-13 09:45:15.643: E/AndroidRuntime(5437): java.lang.NullPointerException
    07-13 09:45:15.643: E/AndroidRuntime(5437):     at com.himi.clock.AlarmActivity.onClick(AlarmActivity.java:84)
    07-13 09:45:15.643: E/AndroidRuntime(5437):     at android.view.View.performClick(View.java:4171)
    07-13 09:45:15.643: E/AndroidRuntime(5437):     at android.view.View$PerformClick.run(View.java:17097)
    07-13 09:45:15.643: E/AndroidRuntime(5437):     at android.os.Handler.handleCallback(Handler.java:615)
    07-13 09:45:15.643: E/AndroidRuntime(5437):     at android.os.Handler.dispatchMessage(Handler.java:92)
    07-13 09:45:15.643: E/AndroidRuntime(5437):     at android.os.Looper.loop(Looper.java:137)
    07-13 09:45:15.643: E/AndroidRuntime(5437):     at android.app.ActivityThread.main(ActivityThread.java:4914)
    07-13 09:45:15.643: E/AndroidRuntime(5437):     at java.lang.reflect.Method.invokeNative(Native Method)
    07-13 09:45:15.643: E/AndroidRuntime(5437):     at java.lang.reflect.Method.invoke(Method.java:511)
    07-13 09:45:15.643: E/AndroidRuntime(5437):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:808)
    07-13 09:45:15.643: E/AndroidRuntime(5437):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:575)
    07-13 09:45:15.643: E/AndroidRuntime(5437):     at dalvik.system.NativeStart.main(Native Method)


    找到AlarmActivity.java:84 你会发现这样行我调用mTextView,我在class类中private TextView mTextView;但是我在布局文件xml中没有添加这个,也就是没有mTextView = (TextView)findViewById(R.id.textview01);所以没有堆内存对应于指针mTextView,所以这个mTextView是个空指针。

    3. 最后一个错误:

    07-13 09:32:18.083: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:32:28.034: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:32:33.069: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:32:38.085: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:32:48.045: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:32:53.081: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:32:58.106: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:33:01.219: E/dalvikvm(513): threadid=100: created from interp,name=BatteryStats-Write
    07-13 09:33:01.219: E/dalvikvm(513): threadid=100: calling run(),name=BatteryStats-Write
    07-13 09:33:01.249: E/dalvikvm(513): threadid=100: exiting,name=BatteryStats-Write
    07-13 09:33:08.036: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:33:13.082: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:33:18.107: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:33:27.707: E/dalvikvm(513): threadid=100: created from interp,name=Thread-264
    07-13 09:33:27.707: E/dalvikvm(513): threadid=100: calling run(),name=Thread-264
    07-13 09:33:27.727: E/dalvikvm(513): threadid=100: exiting,name=Thread-264
    07-13 09:33:28.038: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:33:28.198: E/dalvikvm(513): threadid=100: created from interp,name=Thread-265
    07-13 09:33:28.198: E/dalvikvm(513): threadid=100: calling run(),name=Thread-265
    07-13 09:33:28.198: E/dalvikvm(513): threadid=102: created from interp,name=RefQueueWorker@org.apache.http.impl.conn.tsccm.ConnPoolByRoute@43b32730
    07-13 09:33:28.198: E/dalvikvm(513): threadid=102: calling run(),name=RefQueueWorker@org.apache.http.impl.conn.tsccm.ConnPoolByRoute@43b32730
    07-13 09:33:28.218: E/dalvikvm(513): threadid=102: exiting,name=RefQueueWorker@org.apache.http.impl.conn.tsccm.ConnPoolByRoute@43b32730
    07-13 09:33:28.218: E/dalvikvm(513): threadid=102: created from interp,name=RefQueueWorker@org.apache.http.impl.conn.tsccm.ConnPoolByRoute@43bbe9b0
    07-13 09:33:28.218: E/dalvikvm(513): threadid=102: calling run(),name=RefQueueWorker@org.apache.http.impl.conn.tsccm.ConnPoolByRoute@43bbe9b0
    07-13 09:33:28.218: E/dalvikvm(513): threadid=102: exiting,name=RefQueueWorker@org.apache.http.impl.conn.tsccm.ConnPoolByRoute@43bbe9b0
    07-13 09:33:28.218: E/dalvikvm(513): threadid=103: created from interp,name=RefQueueWorker@org.apache.http.impl.conn.tsccm.ConnPoolByRoute@43c76c38
    07-13 09:33:28.228: E/dalvikvm(513): threadid=103: calling run(),name=RefQueueWorker@org.apache.http.impl.conn.tsccm.ConnPoolByRoute@43c76c38
    07-13 09:33:28.228: E/dalvikvm(513): threadid=100: exiting,name=Thread-265
    07-13 09:33:28.228: E/dalvikvm(513): threadid=103: exiting,name=RefQueueWorker@org.apache.http.impl.conn.tsccm.ConnPoolByRoute@43c76c38
    07-13 09:33:33.053: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:33:38.079: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:33:48.049: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:33:53.065: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:33:58.090: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:34:08.040: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:34:13.066: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:34:18.091: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:34:28.042: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:34:33.057: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:34:38.093: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:34:48.043: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:34:53.069: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:34:58.104: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:35:08.024: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:35:08.125: E/dalvikvm(169): threadid=2: exiting,name=ReferenceQueueDaemon
    07-13 09:35:08.125: E/dalvikvm(169): threadid=3: exiting,name=FinalizerDaemon
    07-13 09:35:08.125: E/dalvikvm(169): threadid=4: exiting,name=FinalizerWatchdogDaemon
    07-13 09:35:08.145: E/dalvikvm(169): native fork pid:2376 done.
    07-13 09:35:08.145: E/dalvikvm(169): threadid=2: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:08.145: E/dalvikvm(169): threadid=2: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:08.145: E/dalvikvm(169): threadid=3: created from interp,name=FinalizerDaemon
    07-13 09:35:08.145: E/dalvikvm(169): threadid=3: calling run(),name=FinalizerDaemon
    07-13 09:35:08.145: E/dalvikvm(169): threadid=4: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:08.155: E/dalvikvm(169): threadid=4: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:08.155: E/dalvikvm(2376): native fork pid:0 done.
    07-13 09:35:08.155: E/dalvikvm(2376): threadid=5: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:08.155: E/dalvikvm(2376): threadid=5: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:08.155: E/dalvikvm(2376): threadid=6: created from interp,name=FinalizerDaemon
    07-13 09:35:08.155: E/dalvikvm(2376): threadid=6: calling run(),name=FinalizerDaemon
    07-13 09:35:08.155: E/dalvikvm(2376): threadid=7: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:08.155: E/dalvikvm(2376): threadid=7: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:08.435: E/dalvikvm(2376): threadid=10: created from interp,name=Thread-5
    07-13 09:35:08.435: E/dalvikvm(2376): threadid=10: calling run(),name=Thread-5
    07-13 09:35:08.435: E/dalvikvm(2376): threadid=10: exiting,name=Thread-5
    07-13 09:35:08.435: E/dalvikvm(2527): threadid=10: created from interp,name=Thread-241
    07-13 09:35:08.435: E/dalvikvm(2527): threadid=10: calling run(),name=Thread-241
    07-13 09:35:08.435: E/dalvikvm(2527): threadid=21: created from interp,name=MyLocationGetter
    07-13 09:35:08.435: E/dalvikvm(2527): threadid=21: calling run(),name=MyLocationGetter
    07-13 09:35:10.787: E/dalvikvm(846): threadid=32: created from interp,name=RefQueueWorker@org.apache.http.impl.conn.tsccm.ConnPoolByRoute@42496268
    07-13 09:35:10.787: E/dalvikvm(846): threadid=32: calling run(),name=RefQueueWorker@org.apache.http.impl.conn.tsccm.ConnPoolByRoute@42496268
    07-13 09:35:10.797: E/dalvikvm(846): threadid=56: created from interp,name=Thread-183
    07-13 09:35:10.797: E/dalvikvm(846): threadid=56: calling run(),name=Thread-183
    07-13 09:35:10.797: E/dalvikvm(846): threadid=57: created from interp,name=pool-76-thread-1
    07-13 09:35:10.797: E/dalvikvm(846): threadid=57: calling run(),name=pool-76-thread-1
    07-13 09:35:10.827: E/dalvikvm(846): threadid=32: exiting,name=RefQueueWorker@org.apache.http.impl.conn.tsccm.ConnPoolByRoute@42496268
    07-13 09:35:10.837: E/dalvikvm(846): threadid=57: exiting,name=pool-76-thread-1
    07-13 09:35:10.918: E/dalvikvm(3232): threadid=10: created from interp,name=IntentService[MicloudPushService]
    07-13 09:35:10.918: E/dalvikvm(3232): threadid=10: calling run(),name=IntentService[MicloudPushService]
    07-13 09:35:10.938: E/dalvikvm(3232): threadid=10: exiting,name=IntentService[MicloudPushService]
    07-13 09:35:10.968: E/dalvikvm(3232): threadid=10: created from interp,name=IntentService[MicloudPushService]
    07-13 09:35:10.968: E/dalvikvm(3232): threadid=10: calling run(),name=IntentService[MicloudPushService]
    07-13 09:35:10.968: E/dalvikvm(3232): threadid=10: exiting,name=IntentService[MicloudPushService]
    07-13 09:35:13.060: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:35:18.075: E/beacon(1322): execute error:java.net.UnknownHostException: Unable to resolve host "eventlog.beacon.qq.com": No address associated with hostname
    07-13 09:35:19.737: E/dalvikvm(2468): threadid=2: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:19.737: E/dalvikvm(2468): threadid=2: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:19.737: E/dalvikvm(2468): threadid=3: created from interp,name=FinalizerDaemon
    07-13 09:35:19.737: E/dalvikvm(2468): threadid=4: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:19.737: E/dalvikvm(2468): threadid=4: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:19.747: E/dalvikvm(2468): threadid=3: calling run(),name=FinalizerDaemon
    07-13 09:35:19.947: E/dalvikvm(513): threadid=100: created from interp,name=UsageStatsService_DiskWriter
    07-13 09:35:19.957: E/dalvikvm(513): threadid=100: calling run(),name=UsageStatsService_DiskWriter
    07-13 09:35:19.967: E/dalvikvm(513): threadid=100: exiting,name=UsageStatsService_DiskWriter
    07-13 09:35:20.047: E/dalvikvm(24913): threadid=21: created from interp,name=Thread-350
    07-13 09:35:20.047: E/dalvikvm(24913): threadid=21: calling run(),name=Thread-350
    07-13 09:35:20.177: E/qcom_sensors_hal(513): hal_process_report_ind: Bad item quality: 11 
    07-13 09:35:20.378: E/qcom_sensors_hal(513): hal_process_report_ind: Bad item quality: 11 
    07-13 09:35:21.969: E/dalvikvm(1294): threadid=16: created from interp,name=Thread-117
    07-13 09:35:21.969: E/dalvikvm(1294): threadid=16: calling run(),name=Thread-117
    07-13 09:35:22.019: E/dalvikvm(1294): threadid=18: created from interp,name=Thread-118
    07-13 09:35:22.019: E/dalvikvm(1294): threadid=18: calling run(),name=Thread-118
    07-13 09:35:22.039: E/dalvikvm(1294): threadid=16: exiting,name=Thread-117
    07-13 09:35:22.039: E/dalvikvm(3232): threadid=10: created from interp,name=IntentService[MicloudPushService]
    07-13 09:35:22.049: E/dalvikvm(3232): threadid=10: calling run(),name=IntentService[MicloudPushService]
    07-13 09:35:22.090: E/dalvikvm(3232): threadid=10: exiting,name=IntentService[MicloudPushService]
    07-13 09:35:22.100: E/dalvikvm(1294): threadid=18: exiting,name=Thread-118
    07-13 09:35:22.110: E/MusicFXCompat(941): received
    07-13 09:35:22.120: E/dalvikvm(941): threadid=10: created from interp,name=IntentService[CompatibilityService]
    07-13 09:35:22.130: E/dalvikvm(941): threadid=10: calling run(),name=IntentService[CompatibilityService]
    07-13 09:35:22.130: E/MusicFXCompat(941): handleintent
    07-13 09:35:22.130: E/MusicFXCompat(941): intentservice saw: Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.himi.clock flg=0x8000010 cmp=com.dolby/.Compatibility$Receiver (has extras) } Bundle[{android.intent.extra.DATA_REMOVED=false, android.intent.extra.REPLACING=true, android.intent.extra.UID=10095}]
    07-13 09:35:22.140: E/MusicFXCompat(941): found: 3
    07-13 09:35:22.140: E/MusicFXCompat(941): saved default: com.dolby.ds1appUI.MainActivity
    07-13 09:35:22.140: E/MusicFXCompat(941): considering ResolveInfo{424e67f8 com.android.musicfx.Compatibility$Redirector p=2147483647 o=0 m=0x108000}
    07-13 09:35:22.140: E/MusicFXCompat(941): considering ResolveInfo{424e6db0 com.android.settings.Settings$DolbySettingsActivity p=2147483647 o=0 m=0x108000}
    07-13 09:35:22.140: E/MusicFXCompat(941): considering ResolveInfo{424e7360 com.android.musicfx.ActivityMusic p=0 o=0 m=0x108000}
    07-13 09:35:22.140: E/MusicFXCompat(941): disabling receiver ResolveInfo{424e8730 com.android.musicfx.ControlPanelReceiver p=0 o=0 m=0x108000}
    07-13 09:35:22.150: E/MusicFXCompat(941): disabling receiver ResolveInfo{424e91c0 com.android.musicfx.ControlPanelReceiver p=0 o=0 m=0x108000}
    07-13 09:35:22.150: E/MusicFXCompat(941): wrote com.dolby.ds1appUI/com.dolby.ds1appUI.MainActivity as default
    07-13 09:35:22.150: E/dalvikvm(941): threadid=10: exiting,name=IntentService[CompatibilityService]
    07-13 09:35:22.200: E/dalvikvm(2975): threadid=13: created from interp,name=IntentService[PeopleBackgroundTasks]
    07-13 09:35:22.200: E/dalvikvm(2975): threadid=13: calling run(),name=IntentService[PeopleBackgroundTasks]
    07-13 09:35:22.210: E/dalvikvm(2975): threadid=13: exiting,name=IntentService[PeopleBackgroundTasks]
    07-13 09:35:22.230: E/dalvikvm(1759): threadid=10: created from interp,name=IntentService[EngineIntentService]
    07-13 09:35:22.230: E/dalvikvm(1759): threadid=10: calling run(),name=IntentService[EngineIntentService]
    07-13 09:35:22.240: E/dalvikvm(169): threadid=2: exiting,name=ReferenceQueueDaemon
    07-13 09:35:22.240: E/dalvikvm(169): threadid=3: exiting,name=FinalizerDaemon
    07-13 09:35:22.240: E/dalvikvm(169): threadid=4: exiting,name=FinalizerWatchdogDaemon
    07-13 09:35:22.250: E/dalvikvm(169): native fork pid:2509 done.
    07-13 09:35:22.250: E/dalvikvm(169): threadid=2: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:22.250: E/dalvikvm(169): threadid=2: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:22.250: E/dalvikvm(169): threadid=3: created from interp,name=FinalizerDaemon
    07-13 09:35:22.250: E/dalvikvm(169): threadid=3: calling run(),name=FinalizerDaemon
    07-13 09:35:22.250: E/dalvikvm(169): threadid=4: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:22.260: E/dalvikvm(2509): native fork pid:0 done.
    07-13 09:35:22.260: E/dalvikvm(2509): threadid=5: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:22.260: E/dalvikvm(2509): threadid=5: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:22.260: E/dalvikvm(2509): threadid=6: created from interp,name=FinalizerDaemon
    07-13 09:35:22.260: E/dalvikvm(2509): threadid=6: calling run(),name=FinalizerDaemon
    07-13 09:35:22.260: E/dalvikvm(2509): threadid=7: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:22.260: E/dalvikvm(1759): threadid=10: exiting,name=IntentService[EngineIntentService]
    07-13 09:35:22.270: E/dalvikvm(169): threadid=4: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:22.270: E/dalvikvm(2509): threadid=7: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:22.450: E/dalvikvm(169): threadid=2: exiting,name=ReferenceQueueDaemon
    07-13 09:35:22.450: E/dalvikvm(169): threadid=3: exiting,name=FinalizerDaemon
    07-13 09:35:22.450: E/dalvikvm(169): threadid=4: exiting,name=FinalizerWatchdogDaemon
    07-13 09:35:22.460: E/dalvikvm(169): native fork pid:2530 done.
    07-13 09:35:22.460: E/dalvikvm(2509): threadid=10: created from interp,name=IntentService[KeyChainService]
    07-13 09:35:22.460: E/dalvikvm(2509): threadid=10: calling run(),name=IntentService[KeyChainService]
    07-13 09:35:22.460: E/dalvikvm(169): threadid=2: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:22.460: E/dalvikvm(169): threadid=2: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:22.460: E/dalvikvm(169): threadid=3: created from interp,name=FinalizerDaemon
    07-13 09:35:22.460: E/dalvikvm(169): threadid=3: calling run(),name=FinalizerDaemon
    07-13 09:35:22.460: E/dalvikvm(169): threadid=4: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:22.460: E/dalvikvm(169): threadid=4: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:22.460: E/dalvikvm(2530): native fork pid:0 done.
    07-13 09:35:22.470: E/dalvikvm(2530): threadid=5: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:22.470: E/dalvikvm(2530): threadid=5: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:22.470: E/dalvikvm(2530): threadid=6: created from interp,name=FinalizerDaemon
    07-13 09:35:22.470: E/dalvikvm(2530): threadid=6: calling run(),name=FinalizerDaemon
    07-13 09:35:22.470: E/dalvikvm(2530): threadid=7: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:22.470: E/dalvikvm(2530): threadid=7: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:22.490: E/dalvikvm(2509): threadid=10: exiting,name=IntentService[KeyChainService]
    07-13 09:35:22.640: E/dalvikvm(2530): threadid=10: created from interp,name=IntentService[CompatibilityService]
    07-13 09:35:22.640: E/dalvikvm(2530): threadid=10: calling run(),name=IntentService[CompatibilityService]
    07-13 09:35:22.670: E/dalvikvm(2530): threadid=11: created from interp,name=SharedPreferencesImpl-load
    07-13 09:35:22.670: E/dalvikvm(2530): threadid=11: calling run(),name=SharedPreferencesImpl-load
    07-13 09:35:22.670: E/dalvikvm(2530): threadid=11: exiting,name=SharedPreferencesImpl-load
    07-13 09:35:22.690: E/dalvikvm(2530): threadid=10: exiting,name=IntentService[CompatibilityService]
    07-13 09:35:22.720: E/dalvikvm(24913): threadid=22: created from interp,name=IntentService[gamecenter]
    07-13 09:35:22.720: E/dalvikvm(24913): threadid=22: calling run(),name=IntentService[gamecenter]
    07-13 09:35:22.760: E/dalvikvm(3232): threadid=10: created from interp,name=IntentService[MicloudPushService]
    07-13 09:35:22.760: E/dalvikvm(3232): threadid=10: calling run(),name=IntentService[MicloudPushService]
    07-13 09:35:22.770: E/dalvikvm(3232): threadid=10: exiting,name=IntentService[MicloudPushService]
    07-13 09:35:22.780: E/MusicFXCompat(941): received
    07-13 09:35:22.780: E/dalvikvm(941): threadid=10: created from interp,name=IntentService[CompatibilityService]
    07-13 09:35:22.780: E/dalvikvm(941): threadid=10: calling run(),name=IntentService[CompatibilityService]
    07-13 09:35:22.780: E/MusicFXCompat(941): handleintent
    07-13 09:35:22.780: E/MusicFXCompat(941): intentservice saw: Intent { act=android.intent.action.PACKAGE_ADDED dat=package:com.himi.clock flg=0x8000010 cmp=com.dolby/.Compatibility$Receiver (has extras) } Bundle[{android.intent.extra.REPLACING=true, android.intent.extra.UID=10095}]
    07-13 09:35:22.780: E/MusicFXCompat(941): found: 3
    07-13 09:35:22.790: E/MusicFXCompat(941): saved default: com.dolby.ds1appUI.MainActivity
    07-13 09:35:22.790: E/MusicFXCompat(941): considering ResolveInfo{424eca70 com.android.musicfx.Compatibility$Redirector p=2147483647 o=0 m=0x108000}
    07-13 09:35:22.790: E/MusicFXCompat(941): considering ResolveInfo{424ed028 com.android.settings.Settings$DolbySettingsActivity p=2147483647 o=0 m=0x108000}
    07-13 09:35:22.790: E/MusicFXCompat(941): considering ResolveInfo{424ed5d8 com.android.musicfx.ActivityMusic p=0 o=0 m=0x108000}
    07-13 09:35:22.790: E/MusicFXCompat(941): disabling receiver ResolveInfo{424ee9a8 com.android.musicfx.ControlPanelReceiver p=0 o=0 m=0x108000}
    07-13 09:35:22.790: E/MusicFXCompat(941): disabling receiver ResolveInfo{424ef438 com.android.musicfx.ControlPanelReceiver p=0 o=0 m=0x108000}
    07-13 09:35:22.790: E/MusicFXCompat(941): wrote com.dolby.ds1appUI/com.dolby.ds1appUI.MainActivity as default
    07-13 09:35:22.790: E/dalvikvm(941): threadid=10: exiting,name=IntentService[CompatibilityService]
    07-13 09:35:22.800: E/dalvikvm(2975): threadid=13: created from interp,name=IntentService[GamesIntentService]
    07-13 09:35:22.800: E/dalvikvm(2975): threadid=13: calling run(),name=IntentService[GamesIntentService]
    07-13 09:35:22.810: E/dalvikvm(169): threadid=2: exiting,name=ReferenceQueueDaemon
    07-13 09:35:22.810: E/dalvikvm(169): threadid=3: exiting,name=FinalizerDaemon
    07-13 09:35:22.810: E/dalvikvm(169): threadid=4: exiting,name=FinalizerWatchdogDaemon
    07-13 09:35:22.810: E/dalvikvm(2975): threadid=63: created from interp,name=IntentService[PeopleBackgroundTasks]
    07-13 09:35:22.810: E/dalvikvm(2975): threadid=63: calling run(),name=IntentService[PeopleBackgroundTasks]
    07-13 09:35:22.810: E/dalvikvm(24913): threadid=22: exiting,name=IntentService[gamecenter]
    07-13 09:35:22.820: E/dalvikvm(169): native fork pid:2568 done.
    07-13 09:35:22.830: E/dalvikvm(169): threadid=2: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:22.830: E/dalvikvm(169): threadid=2: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:22.830: E/dalvikvm(169): threadid=3: created from interp,name=FinalizerDaemon
    07-13 09:35:22.830: E/dalvikvm(169): threadid=3: calling run(),name=FinalizerDaemon
    07-13 09:35:22.830: E/dalvikvm(169): threadid=4: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:22.830: E/dalvikvm(169): threadid=4: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:22.830: E/dalvikvm(2568): native fork pid:0 done.
    07-13 09:35:22.830: E/dalvikvm(2568): threadid=5: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:22.830: E/dalvikvm(2975): threadid=13: exiting,name=IntentService[GamesIntentService]
    07-13 09:35:22.830: E/dalvikvm(2568): threadid=5: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:22.830: E/dalvikvm(2975): threadid=63: exiting,name=IntentService[PeopleBackgroundTasks]
    07-13 09:35:22.830: E/dalvikvm(2568): threadid=6: created from interp,name=FinalizerDaemon
    07-13 09:35:22.830: E/dalvikvm(2568): threadid=6: calling run(),name=FinalizerDaemon
    07-13 09:35:22.830: E/dalvikvm(2568): threadid=7: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:22.830: E/dalvikvm(2568): threadid=7: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:22.910: E/dalvikvm(2561): threadid=2: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:22.910: E/dalvikvm(2561): threadid=2: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:22.910: E/dalvikvm(2561): threadid=3: created from interp,name=FinalizerDaemon
    07-13 09:35:22.910: E/dalvikvm(2561): threadid=3: calling run(),name=FinalizerDaemon
    07-13 09:35:22.910: E/dalvikvm(2561): threadid=4: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:22.910: E/dalvikvm(2561): threadid=4: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:23.171: E/dalvikvm(2568): threadid=10: created from interp,name=IntentService[GooglePartnerSetup]
    07-13 09:35:23.171: E/dalvikvm(2568): threadid=10: calling run(),name=IntentService[GooglePartnerSetup]
    07-13 09:35:23.171: E/dalvikvm(169): threadid=2: exiting,name=ReferenceQueueDaemon
    07-13 09:35:23.171: E/dalvikvm(169): threadid=3: exiting,name=FinalizerDaemon
    07-13 09:35:23.171: E/dalvikvm(169): threadid=4: exiting,name=FinalizerWatchdogDaemon
    07-13 09:35:23.181: E/dalvikvm(169): native fork pid:2593 done.
    07-13 09:35:23.181: E/dalvikvm(169): threadid=2: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:23.191: E/dalvikvm(169): threadid=2: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:23.191: E/dalvikvm(169): threadid=3: created from interp,name=FinalizerDaemon
    07-13 09:35:23.191: E/dalvikvm(169): threadid=3: calling run(),name=FinalizerDaemon
    07-13 09:35:23.191: E/dalvikvm(169): threadid=4: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:23.191: E/dalvikvm(169): threadid=4: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:23.191: E/dalvikvm(2593): native fork pid:0 done.
    07-13 09:35:23.191: E/dalvikvm(2593): threadid=6: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:23.191: E/dalvikvm(2593): threadid=6: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:23.191: E/dalvikvm(2593): threadid=7: created from interp,name=FinalizerDaemon
    07-13 09:35:23.191: E/dalvikvm(2593): threadid=7: calling run(),name=FinalizerDaemon
    07-13 09:35:23.191: E/dalvikvm(2593): threadid=8: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:23.191: E/dalvikvm(2593): threadid=8: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:23.351: E/dalvikvm(2568): threadid=10: exiting,name=IntentService[GooglePartnerSetup]
    07-13 09:35:23.351: E/dalvikvm(2568): threadid=11: created from interp,name=IntentService[GooglePartnerSetup]
    07-13 09:35:23.351: E/dalvikvm(2568): threadid=11: calling run(),name=IntentService[GooglePartnerSetup]
    07-13 09:35:23.371: E/dalvikvm(2568): threadid=10: created from interp,name=SharedPreferencesImpl-load
    07-13 09:35:23.371: E/dalvikvm(2568): threadid=10: calling run(),name=SharedPreferencesImpl-load
    07-13 09:35:23.371: E/dalvikvm(513): threadid=100: created from interp,name=Thread-270
    07-13 09:35:23.371: E/dalvikvm(513): threadid=100: calling run(),name=Thread-270
    07-13 09:35:23.381: E/dalvikvm(2568): threadid=10: exiting,name=SharedPreferencesImpl-load
    07-13 09:35:23.431: E/dalvikvm(2568): threadid=11: exiting,name=IntentService[GooglePartnerSetup]
    07-13 09:35:23.451: E/dalvikvm(1759): threadid=10: created from interp,name=IntentService[EngineIntentService]
    07-13 09:35:23.451: E/dalvikvm(1759): threadid=10: calling run(),name=IntentService[EngineIntentService]
    07-13 09:35:23.451: E/dalvikvm(1759): threadid=10: exiting,name=IntentService[EngineIntentService]
    07-13 09:35:23.451: E/dalvikvm(169): threadid=2: exiting,name=ReferenceQueueDaemon
    07-13 09:35:23.461: E/dalvikvm(169): threadid=3: exiting,name=FinalizerDaemon
    07-13 09:35:23.461: E/dalvikvm(169): threadid=4: exiting,name=FinalizerWatchdogDaemon
    07-13 09:35:23.461: E/dalvikvm(169): native fork pid:2610 done.
    07-13 09:35:23.461: E/dalvikvm(169): threadid=2: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:23.461: E/dalvikvm(169): threadid=2: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:23.471: E/dalvikvm(169): threadid=3: created from interp,name=FinalizerDaemon
    07-13 09:35:23.471: E/dalvikvm(169): threadid=3: calling run(),name=FinalizerDaemon
    07-13 09:35:23.471: E/dalvikvm(169): threadid=4: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:23.471: E/dalvikvm(169): threadid=4: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:23.471: E/dalvikvm(2610): native fork pid:0 done.
    07-13 09:35:23.471: E/dalvikvm(2610): threadid=5: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:23.471: E/dalvikvm(2610): threadid=5: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:23.471: E/dalvikvm(2610): threadid=6: created from interp,name=FinalizerDaemon
    07-13 09:35:23.471: E/dalvikvm(2610): threadid=6: calling run(),name=FinalizerDaemon
    07-13 09:35:23.471: E/dalvikvm(2610): threadid=7: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:23.481: E/dalvikvm(2610): threadid=7: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:23.661: E/dalvikvm(513): threadid=102: created from interp,name=Error dump: data_app_crash
    07-13 09:35:23.661: E/dalvikvm(513): threadid=102: calling run(),name=Error dump: data_app_crash
    07-13 09:35:23.661: E/AndroidRuntime(2593): FATAL EXCEPTION: main
    07-13 09:35:23.661: E/AndroidRuntime(2593): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.himi.clock/com.himi.clock.MainActivity}: android.content.ActivityNotFoundException: Unable to find explicit activity class {com.himi.clock/com.himi.clock.AlarmActivity}; have you declared this activity in your AndroidManifest.xml?
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2092)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2117)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at android.app.ActivityThread.access$600(ActivityThread.java:140)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1213)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at android.os.Handler.dispatchMessage(Handler.java:99)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at android.os.Looper.loop(Looper.java:137)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at android.app.ActivityThread.main(ActivityThread.java:4914)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at java.lang.reflect.Method.invokeNative(Native Method)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at java.lang.reflect.Method.invoke(Method.java:511)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:808)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:575)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at dalvik.system.NativeStart.main(Native Method)
    07-13 09:35:23.661: E/AndroidRuntime(2593): Caused by: android.content.ActivityNotFoundException: Unable to find explicit activity class {com.himi.clock/com.himi.clock.AlarmActivity}; have you declared this activity in your AndroidManifest.xml?
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1541)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at android.app.ActivityThread.resolveActivityInfo(ActivityThread.java:1903)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at android.app.LocalActivityManager.startActivity(LocalActivityManager.java:285)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at android.widget.TabHost$IntentContentStrategy.getContentView(TabHost.java:694)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at android.widget.TabHost.setCurrentTab(TabHost.java:358)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at android.widget.TabHost.addTab(TabHost.java:236)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at com.himi.clock.MainActivity.addOneTab(MainActivity.java:32)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at com.himi.clock.MainActivity.onCreate(MainActivity.java:20)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at android.app.Activity.performCreate(Activity.java:5086)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1079)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at com.lbe.security.service.core.client.b.x.callActivityOnCreate(Unknown Source)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2056)
    07-13 09:35:23.661: E/AndroidRuntime(2593):     ... 11 more
    07-13 09:35:23.681: E/dalvikvm(513): threadid=102: exiting,name=Error dump: data_app_crash
    07-13 09:35:23.701: E/dalvikvm(2610): threadid=10: created from interp,name=IntentService[CompatibilityService]
    07-13 09:35:23.701: E/dalvikvm(2610): threadid=10: calling run(),name=IntentService[CompatibilityService]
    07-13 09:35:23.721: E/dalvikvm(2610): threadid=11: created from interp,name=SharedPreferencesImpl-load
    07-13 09:35:23.721: E/dalvikvm(2610): threadid=11: calling run(),name=SharedPreferencesImpl-load
    07-13 09:35:23.731: E/dalvikvm(2610): threadid=11: exiting,name=SharedPreferencesImpl-load
    07-13 09:35:23.741: E/dalvikvm(2610): threadid=10: exiting,name=IntentService[CompatibilityService]
    07-13 09:35:23.811: E/qcom_sensors_hal(513): hal_process_report_ind: Bad item quality: 11 
    07-13 09:35:24.012: E/qcom_sensors_hal(513): hal_process_report_ind: Bad item quality: 11 
    07-13 09:35:24.342: E/MarketConnection(24855): Connection Exception for app.market.xiaomi.com :java.net.UnknownHostException: Unable to resolve host "app.market.xiaomi.com": No address associated with hostname
    07-13 09:35:24.352: E/MarketConnection(24855): Connection failed : NETWORK_ERROR
    07-13 09:35:24.402: E/dalvikvm(24913): threadid=22: created from interp,name=IntentService[gamecenter]
    07-13 09:35:24.402: E/dalvikvm(24913): threadid=22: calling run(),name=IntentService[gamecenter]
    07-13 09:35:24.412: E/dalvikvm(24913): threadid=22: exiting,name=IntentService[gamecenter]
    07-13 09:35:24.432: E/MusicFXCompat(941): received
    07-13 09:35:24.432: E/dalvikvm(941): threadid=10: created from interp,name=IntentService[CompatibilityService]
    07-13 09:35:24.432: E/dalvikvm(941): threadid=10: calling run(),name=IntentService[CompatibilityService]
    07-13 09:35:24.442: E/MusicFXCompat(941): handleintent
    07-13 09:35:24.442: E/MusicFXCompat(941): intentservice saw: Intent { act=android.intent.action.PACKAGE_REPLACED dat=package:com.himi.clock flg=0x8000010 cmp=com.dolby/.Compatibility$Receiver (has extras) } Bundle[{android.intent.extra.REPLACING=true, android.intent.extra.UID=10095}]
    07-13 09:35:24.442: E/MusicFXCompat(941): found: 3
    07-13 09:35:24.442: E/MusicFXCompat(941): saved default: com.dolby.ds1appUI.MainActivity
    07-13 09:35:24.442: E/MusicFXCompat(941): considering ResolveInfo{424f2cf8 com.android.musicfx.Compatibility$Redirector p=2147483647 o=0 m=0x108000}
    07-13 09:35:24.442: E/MusicFXCompat(941): considering ResolveInfo{424f32b0 com.android.settings.Settings$DolbySettingsActivity p=2147483647 o=0 m=0x108000}
    07-13 09:35:24.442: E/MusicFXCompat(941): considering ResolveInfo{424f3860 com.android.musicfx.ActivityMusic p=0 o=0 m=0x108000}
    07-13 09:35:24.442: E/MusicFXCompat(941): disabling receiver ResolveInfo{424f4c30 com.android.musicfx.ControlPanelReceiver p=0 o=0 m=0x108000}
    07-13 09:35:24.452: E/MusicFXCompat(941): disabling receiver ResolveInfo{424f56c0 com.android.musicfx.ControlPanelReceiver p=0 o=0 m=0x108000}
    07-13 09:35:24.452: E/MusicFXCompat(941): wrote com.dolby.ds1appUI/com.dolby.ds1appUI.MainActivity as default
    07-13 09:35:24.452: E/dalvikvm(513): threadid=100: exiting,name=Thread-270
    07-13 09:35:24.452: E/dalvikvm(941): threadid=10: exiting,name=IntentService[CompatibilityService]
    07-13 09:35:24.462: E/dalvikvm(25054): threadid=14: created from interp,name=IntentService[GCoreUlr-ExtChangeSvc]
    07-13 09:35:24.462: E/dalvikvm(25054): threadid=14: calling run(),name=IntentService[GCoreUlr-ExtChangeSvc]
    07-13 09:35:24.472: E/dalvikvm(2975): threadid=13: created from interp,name=IntentService[PeopleBackgroundTasks]
    07-13 09:35:24.472: E/dalvikvm(2975): threadid=13: calling run(),name=IntentService[PeopleBackgroundTasks]
    07-13 09:35:24.482: E/dalvikvm(25054): threadid=17: created from interp,name=IntentService[GCoreUlr-SettingChngSvc]
    07-13 09:35:24.492: E/dalvikvm(25054): threadid=17: calling run(),name=IntentService[GCoreUlr-SettingChngSvc]
    07-13 09:35:24.502: E/dalvikvm(2975): threadid=13: exiting,name=IntentService[PeopleBackgroundTasks]
    07-13 09:35:24.512: E/dalvikvm(1759): threadid=10: created from interp,name=IntentService[EngineIntentService]
    07-13 09:35:24.512: E/dalvikvm(1759): threadid=10: calling run(),name=IntentService[EngineIntentService]
    07-13 09:35:24.522: E/dalvikvm(169): threadid=2: exiting,name=ReferenceQueueDaemon
    07-13 09:35:24.522: E/dalvikvm(169): threadid=3: exiting,name=FinalizerDaemon
    07-13 09:35:24.522: E/dalvikvm(169): threadid=4: exiting,name=FinalizerWatchdogDaemon
    07-13 09:35:24.522: E/dalvikvm(169): native fork pid:2637 done.
    07-13 09:35:24.532: E/dalvikvm(169): threadid=2: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:24.532: E/dalvikvm(169): threadid=2: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:24.532: E/dalvikvm(169): threadid=3: created from interp,name=FinalizerDaemon
    07-13 09:35:24.532: E/dalvikvm(169): threadid=3: calling run(),name=FinalizerDaemon
    07-13 09:35:24.532: E/dalvikvm(169): threadid=4: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:24.532: E/dalvikvm(2637): native fork pid:0 done.
    07-13 09:35:24.532: E/dalvikvm(2637): threadid=5: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:24.532: E/dalvikvm(2637): threadid=5: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:24.532: E/dalvikvm(1759): threadid=10: exiting,name=IntentService[EngineIntentService]
    07-13 09:35:24.532: E/dalvikvm(2637): threadid=6: created from interp,name=FinalizerDaemon
    07-13 09:35:24.532: E/dalvikvm(169): threadid=4: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:24.532: E/dalvikvm(2637): threadid=6: calling run(),name=FinalizerDaemon
    07-13 09:35:24.532: E/dalvikvm(2637): threadid=7: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:24.542: E/dalvikvm(2637): threadid=7: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:24.552: E/dalvikvm(25054): threadid=17: exiting,name=IntentService[GCoreUlr-SettingChngSvc]
    07-13 09:35:24.572: E/dalvikvm(25054): threadid=14: exiting,name=IntentService[GCoreUlr-ExtChangeSvc]
    07-13 09:35:24.712: E/dalvikvm(2637): threadid=10: created from interp,name=IntentService[CompatibilityService]
    07-13 09:35:24.712: E/dalvikvm(2637): threadid=10: calling run(),name=IntentService[CompatibilityService]
    07-13 09:35:24.732: E/dalvikvm(2637): threadid=11: created from interp,name=SharedPreferencesImpl-load
    07-13 09:35:24.732: E/dalvikvm(2637): threadid=11: calling run(),name=SharedPreferencesImpl-load
    07-13 09:35:24.742: E/dalvikvm(2637): threadid=11: exiting,name=SharedPreferencesImpl-load
    07-13 09:35:24.752: E/dalvikvm(2637): threadid=10: exiting,name=IntentService[CompatibilityService]
    07-13 09:35:24.762: E/dalvikvm(24913): threadid=22: created from interp,name=IntentService[gamecenter]
    07-13 09:35:24.762: E/dalvikvm(24913): threadid=22: calling run(),name=IntentService[gamecenter]
    07-13 09:35:24.782: E/dalvikvm(27136): threadid=18: created from interp,name=GlobalPool-H
    07-13 09:35:24.782: E/dalvikvm(27136): threadid=18: calling run(),name=GlobalPool-H
    07-13 09:35:24.782: E/dalvikvm(169): threadid=2: exiting,name=ReferenceQueueDaemon
    07-13 09:35:24.782: E/dalvikvm(169): threadid=3: exiting,name=FinalizerDaemon
    07-13 09:35:24.782: E/dalvikvm(169): threadid=4: exiting,name=FinalizerWatchdogDaemon
    07-13 09:35:24.792: E/dalvikvm(169): native fork pid:2657 done.
    07-13 09:35:24.792: E/dalvikvm(169): threadid=2: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:24.802: E/dalvikvm(169): threadid=2: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:24.802: E/dalvikvm(169): threadid=3: created from interp,name=FinalizerDaemon
    07-13 09:35:24.802: E/dalvikvm(169): threadid=3: calling run(),name=FinalizerDaemon
    07-13 09:35:24.802: E/dalvikvm(169): threadid=4: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:24.802: E/dalvikvm(169): threadid=4: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:24.802: E/dalvikvm(2657): native fork pid:0 done.
    07-13 09:35:24.802: E/dalvikvm(2657): threadid=5: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:24.802: E/dalvikvm(2657): threadid=5: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:24.802: E/dalvikvm(2657): threadid=6: created from interp,name=FinalizerDaemon
    07-13 09:35:24.802: E/dalvikvm(2657): threadid=6: calling run(),name=FinalizerDaemon
    07-13 09:35:24.802: E/dalvikvm(2657): threadid=7: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:24.802: E/dalvikvm(2657): threadid=7: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:24.882: E/dalvikvm(24913): threadid=23: created from interp,name=Thread-354
    07-13 09:35:24.892: E/dalvikvm(24913): threadid=22: exiting,name=IntentService[gamecenter]
    07-13 09:35:24.892: E/dalvikvm(24913): threadid=23: calling run(),name=Thread-354
    07-13 09:35:24.892: E/dalvikvm(24913): threadid=22: created from interp,name=RefQueueWorker@org.apache.http.impl.conn.tsccm.ConnPoolByRoute@42388af0
    07-13 09:35:24.892: E/dalvikvm(24913): threadid=22: calling run(),name=RefQueueWorker@org.apache.http.impl.conn.tsccm.ConnPoolByRoute@42388af0
    07-13 09:35:24.903: E/dalvikvm(24913): threadid=22: exiting,name=RefQueueWorker@org.apache.http.impl.conn.tsccm.ConnPoolByRoute@42388af0
    07-13 09:35:24.903: E/dalvikvm(24913): threadid=23: exiting,name=Thread-354
    07-13 09:35:24.993: E/dalvikvm(2657): threadid=10: created from interp,name=RefQueueWorker@org.apache.http.impl.conn.tsccm.ConnPoolByRoute@422a5a80
    07-13 09:35:24.993: E/dalvikvm(2657): threadid=10: calling run(),name=RefQueueWorker@org.apache.http.impl.conn.tsccm.ConnPoolByRoute@422a5a80
    07-13 09:35:25.203: E/dalvikvm(169): threadid=2: exiting,name=ReferenceQueueDaemon
    07-13 09:35:25.203: E/dalvikvm(169): threadid=3: exiting,name=FinalizerDaemon
    07-13 09:35:25.203: E/dalvikvm(169): threadid=4: exiting,name=FinalizerWatchdogDaemon
    07-13 09:35:25.213: E/dalvikvm(169): native fork pid:2673 done.
    07-13 09:35:25.213: E/dalvikvm(169): threadid=2: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:25.213: E/dalvikvm(169): threadid=2: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:25.213: E/dalvikvm(169): threadid=3: created from interp,name=FinalizerDaemon
    07-13 09:35:25.213: E/dalvikvm(169): threadid=4: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:25.213: E/dalvikvm(169): threadid=3: calling run(),name=FinalizerDaemon
    07-13 09:35:25.213: E/dalvikvm(169): threadid=4: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:25.213: E/dalvikvm(2673): native fork pid:0 done.
    07-13 09:35:25.223: E/dalvikvm(2673): threadid=6: created from interp,name=ReferenceQueueDaemon
    07-13 09:35:25.223: E/dalvikvm(2673): threadid=6: calling run(),name=ReferenceQueueDaemon
    07-13 09:35:25.223: E/dalvikvm(2673): threadid=7: created from interp,name=FinalizerDaemon
    07-13 09:35:25.223: E/dalvikvm(2673): threadid=7: calling run(),name=FinalizerDaemon
    07-13 09:35:25.223: E/dalvikvm(2673): threadid=8: created from interp,name=FinalizerWatchdogDaemon
    07-13 09:35:25.223: E/dalvikvm(2673): threadid=8: calling run(),name=FinalizerWatchdogDaemon
    07-13 09:35:25.483: E/dalvikvm(513): threadid=100: created from interp,name=Error dump: data_app_crash
    07-13 09:35:25.483: E/dalvikvm(513): threadid=100: calling run(),name=Error dump: data_app_crash
    07-13 09:35:25.483: E/AndroidRuntime(2673): FATAL EXCEPTION: main
    07-13 09:35:25.483: E/AndroidRuntime(2673): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.himi.clock/com.himi.clock.MainActivity}: android.content.ActivityNotFoundException: Unable to find explicit activity class {com.himi.clock/com.himi.clock.AlarmActivity}; have you declared this activity in your AndroidManifest.xml?
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2092)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2117)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at android.app.ActivityThread.access$600(ActivityThread.java:140)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1213)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at android.os.Handler.dispatchMessage(Handler.java:99)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at android.os.Looper.loop(Looper.java:137)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at android.app.ActivityThread.main(ActivityThread.java:4914)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at java.lang.reflect.Method.invokeNative(Native Method)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at java.lang.reflect.Method.invoke(Method.java:511)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:808)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:575)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at dalvik.system.NativeStart.main(Native Method)
    07-13 09:35:25.483: E/AndroidRuntime(2673): Caused by: android.content.ActivityNotFoundException: Unable to find explicit activity class {com.himi.clock/com.himi.clock.AlarmActivity}; have you declared this activity in your AndroidManifest.xml?
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1541)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at android.app.ActivityThread.resolveActivityInfo(ActivityThread.java:1903)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at android.app.LocalActivityManager.startActivity(LocalActivityManager.java:285)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at android.widget.TabHost$IntentContentStrategy.getContentView(TabHost.java:694)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at android.widget.TabHost.setCurrentTab(TabHost.java:358)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at android.widget.TabHost.addTab(TabHost.java:236)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at com.himi.clock.MainActivity.addOneTab(MainActivity.java:32)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at com.himi.clock.MainActivity.onCreate(MainActivity.java:20)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at android.app.Activity.performCreate(Activity.java:5086)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1079)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at com.lbe.security.service.core.client.b.x.callActivityOnCreate(Unknown Source)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2056)
    07-13 09:35:25.483: E/AndroidRuntime(2673):     ... 11 more
    07-13 09:35:25.503: E/dalvikvm(513): threadid=100: exiting,name=Error dump: data_app_crash
    07-13 09:35:25.613: E/qcom_sensors_hal(513): hal_process_report_ind: Bad item quality: 11 
    07-13 09:35:28.636: E/dalvikvm(2527): threadid=10: exiting,name=Thread-241
    07-13 09:35:29.778: E/dalvikvm(27136): threadid=18: exiting,name=GlobalPool-H
    07-13 09:35:42.091: E/dalvikvm(760): threadid=15: created from interp,name=Thread-29
    07-13 09:35:42.091: E/dalvikvm(760): threadid=15: calling run(),name=Thread-29
    07-13 09:35:42.301: E/dalvikvm(760): threadid=15: exiting,name=Thread-29

    不要被这些数据量吓到了,只看红色字体部分,原来是因为AlarmActivity没有在AndroidManifest.xml中注册信息

  • 相关阅读:
    微服务架构下分布式事务解决方案——阿里GTS
    兼容IE8以下,获取className节点的元素(document.getElementsByClassName()兼容写法)。
    解决移动端ios下overflow-x scroll无法隐藏滚动条的问题
    skeleton在心意web上的实践
    小程序开发笔记(八)—Js数组按日期分组显示数据
    小程序开发笔记(七)—加入内容安全检测
    使用react+redux+react-redux+react-router+axios+scss技术栈从0到1开发一个applist应用
    vuex无法获取getters属性this.$store.getters.getCurChildId undefined
    函数防抖节流的理解及在Vue中的应用
    Javascript Object常用方法总结
  • 原文地址:https://www.cnblogs.com/hebao0514/p/4642342.html
Copyright © 2011-2022 走看看