如何在方向更改时保留文本数据

我希望在方向更改中保留webview中的文本数据(即加载的URL中的表单文本框中输入的数据)。 我使用onSaveInstanceState() * restoreState(savedInstanceState)它恢复以前的状态,但不是值。

我使用了Fragments的webview ,但仍然没有保留数据的运气。 同样,当使用片段时,应用程序在方向更改时会崩溃。

我无法使用android:configChanges =“keyboardHidden | orientation”,因为我在方向更改时需要使用键盘。

任何人都可以提供解决方案吗? 提前致谢。


不能使用android:configChanges="orientation|screenSize"而不使用keyboardHidden

编辑 :您可能还希望在定位API 13或更高screenSize时使用screenSize

链接地址: http://www.djcxy.com/p/46441.html

上一篇: How to retain text data when orientation changes

下一篇: Life cycle predicament with orientation change in another activity