有没有办法可以在我的应用程序被销毁之前保存当前快照(当它被轮换时):
我知道我可以将所有数据保存在
中public Object onRetainNonConfigurationInstance() {}
但是有一些更简单的东西,因为我有很多需要保存的数据。
答案 0 :(得分:1)
Android网站上有good article about this
答案 1 :(得分:-1)
为什么不使用 buildDrawingCache(); Bitma b = getDrawingCache();
然后您可以使用Canvas绘制位图并旋转它。
最后,destroyDrawingCache()。
就是这样。