私はアンドロイドアプリでGoogle Maps APIを使用しています。場所ボタンの外観を正方形の古いものから新しい丸いマテリアルデザインアイコンに変更したいと思います。アンドロイドGoogleマップMyLocationアイコンをマテリアルアイコンに変更
私はこの1つに変更したい:
また、どのように私は右下隅に右上からその位置を変更できますか?
以下XMLファイルのための私のコードです:
以下<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.bhoiwala.locationmocker.MapsActivity" >
<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_width="match_parent"
android:layout_height="wrap_content" />
</FrameLayout>
は、私はそれを使用していますどのように上のコードです:
private void updateLocationUI() {
if (mMap == null) {
return;
}
if (mLocationPermissionGranted) {
mMap.setMyLocationEnabled(true);
mMap.getUiSettings().setMyLocationButtonEnabled(true);
}
ありがとうございました:)
のように呼び出す:// stackoverflowの。 com/questions/23883235/google-map-for-android-my-location-custom-button –
API> 21でコードを実行すると、マテリアルデザインミラロケーションアイコン – Gattsu