如何在旋转之前保存应用程序的当前快照?

发布于 2024-09-18 21:27:10 字数 183 浏览 4 评论 0原文

有没有一种方法可以在应用程序被破坏之前(当它旋转时)保存应用程序的当前快照:

我知道我可以将所有数据保存在

public Object onRetainNonConfigurationInstance() {}

但是有没有更简单的方法,因为我有很多数据需要获取已保存。

Is there a way I can save the current snapshot of my app before it gets destroyed (when it gets rotated):

I know I can save all my data in

public Object onRetainNonConfigurationInstance() {}

But is there something simpler because I have a lot of data that would need to get saved.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

情域 2024-09-25 21:27:10

为什么不使用
构建绘图缓存();
Bitma b=getDrawingCache();

然后你可以使用Canvas来绘制Bitmap并旋转它。

最后,destroyDrawingCache()。

就是这样。

Why not use
buildDrawingCache();
Bitma b=getDrawingCache();

Then you can use Canvas to draw the Bitmap and rotate it.

At last, destroyDrawingCache().

that's it.

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