清单文件是
android:icon="@drawable/app_logo"
android:label="@string/app_name" android:debuggable="false">
<activity
android:name=".SplashActivity"
android:label="@string/title_activity_main"
android:launchMode="standard"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
启动画面代码是
public class SplashActivity extends MusicActivity {
private final int SPLASH_DISPLAY_LENGTH = 7000;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.splash);
new Handler().postDelayed(new Runnable(){
@Override
public void run() {
/* Create an Intent that will start the Menu-Activity. */
Intent mainIntent = new Intent(SplashActivity.this,MenuActivity.class);
startActivity(mainIntent);
}
}, SPLASH_DISPLAY_LENGTH);
}
当您使用“home”键离开应用程序时,我会从正在运行的活动中触发它(它是一个音频播放器,这是您可以退出的主要活动)
@Override
protected void onPause() {
super.onPause();
if (mp != null){
mp.pause();
if (isFinishing()){
mp.pause();
}
}
}
当我重新进入应用程序只是几分钟,一切都很完美,音频恢复到原来的位置等等 - 但是 - 如果我离开设备大约一个小时左右,然后返回并从启动器,它冻结在“启动画面”上,没有错误消息,没有强制关闭,它只是坐在那里。
我应该检查什么?谢谢