在一个Android教程中,我看到了这个功能的用法.在那里,他使用它来恢复我认为的应用程序的上一个会话,但问题是我不能在我的类中使用这个函数,并且这两个类(我和他的)从ListActivity扩展.
@Override
protected void onFreeze(Bundle outState) {
super.onFreeze(outState);
outState.putLong("Feed_id", Feed.FeedId);
outState.putString("title", Feed.title);
outState.putString("url", Feed.url.toString());
}
此外,在此之前我遇到了一些函数调用的问题,比如操作ArrayLists,他调用list.next()&我没有这样的功能所以我使用了list.MovetoNext().
可能是因为Android的不同版本(我使用1.6)以及用什么作为此功能的替代品?
解决方法:
我认为这个教程非常非常老.实际上,onFreeze()方法不再使用了.从the (August 2008) Android 0.9 SDK Beta release notes开始:
onFreeze(Bundle) renamed to onSaveInstanceState(Bundle), to better reflect the fact that it does not represent an actual change in application lifecycle