当我在模拟器中运行它时,为什么我的android应用程序停止了?

时间:2015-06-09 07:37:02

标签: android eclipse sdk emulation manifest

  

不幸的是, app 已停止。

当我在模拟器中运行我的应用程序时出现此错误。为什么? 我的程序不包含任何错误,但它没有运行。

我将Eclipse与SDK结合使用。

这是我的清单文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.jvstgs"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="3"
        android:targetSdkVersion="21" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".Tetris"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

我的LogCat

  

06-09 07:30:20.989:D / AndroidRuntime(627):关闭VM
  06-09 07:30:20.989:W / dalvikvm(627):threadid = 1:线程退出未捕获异常(组= 0x40a122a0)
  06-09 07:30:21.049:E / AndroidRuntime(627):致命异常:主要
  06-09 07:30:21.049:E / AndroidRuntime(627):java.lang.RuntimeException:无法恢复活动{com.example.jvstgs / com.example.jvstgs.Tetris}:java.lang.SecurityException:两个用户都没有10044当前进程还有android.permission.WAKE_LOCK
  06-09 07:30:21.049:E / AndroidRuntime(627):在android.app.ActivityThread.performResumeActivity(ActivityThread.java:2575)
  06-09 07:30:21.049:E / AndroidRuntime(627):在android.app.ActivityThread.handleResumeActivity(ActivityThread.java:2603)
  06-09 07:30:21.049:E / AndroidRuntime(627):在android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2089)
  06-09 07:30:21.049:E / AndroidRuntime(627):在android.app.ActivityThread.access $ 600(ActivityThread.java:130)
  06-09 07:30:21.049:E / AndroidRuntime(627):在android.app.ActivityThread $ H.handleMessage(ActivityThread.java:1195)
  06-09 07:30:21.049:E / AndroidRuntime(627):在android.os.Handler.dispatchMessage(Handler.java:99)
  06-09 07:30:21.049:E / AndroidRuntime(627):在android.os.Looper.loop(Looper.java:137)
  06-09 07:30:21.049:E / AndroidRuntime(627):在android.app.ActivityThread.main(ActivityThread.java:4745)
  06-09 07:30:21.049:E / AndroidRuntime(627):at java.lang.reflect.Method.invokeNative(Native Method)
  06-09 07:30:21.049:E / AndroidRuntime(627):at java.lang.reflect.Method.invoke(Method.java:511)
  06-09 07:30:21.049:E / AndroidRuntime(627):at com.android.internal.os.ZygoteInit $ MethodAndArgsCaller.run(ZygoteInit.java:786)
  06-09 07:30:21.049:E / AndroidRuntime(627):at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
  06-09 07:30:21.049:E / AndroidRuntime(627):at dalvik.system.NativeStart.main(Native Method)
  06-09 07:30:21.049:E / AndroidRuntime(627):引起:java.lang.SecurityException:用户10044和当前进程都没有android.permission.WAKE_LOCK。
  06-09 07:30:21.049:E / AndroidRuntime(627):在android.os.Parcel.readException(Parcel.java:1425)
  06-09 07:30:21.049:E / AndroidRuntime(627):在android.os.Parcel.readException(Parcel.java:1379)
  06-09 07:30:21.049:E / AndroidRuntime(627):在android.os.IPowerManager $ Stub $ Proxy.acquireWakeLock(IPowerManager.java:288)
  06-09 07:30:21.049:E / AndroidRuntime(627):在android.os.PowerManager $ WakeLock.acquireLocked(PowerManager.java:309)
  06-09 07:30:21.049:E / AndroidRuntime(627):在android.os.PowerManager $ WakeLock.acquire(PowerManager.java:288)
  06-09 07:30:21.049:E / AndroidRuntime(627):at com.example.framework.impl.GLGame.onResume(GLGame.java:66)
  06-09 07:30:21.049:E / AndroidRuntime(627):在android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1184)
  06-09 07:30:21.049:E / AndroidRuntime(627):在android.app.Activity.performResume(Activity.java:5082)
  06-09 07:30:21.049:E / AndroidRuntime(627):在android.app.ActivityThread.performResumeActivity(ActivityThread.java:2565)
  06-09 07:30:21.049:E / AndroidRuntime(627):... 12更多

3 个答案:

答案 0 :(得分:1)

如果你阅读了你的日志,你会看到:

java.lang.SecurityException: Neither user 10044 nor current process has android.permission.WAKE_LOCK

这意味着您需要将android.permission.WAKE_LOCK添加到您的AndroidManifest.xml

请阅读:https://developer.android.com/training/scheduling/wakelock.html

  

要使用唤醒锁定,第一步是添加WAKE_LOCK权限   到您的应用程序的清单文件:

     

答案 1 :(得分:0)

尝试将WAKE_LOCK_PERMISSION添加到您的清单uses-permission

此处有更多信息:http://developer.android.com/reference/android/Manifest.permission.html#WAKE_LOCK

答案 2 :(得分:0)

看起来问题在于您的权限:

  

java.lang.SecurityException:既不是用户10044也不是当前进程   有android.permission.WAKE_LOCK

更新您的清单以包含以下内容:

<uses-permission android:name="android.permission.WAKE_LOCK" />

您的堆栈跟踪

顺便说一句,每个人都能很快找到问题的原因是因为你的logcat清楚地显示了你的错误。

阅读this post以了解有关如何读取堆栈跟踪的更多信息。