Android Studio Google Maps当我打开我的应用程序时,如何将相机重定向到我当前的位置

Tae*_*Kim 0 android google-maps

当我打开我的应用程序并且它也没有添加标记时,Camera Animation无法正常工作

 public class MapsActivity extends FragmentActivity {

private GoogleMap mMap; // Might be null if Google Play services APK is not available.



@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_maps);

}


@Override
protected void onResume() {
    super.onResume();
    setUpMapIfNeeded();
}
Run Code Online (Sandbox Code Playgroud)

在这里它不会将我的相机指向我当前的位置.当我打开我的应用程序时,它从地图的中心开始而不是我的位置

private void setUpMapIfNeeded() {
    // Do a null check to confirm that we have not already instantiated the map.
    if (mMap == null) {
        // Try to obtain the map from the SupportMapFragment.
        mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map))
                .getMap();
        mMap.setMyLocationEnabled(true);
        // Check if we were successful in obtaining the map.
        if (mMap != null) {
            setUpMapIfNeeded();

        }
    }

}

private void setUpMap() {
    mMap.addMarker(new MarkerOptions().position(new LatLng(0, 0)).title("Marker").snippet("Snippet"));
    mMap.setMyLocationEnabled(true);
    LocationManager locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
    Criteria criteria = new Criteria();
    String provider = locationManager.getBestProvider(criteria, true);
    Location location = locationManager.getLastKnownLocation(provider);

    if (location != null) {

        LatLng target = new LatLng(location.getLatitude(), location.getLongitude());
        CameraPosition position = this.mMap.getCameraPosition();

        CameraPosition.Builder builder = new CameraPosition.Builder();
        builder.zoom(15);
        builder.target(target);

        this.mMap.animateCamera(CameraUpdateFactory.newCameraPosition(builder.build()));
        mMap.addMarker(new MarkerOptions().position(new LatLng(location.getLatitude(), location.getLongitude())).title("You are here!").snippet("Consider yourself located"));
    }
}
}
Run Code Online (Sandbox Code Playgroud)

KIS*_*_ZE 5

你有几个巨大的超级基本错误:

onResume只有当baground中的活动到达前景时才会调用First .放入setUpMapIfNeeded()内部onCreate也是如此.

在你的函数setUpMapIfNeeded()中的第二个在最后一个if语句中,而不是让setUpMap()setUpMapIfNeeded()改变它,它应该工作.

public class MapsActivity extends  FragmentActivity {

private GoogleMap mMap; // Might be null if Google Play services APK is not available.
Run Code Online (Sandbox Code Playgroud)

这是你的代码修改:

第1部分

@Override
 protected void onCreate(Bundle 
savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_maps);
setUpMapIfNeeded();

}


@Override
protected void onResume() {
super.onResume();
setUpMapIfNeeded();
}
Run Code Online (Sandbox Code Playgroud)

第2部分

private void setUpMapIfNeeded() {
// Do a null check to confirm that we have not already instantiated the map.
if (mMap == null) {
    // Try to obtain the map from the SupportMapFragment.
    mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map))
            .getMap();
   mMap.setMyLocationEnabled(true);
    // Check if we were successful in obtaining the map.
    if (mMap != null) {
        setUpMap();

    }
    }

}

private void setUpMap() {
mMap.addMarker(new.MarkerOptions().position(new LatLng(0, 0)).title("Marker").snippet("Snippet"));
mMap.setMyLocationEnabled(true);
LocationManager locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
Criteria criteria = new Criteria();
String provider = locationManager.getBestProvider(criteria, true);
Location location = locationManager.getLastKnownLocation(provider);

if (location != null) {

    LatLng target = new LatLng(location.getLatitude(), location.getLongitude());
    CameraPosition position = this.mMap.getCameraPosition();

    CameraPosition.Builder builder = new CameraPosition.Builder();
    builder.zoom(15);
    builder.target(target);

    this.mMap.animateCamera(CameraUpdateFactory.newCameraPosition(builder.build()));
    mMap.addMarker(new MarkerOptions().position(new LatLng(location.getLatitude(), location.getLongitude())).title("You are here!").snippet("Consider yourself located"));
}
}
}
Run Code Online (Sandbox Code Playgroud)