Googleマップをアクティビティの一部に読み込もうとします。これに続いて、デバイスがハングアップしません。
は、あなたのactivity_maps.xmlがあるとする:ここで
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="1">
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_height="wrap_content"
android:layout_width="match_parent"
tools:context=".MapsActivity"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"/>
<RelativeLayout/>
、あなたがあなたの活動のフラグメントを持っています。あなたはあなたのイメージのサイズとして調整することができます。
Javaコード(MapsActivity.java):あなたがフラグメントでグーグルマップを達成することができ、それがハングアップしません
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_maps);
ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, 1);
// Obtain the SupportMapFragment and get notified when the map is ready to be used.
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map);
mapFragment.getMapAsync(this);
}
@Override
public void onMapReady(GoogleMap googleMap) {
mMap = googleMap;
mMap.setMapType(GoogleMap.MAP_TYPE_NORMAL);
if (ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
== PackageManager.PERMISSION_GRANTED) {
mMap.setMyLocationEnabled(true);
}
mMap.setMyLocationEnabled(true);
mMap.getUiSettings().setCompassEnabled(true);
mMap.getUiSettings().setZoomControlsEnabled(true);
mMap.getUiSettings().setMyLocationButtonEnabled(true);
mMap.getUiSettings().setMapToolbarEnabled(true);
points = new ArrayList<LatLng>();
// Determining Current Location
LocationManager locationManager = (LocationManager) getSystemService(LOCATION_SERVICE);
Criteria criteria = new Criteria();
String provider = locationManager.getBestProvider(criteria, true);
Location location = locationManager.getLastKnownLocation(LocationManager.PASSIVE_PROVIDER);
if (location != null) {
latitude = location.getLatitude(); // get current latitude
longitude = location.getLongitude(); // get current longitude
myPosition = new LatLng(latitude, longitude);
LatLng coordinate = new LatLng(latitude, longitude);
CameraUpdate yourLocation = CameraUpdateFactory.newLatLngZoom(coordinate,15);
mMap.animateCamera(yourLocation);
}
}
この方法です。
また、マニフェストで権限を追加することを忘れないでください。
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="com.avl.pucc.rajasthan.permission.MAPS_RECEIVE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="com.google.android.maps" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
下記の解決策を確認してください。 –
あなたの答えはありがたいですが、マップ内のアクティビティ内に他のレイアウトがあります。したがって、マップは他のレイアウトのアクティビティ内にある必要があります。他の解決策? –
申し訳ありませんが、私はあなたが求めているものを得ていませんでした。あなたはコードをもっと明確にできますか? –