Add to form a field to put a name of route and list all markers with coordinate and address
This commit is contained in:
@@ -1,11 +1,37 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<TableLayout
|
||||
android:id="@+id/table"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:clipToPadding="false"
|
||||
android:padding="16dp" />
|
||||
</GridLayout>
|
||||
android:layout_width="200dp"
|
||||
android:layout_height="wrap_content">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="20dp"
|
||||
android:textStyle="bold"
|
||||
android:text="Merci de vérifier les informations"/>
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_marginTop="20dp"
|
||||
android:text="Entrez un nom pour la ligne (80 caractères max)"
|
||||
android:layout_height="wrap_content"/>
|
||||
<EditText
|
||||
android:id="@+id/route_name"
|
||||
android:maxLength="80"/>
|
||||
<Button
|
||||
android:layout_width="wrap_content"
|
||||
android:id="@+id/validate_form"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Valider"/>
|
||||
|
||||
</TableLayout>
|
||||
<ScrollView>
|
||||
<TableLayout
|
||||
android:id="@+id/table"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:clipToPadding="false"
|
||||
android:padding="16dp" />
|
||||
</ScrollView>
|
||||
</TableLayout>
|
||||
Reference in New Issue
Block a user