summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout
diff options
context:
space:
mode:
authorLeonard Kugis <leonard@kug.is>2024-01-02 17:53:12 +0100
committerLeonard Kugis <leonard@kug.is>2024-01-02 17:53:12 +0100
commit5db0bdfdf62ae0915b587399a0ff4ce53bca813b (patch)
tree538a18ce0adbf6e600ee77a48e51d8c67649b0c6 /app/src/main/res/layout
parent298dff2a877680e928b37e3a1336dc7d7aa52dfb (diff)
Implemented route mode
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r--app/src/main/res/layout/fragment_fake_location.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/app/src/main/res/layout/fragment_fake_location.xml b/app/src/main/res/layout/fragment_fake_location.xml
index 841ee56..d9f8a08 100644
--- a/app/src/main/res/layout/fragment_fake_location.xml
+++ b/app/src/main/res/layout/fragment_fake_location.xml
@@ -82,6 +82,14 @@
android:text="@string/location_use_specific_location"
android:textSize="14sp"
/>
+
+ <foundation.e.advancedprivacy.common.RightRadioButton
+ android:id="@+id/radio_use_route"
+ android:layout_height="52dp"
+ android:layout_width="match_parent"
+ android:text="@string/location_use_route"
+ android:textSize="14sp"
+ />
</RadioGroup>
<com.google.android.material.textfield.TextInputLayout
@@ -141,6 +149,38 @@
/>
</com.google.android.material.textfield.TextInputLayout>
+ <Button
+ android:id="@+id/button_location_route_path_select"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/location_route_path_select" />
+
+ <TextView
+ android:id="@+id/location_route_path"
+ android:layout_gravity="center_horizontal"
+ android:layout_height="wrap_content"
+ android:layout_width="match_parent"
+ android:text="@string/location_route_path"
+ android:lineSpacingExtra="5sp"
+ />
+
+ <CheckBox android:id="@+id/checkbox_route_loop"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/location_route_loop" />
+
+ <Button
+ android:id="@+id/button_location_route_start"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/location_route_start" />
+
+ <Button
+ android:id="@+id/button_location_route_stop"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/location_route_stop" />
+
<FrameLayout
android:layout_marginTop="16dp"
android:layout_height="220dp"