Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:id="@+id/home_root"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    android:orientation="vertical"
  7.    android:weightSum="10">
  8.  
  9.     <fragment
  10.        android:id="@+id/map"
  11.        android:layout_width="match_parent"
  12.        android:layout_height="0dp"
  13.        android:layout_weight="8"
  14.        class="com.google.android.gms.maps.SupportMapFragment" />
  15.  
  16.     <LinearLayout
  17.        android:layout_width="match_parent"
  18.        android:layout_height="0dp"
  19.        android:layout_weight="1"
  20.        android:orientation="horizontal">
  21.  
  22.         <Button
  23.            android:id="@+id/satelit"
  24.            android:layout_width="0dp"
  25.            android:layout_height="wrap_content"
  26.            android:layout_weight="1"
  27.            android:text="Satelit"/>
  28.  
  29.         <Button
  30.            android:id="@+id/hybrid"
  31.            android:layout_width="0dp"
  32.            android:layout_height="wrap_content"
  33.            android:layout_weight="1"
  34.            android:text="Hybrid"/>
  35.  
  36.         <Button
  37.            android:id="@+id/terrain"
  38.            android:layout_width="0dp"
  39.            android:layout_height="wrap_content"
  40.            android:layout_weight="1"
  41.            android:text="Terrain"/>
  42.     </LinearLayout>
  43.        
  44.         <LinearLayout
  45.            android:layout_width="match_parent"
  46.            android:layout_height="0dp"
  47.            android:layout_weight="1"
  48.            android:orientation="horizontal">
  49.  
  50.         <Button
  51.            android:id="@+id/normal"
  52.            android:layout_width="0dp"
  53.            android:layout_height="wrap_content"
  54.            android:layout_weight="1"
  55.            android:text="Normal"/>
  56.            
  57.         <Button
  58.            android:id="@+id/none"
  59.            android:layout_width="0dp"
  60.            android:layout_height="wrap_content"
  61.            android:layout_weight="1"
  62.            android:text="None"/>    
  63.         </LinearLayout>
  64.  
  65. </LinearLayout>