在模拟器中运行应用程序时被卡住开机画面上(App gets stuck on splash scre

2019-10-22 14:17发布

当在模拟器中运行的启动画面卡住,从来没有开始下一个活动。 我删除从清单文件中的飞溅活动并提出下一个活动作为我的启动。 然而,当我运行应用程序,我得到了闪屏。 我所做的一切,就像重新启动Eclipse中,取得了新的AVD,但我不从那里越来越闪屏知道。 我不知道为什么会这样。

在设备上运行时,该工作正常,在模拟器中运行时才会出现问题。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.kaizen"
android:versionCode="1"
android:versionName="1.0" >

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

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.kaizen.Login"
        android:configChanges="keyboardHidden"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.NoTitleBar" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

Answer 1:

你必须卸载所有JRE 7,并安装最新的JRE 6( http://www.oracle.com/technetwork/java/javase/downloads/jre6downloads-1902815.html )。 它会立即解决了这个问题。

见这对于安装帮助



Answer 2:

从模拟器卸载应用程序,然后重新运行你的应用程序。 希望它会帮助你。



文章来源: App gets stuck on splash screen when running in the emulator