返回而不加载之前加载的图像.. Android

发布于 2024-12-11 11:02:06 字数 330 浏览 0 评论 0原文

我的应用程序在第一个活动中加载一些图像,然后用户可以单击一个图像,然后新活动打开...问题是:

如何返回到我的第一个活动而不再次加载所有图像?

###################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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒浓于脸红 2024-12-18 11:02:06

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文