Add view path list

This commit is contained in:
clement
2024-07-09 19:49:50 +02:00
parent e096f9ed1c
commit a617a29e75
7 changed files with 87 additions and 38 deletions

View File

@@ -48,6 +48,15 @@
android:textColor="@color/black"
android:clickable="true"
android:text="Test Google Maps" />
<Button
android:id="@+id/load_path"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:backgroundTint="@color/white"
android:focusable="true"
android:textColor="@color/black"
android:clickable="true"
android:text="Load path" />
<TextView
android:layout_width="150dp"
android:layout_height="wrap_content"

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Spinner
android:id="@+id/combo_path">
</Spinner>
</TableLayout>