0

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?

4

1 に答える 1

0

Bundleクラスを使用して、あるデータからActivity別のデータに渡します。一方、Activity現在のアクティビティから渡されたデータを取得するには。このリンクBundleでクラスの使用方法の簡単な例を見ることができます。

あなたの質問では、Android Run-time Changesを見る必要があります。

向きの変更後に前のビューにあるデータを変更しようとしていない場合、次のコードのようにマニフェストファイルを使用して向きを処理するのが簡単な方法です。

<activity
    android:name=".WebViewActivity"
    android:configChanges="keyboardHidden|orientation|screenLayout|screenSize" >
</activity>
于 2012-07-23T05:03:21.493 に答える