3

このオブジェクトがあり、アプリを閉じた後に保存し、アプリを再度実行したときに取得したいと思います。

final LatLng CENTRAL_VIEW = new LatLng(24.205835,-20.753174);


        CameraPosition cameraPosition = new CameraPosition.Builder()
        .target(CENTRAL_VIEW)      // Sets the center of the map to Central View
        .zoom(6)                   // Sets the zoom
        .build();                   // Creates a CameraPosition from the builder
        googlemap.animateCamera(CameraUpdateFactory.newCameraPosition(cameraPosition));

そのための簡単な例はありますか?ありがとう!

4

3 に答える 3

0

Paresh が言ったように、オブジェクトを保存することはできませんSharedPreferenceが、外部ライブラリを使用して設定を変更し、私が行ったようにオブジェクトを保存することができます。カスタム共有設定

使ってみてください。

于 2013-01-31T11:50:00.953 に答える
-1

オブジェクトを共有設定に保存し、アプリを再起動した後に取得します....簡単です..

于 2013-01-31T11:43:32.357 に答える
-1

これを参照してください、それはあなたを助けるかもしれません:

http://androidcodemonkey.blogspot.in/2011/07/store-and-get-object-in-android-shared.html

http://www.thetekblog.com/2012/09/android-store-objects-in-sharedperferences/

http://www.mediafire.com/?a9x1ebyw1bf8t62

于 2013-01-31T11:49:26.180 に答える