Advertisement
Guest User

Untitled

a guest
Apr 4th, 2020
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 5.59 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <layout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto">
  4.  
  5.     <data>
  6.  
  7.         <variable
  8.            name="viewModel"
  9.            type="eu.agribot.agribotapp.ui.fragment.autonomousmode.AutonomousModeViewModel" />
  10.     </data>
  11.     <LinearLayout
  12.        android:layout_width="match_parent"
  13.        android:layout_height="match_parent"
  14.        android:orientation="vertical">
  15.  
  16.         <LinearLayout
  17.            android:layout_width="match_parent"
  18.            android:layout_height="0dp"
  19.            android:layout_margin="@dimen/margin_large"
  20.            android:layout_weight="1">
  21.  
  22.             <view
  23.                android:layout_width="wrap_content"
  24.                android:layout_height="wrap_content"
  25.                android:layout_weight="1"/>
  26.  
  27.             <TextView
  28.                android:layout_width="0dp"
  29.                android:layout_height="wrap_content"
  30.                android:layout_weight="1"
  31.                android:layout_gravity="center"
  32.                android:layout_margin="@dimen/margin_large"
  33.                android:text="Status Fragment"
  34.                android:textSize="32sp" />
  35.  
  36.             <view
  37.                android:layout_width="wrap_content"
  38.                android:layout_height="wrap_content"
  39.                android:layout_weight="1"/>
  40.  
  41.         </LinearLayout>
  42.  
  43.         <LinearLayout
  44.            android:layout_width="match_parent"
  45.            android:layout_height="0dp"
  46.            android:layout_margin="@dimen/margin_large"
  47.            android:layout_weight="6"
  48.            android:orientation="horizontal">
  49.  
  50.             <LinearLayout
  51.                android:layout_width="0dp"
  52.                android:layout_height="match_parent"
  53.                android:layout_margin="@dimen/margin_medium"
  54.                android:layout_weight="1"
  55.                android:orientation="vertical">
  56.  
  57.                 <LinearLayout
  58.                    android:layout_width="357dp"
  59.                    android:layout_height="0dp"
  60.                    android:layout_gravity="center"
  61.                    android:layout_weight="1"
  62.                    android:background="@color/base_green"
  63.                    android:layout_margin="@dimen/margin_medium">
  64.  
  65.                     <TextView
  66.                        android:layout_width="wrap_content"
  67.                        android:layout_height="wrap_content"
  68.                        android:layout_gravity="center"
  69.                        android:text="Path Select Fragment"
  70.                        android:layout_margin="@dimen/margin_large"
  71.                        android:textSize="32sp"/>
  72.                 </LinearLayout>
  73.  
  74.                 <CalendarView
  75.                    android:id="@+id/calendarView"
  76.                    android:layout_width="wrap_content"
  77.                    android:layout_height="0dp"
  78.                    android:layout_weight="1"
  79.                    android:layout_gravity="center"
  80.                    android:layout_margin="@dimen/margin_medium"/>
  81.             </LinearLayout>
  82.  
  83.             <LinearLayout
  84.                android:layout_width="0dp"
  85.                android:layout_height="match_parent"
  86.                android:layout_margin="@dimen/margin_medium"
  87.                android:layout_weight="1"
  88.                android:orientation="vertical">
  89.  
  90.                 <com.google.android.gms.maps.MapView
  91.                    android:id="@+id/mapView"
  92.                    android:layout_width="349dp"
  93.                    android:layout_height="0dp"
  94.                    android:layout_gravity="center"
  95.                    android:layout_weight="1"
  96.                    android:apiKey="@string/google_maps_key"
  97.                    android:clickable="true"
  98.                    android:enabled="true" />
  99.  
  100.                 <LinearLayout
  101.                    android:layout_width="357dp"
  102.                    android:layout_height="0dp"
  103.                    android:layout_gravity="center"
  104.                    android:layout_weight="1"
  105.                    android:background="@color/base_green"
  106.                    android:layout_margin="@dimen/margin_medium">
  107.  
  108.                     <TextView
  109.                        android:layout_width="wrap_content"
  110.                        android:layout_height="wrap_content"
  111.                        android:layout_gravity="center"
  112.                        android:text="Tool Select Fragment"
  113.                        android:layout_margin="@dimen/margin_large"
  114.                        android:textSize="32sp"/>
  115.  
  116.                 </LinearLayout>
  117.  
  118.             </LinearLayout>
  119.  
  120.         </LinearLayout>
  121.  
  122.         <LinearLayout
  123.            android:layout_width="match_parent"
  124.            android:layout_height="0dp"
  125.            android:layout_margin="@dimen/margin_large"
  126.            android:layout_weight="1">
  127.  
  128.             <view
  129.                android:layout_width="wrap_content"
  130.                android:layout_height="wrap_content"
  131.                android:layout_weight="1"/>
  132.  
  133.             <TextView
  134.                android:layout_width="0dp"
  135.                android:layout_height="wrap_content"
  136.                android:layout_weight="1"
  137.                android:layout_gravity="center"
  138.                android:layout_margin="@dimen/margin_large"
  139.                android:text="Start/Stop Fragment"
  140.                android:textSize="32sp" />
  141.  
  142.             <view
  143.                android:layout_width="wrap_content"
  144.                android:layout_height="wrap_content"
  145.                android:layout_weight="1"/>
  146.  
  147.         </LinearLayout>
  148.     </LinearLayout>
  149. </layout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement