您的位置:首页 > 移动开发 > Android开发

android单例模式

2015-08-27 14:49 423 查看
由activity的生命周期可知



只有把原来onCreate()中的方法写在onResume()中才能实现循环。

在清单文件中添加:

android:launchMode="singleInstance"


单例模式会导致一个问题,即无法二次接受intent,所以需要重载intent:

protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
setIntent(intent);
//here we can use getIntent() to get the extra data.
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: