Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户滑动硬键盘时,我的活动将重新创建,活动中的网络视图也将重新加载页面。由于我们应用程序框架的限制,我无法更改 android manifest 中的 onConfigChange。我想找到一种方法,让活动重新创建,同时保持 webview 和以前一样(不要重新加载页面)。
onDestroy()将能够保存您的应用程序被销毁时的 Parcelable 数据,并且onResume()应该能够重建它。如果通过某种魔法您能够保存整个页面状态并重新加载它,那么这就是您采用的路线。否则,您应该考虑限制较少的框架。
onDestroy()
onResume()