I want to keep a MapView and its markers after orientation changes. I have looked through the Android Bundle Reference and still haven't found anything.
Am I reading the reference material wrong? How would a bundle work for a custom class?
I want to keep a MapView and its markers after orientation changes. I have looked through the Android Bundle Reference and still haven't found anything.
Am I reading the reference material wrong? How would a bundle work for a custom class?
Bundle
クラスを使用して、あるデータからActivity
別のデータに渡します。一方、Activity
現在のアクティビティから渡されたデータを取得するには。このリンクBundle
でクラスの使用方法の簡単な例を見ることができます。
あなたの質問では、Android Run-time Changesを見る必要があります。
向きの変更後に前のビューにあるデータを変更しようとしていない場合、次のコードのようにマニフェストファイルを使用して向きを処理するのが簡単な方法です。
<activity
android:name=".WebViewActivity"
android:configChanges="keyboardHidden|orientation|screenLayout|screenSize" >
</activity>