应用程序没有打开没有崩溃没有出现堆栈跟踪ANDROID

时间:2013-05-27 02:29:10

标签: android

嘿我的应用程序在我的SPX-5(中国手机)上运行得很好但是当我想在Galaxy Tab 7.0上运行它时,该应用程序“想要”打开,视图没有出现,我只看到名称和我的应用程序在标题栏中的图标(下面的空格是白色),它关闭。没有“强制关闭”错误或类似的情况,应用程序窗口神奇地消失了,就像我以编程方式关闭它一样。

控制台只能说

05-27 04:21:29.869: E/Trace(5754): error opening trace file: No such file or directory (2)
05-27 04:21:30.018: D/libEGL(5754): loaded /vendor/lib/egl/libEGL_POWERVR_SGX540_120.so
05-27 04:21:30.034: D/libEGL(5754): loaded /vendor/lib/egl/libGLESv1_CM_POWERVR_SGX540_120.so
05-27 04:21:30.034: D/libEGL(5754): loaded /vendor/lib/egl/libGLESv2_POWERVR_SGX540_120.so
05-27 04:21:30.135: D/OpenGLRenderer(5754): Enabling debug mode 0
05-27 04:21:30.143: I/AndroidRuntime(5754): VM exiting with result code 0, cleanup skipped.

错误不能出现在我的代码中,我在我的oncreate方法的每个语句下都创建了System.out.println,并且每个都出现了,所以代码本身运行良好。

我无法提供更多信息,因为即使我已经没有了。

清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="*"
    android:versionCode="1"
    android:versionName="1.0"
     >
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

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

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="*.Awesome"
            android:label="@string/title_activity_awesome" >
        </activity>
    </application>
    <application android:name="*" >
    </application>

</manifest>

0 个答案:

没有答案