android – 不要在旋转时重新加载webview视频

前端之家收集整理的这篇文章主要介绍了android – 不要在旋转时重新加载webview视频前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个显示嵌入式视频的webview.当设备旋转时,我可以阻止整个页面重新加载:
  1. @Override
  2. protected void onSaveInstanceState(Bundle outState) {
  3. super.onSaveInstanceState(outState);
  4.  
  5. webView.saveState(outState);
  6. }
  7.  
  8. @Override
  9. protected void onRestoreInstanceState(Bundle savedInstanceState) {
  10. super.onRestoreInstanceState(savedInstanceState);
  11.  
  12. webView.restoreState(savedInstanceState);
  13. }

但是,由于我在此网页浏览中播放视频,因此该视频无法继续播放.相反,它会加载视频,就好像它还没有开始播放一样.如何旋转屏幕但继续播放视频,就像什么都没发生一样?

谢谢

解决方法

在manifest.xml中添加
  1. upto API level 12
  2.  
  3. <activity
  4. android:label="@string/app_name"
  5. android:name="Activity"
  6. android:configChanges="keyboardHidden|orientation">
  7. </activity>
  8.  
  9. after apl level 12,<activity
  10. android:label="@string/app_name"
  11. android:name="Activity"
  12. android:configChanges="keyboardHidden|orientation|screenSize">
  13. </activity>

猜你在找的Android相关文章