Google マップを使用するアプリがあります。latLngBounds を変数に保存してから、バンドルして後で取得しています。私の問題は、画面の現在の位置を保存してから、カメラをその LatLng に移動したいということです。しかし、マーカーをクリックして別のアクティビティを起動して戻るたびに、画面はクリックされたマーカーの中央に配置されましたが、この機能を取り除き、画面を以前の位置に戻したいと思います。
編集:問題は、アプリがバンドルからデータを回復していないことであり、その理由がわかりません。状態を保存および復元するための私の方法は次のとおりですが、どちらも機能しません。
@Override
protected void onCreate(Bundle bundle) {
super.onCreate(bundle);
//requestWindowFeature(Window.FEATURE_ACTION_BAR);
setContentView(R.layout.activity_main);
if (bundle!= null){
lat = bundle.getDouble("lat1",0);
lon = bundle.getDouble("lon1",0);
ne3 = bundle.getDouble("lat2",-200);
ne4 = bundle.getDouble("lon2",-200);
Log.d("tag","bundle is not null");
}
setUpMapIfNeeded();
}
@Override
public void onPause() {
super.onPause();
manager.removeUpdates(this);
}
@Override
protected void onResume() {
super.onResume();
if (bundle!= null){
lat = bundle.getDouble("lat1",0);
lon = bundle.getDouble("lon1",0);
ne3 = bundle.getDouble("lat2",-200);
ne4 = bundle.getDouble("lon2",-200);
Log.d("tag","bundle is not null");
}
setUpMapIfNeeded();
}
@Override
protected void onSaveInstanceState(Bundle bundle) {
Log.e("tag","calling onSave");
if(mMap!=null){
LatLngBounds location3 = mMap.getProjection().getVisibleRegion().latLngBounds;
double lat4 = location3.getCenter().latitude;
double lon4 = location3.getCenter().longitude;
double lat5 = location3.northeast.latitude;
double lon5 = location3.northeast.longitude;
bundle.putDouble("lat1", lat4);
bundle.putDouble("lon1",lon4);
bundle.putDouble("lat2",lat5);
bundle.putDouble("lon2",lon5);
}
super.onSaveInstanceState(bundle);
}
@Override
public void onRestoreInstanceState(Bundle bundle) {
super.onRestoreInstanceState(bundle);
if (bundle!= null){
lat = bundle.getDouble("lat1",0);
lon = bundle.getDouble("lon1",0);
ne3 = bundle.getDouble("lat2",-200);
ne4 = bundle.getDouble("lon2",-200);
Log.d("tag","bundle is not null");
}
setUpMapIfNeeded();
// ... recover more data
}
問題は、別のアクティビティから戻るときにバンドルが何らかの形で null であるようです