Android maps design change -


is posible make design adjustments android fragment, maps this?

enter image description here

so, youll need add this:

<?xml version="1.0" encoding="utf-8"?> <relativelayout xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="match_parent"     android:layout_height="match_parent">           <com.google.android.gms.maps.mapview             android:id="@+id/map"             android:layout_width="match_parent"             android:layout_height="match_parent" />       <imageview         android:layout_width="match_parent"         android:layout_height="match_parent"         android:scaletype="fitxy"         android:src="@drawable/map_white_overlay" />  </relativelayout> 

where @drawable/map_white_overlay white fade image. ask designer psd or try somehow.

as map style, google-play-service 9.6.0 can style map using link


Comments

Popular posts from this blog

python - Error importing VideoFileClip from moviepy : AttributeError: 'PermissionError' object has no attribute 'message' -

java - is not an enclosing class / new Intent Cannot Resolve Constructor -

qt - QML MouseArea onWheel event not working properly when inside QML Scrollview -