返回而不加载之前加载的图像.. Android
我的应用程序在第一个活动中加载一些图像,然后用户可以单击一个图像,然后新活动打开...问题是:
如何返回到我的第一个活动而不再次加载所有图像?
###################EDIT我发现了我的问题..
在我的第一个活动中,
@Override
protected void onStop() {
super.onStop();
this.finish();
}
当我的活动不可见时,它就完成了,这就是为什么当您单击第二个活动中的后退按钮时我的应用程序关闭。
I have my app that loads some images in the first activity, then the user can click one and and new activity is open... the question is:
how can i go back to my first activy without load again all the images?
###################EDIT
i found my problem..
in my first activity i had
@Override
protected void onStop() {
super.onStop();
this.finish();
}
when my activity was not visible, then it was finished, thats why my app closed when y click the back button in the second activity.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要实现 onSavedInstanceState()< /a> 第一个活动中的方法。在该方法中,将要使用的图像保存到给定的包中。但要小心,如果你保存太多,你的应用程序在活动之间切换时会非常慢。
You need to implement an onSavedInstanceState() method in your first activity. In the method, save the images you want to use to the given bundle. Careful though, if you save too much your application is going to be really slow when switching between activities.