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.
我有Webview哪个可以全屏播放视频。改变方向时我需要有连续播放的能力。最重要的是——我需要这种能力android:configChanges="orientation|keyboard|screenSize"
Webview
android:configChanges="orientation|keyboard|screenSize"
当您更改方向时,活动将被终止,并在新方向上创建新活动。所以你必须保存你的播放器组件的实例状态,并用新的方向恢复它们。使用:
public void onSaveInstanceState(Bundle savedInstanceState) public void onRestoreInstanceState(Bundle savedInstanceState)