如何在旋转之前保存应用程序的当前快照?
有没有一种方法可以在应用程序被破坏之前(当它旋转时)保存应用程序的当前快照:
我知道我可以将所有数据保存在
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用
构建绘图缓存();
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.