am_dot_com

DDM 20201215

Dec 15th, 2020 (edited)
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.52 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     xmlns:app="http://schemas.android.com/apk/res-auto"
  4.     xmlns:tools="http://schemas.android.com/tools"
  5.     android:layout_width="match_parent"
  6.     android:layout_height="match_parent"
  7.     android:orientation="vertical"
  8.     tools:context=".MainActivity">
  9.  
  10.     <Spinner
  11.         android:id="@+id/idSpnMapType"
  12.         android:layout_width="match_parent"
  13.         android:layout_height="wrap_content"
  14.         app:layout_constraintTop_toTopOf="parent"></Spinner>
  15.  
  16.     <LinearLayout
  17.         android:layout_width="match_parent"
  18.         android:layout_height="wrap_content">
  19.         <EditText
  20.             android:id="@+id/idEtLat"
  21.             android:layout_weight="1"
  22.             android:inputType="numberDecimal|numberSigned"
  23.             android:layout_width="match_parent"
  24.             android:layout_height="wrap_content" />
  25.         <EditText
  26.             android:id="@+id/idEtLong"
  27.             android:layout_weight="1"
  28.             android:inputType="numberDecimal|numberSigned"
  29.             android:layout_width="match_parent"
  30.             android:layout_height="wrap_content" />
  31.         <Button
  32.             android:id="@+id/idBtnGo"
  33.             android:text="Go!"
  34.             android:layout_weight="1"
  35.             android:layout_width="match_parent"
  36.             android:layout_height="wrap_content" />
  37.     </LinearLayout>
  38.  
  39.     <include
  40.         layout="@layout/googlemap_ll"></include>
  41.  
  42. </LinearLayout>
  43.  
Advertisement
Add Comment
Please, Sign In to add comment