Garmin: encapuslate activity_send_waypoint in a ScrollView to support small screens

Co-authored-by: Thomas Kuehne <thomas.kuehne@gmx.li>
This commit is contained in:
José Rebelo
2026-05-03 16:25:15 +00:00
committed by Thomas Kuehne
co-authored by Thomas Kuehne
parent d45bcd4db3
commit 1bc2f7e29f
@@ -1,11 +1,14 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingHorizontal="@dimen/activity_horizontal_margin"
android:paddingVertical="@dimen/activity_vertical_margin"
android:orientation="vertical"
android:scrollbars="vertical">
android:paddingHorizontal="@dimen/activity_horizontal_margin"
android:paddingVertical="@dimen/activity_vertical_margin">
<TextView
android:layout_width="wrap_content"
@@ -144,4 +147,7 @@
android:focusable="true"
android:textAlignment="center"
android:textIsSelectable="false" />
</LinearLayout>
</LinearLayout>
</ScrollView>