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

时间:2010-09-08 01:02:33

标签: java android orientation

有没有办法可以在我的应用程序被销毁之前保存当前快照(当它被轮换时):

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

public Object onRetainNonConfigurationInstance() {}

但是有一些更简单的东西,因为我有很多需要保存的数据。

2 个答案:

答案 0 :(得分:1)

Android网站上有good article about this

答案 1 :(得分:-1)

为什么不使用 buildDrawingCache(); Bitma b = getDrawingCache();

然后您可以使用Canvas绘制位图并旋转它。

最后,destroyDrawingCache()。

就是这样。