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"
向きを変更すると、アクティビティが強制終了され、新しい向きで新しいアクティビティが作成されます。そのため、プレーヤー コンポーネントの InstanceState を保存し、それらを新しい orientation.Use で復元する必要があります。
public void onSaveInstanceState(Bundle savedInstanceState) public void onRestoreInstanceState(Bundle savedInstanceState)