Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- tools:context=".MainActivity">
- <Spinner
- android:id="@+id/idSpnMapType"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- app:layout_constraintTop_toTopOf="parent"></Spinner>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <EditText
- android:id="@+id/idEtLat"
- android:layout_weight="1"
- android:inputType="numberDecimal|numberSigned"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- <EditText
- android:id="@+id/idEtLong"
- android:layout_weight="1"
- android:inputType="numberDecimal|numberSigned"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- <Button
- android:id="@+id/idBtnGo"
- android:text="Go!"
- android:layout_weight="1"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- </LinearLayout>
- <include
- layout="@layout/googlemap_ll"></include>
- </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment