我有這個對象,我想在關閉應用程序後保存它,並在應用程序再次運行時檢索它。關閉應用程序後保存對象,並在應用程序再次運行時檢索它
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));
任何簡單的例子呢?謝謝!
在關閉應用程序時創建文件和存儲數據,並在應用程序再次運行時檢索它。 – duggu
@Vis你爲什麼要存儲對象? –