无法在模拟器上加载应用

时间:2014-03-27 18:24:53

标签: android xml eclipse android-emulator

我花了最近4天的时间环顾StackOverflow,试图找到我的问题的解决方案,但是对于所有这些都是非常新的我无法把手指放在答案上,我的时间用完了我以为我会发布看看是否有人可以帮助我。

当我在模拟器中运行我的应用程序时,我在控制台中收到此错误消息:

[2014-03-27 18:06:47 - 仿真器] NAND:nand_dev_load_disk_state ftruncate失败:参数无效 [2014-03-27 18:06:47 - 仿真器] savevm:无法加载段nand_dev

尽管出现此错误,但它会将模拟器加载到主屏幕,但点击我的应用程序却无法加载任何内容。

这是我的Manifest.xml

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

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="19" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/logo"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.liverpoolpolls.Loadhomemenu"
            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="com.example.liverpoolpolls.Navigatefromhomepage"
            android:label="@string/title_activity_navigatefromhomepage" >
        </activity>
        <activity
            android:name="com.example.liverpoolpolls.Loadingblogs"
            android:label="@string/title_activity_loadingblogs" >
        </activity>
        <activity
            android:name="com.example.liverpoolpolls.Loadingstatistics"
            android:label="@string/title_activity_loadingstatistics" >
        </activity>
        <activity
            android:name="com.example.liverpoolpolls.Loadingpolls"
            android:label="@string/title_activity_loadingpolls" >
        </activity>
        <activity
            android:name="com.example.liverpoolpolls.Loadingcontactus"
            android:label="@string/title_activity_loadingcontactus" >
        </activity>
    </application>

</manifest>

如果有人有任何想法,我会非常感激他们的建议,如果还有什么你想让我告诉你我应该拥有的,那么我会。就像我说的那样,我对此非常陌生,所以如果它是一个简单的问题我会道歉。

0 个答案:

没有答案