summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/gpodnetauth_host.xml
diff options
context:
space:
mode:
authorKeunes <11229646+keunes@users.noreply.github.com>2023-01-14 14:46:19 +0100
committerGitHub <noreply@github.com>2023-01-14 14:46:19 +0100
commitf995fd96df96d4ad9bcb9fd92b1ffdc08ec13e27 (patch)
treec47777699d901a5d8a9d42d5114d59b7d13d9948 /app/src/main/res/layout/gpodnetauth_host.xml
parent63e9d7f6965a859947209a4f287469b2e8789403 (diff)
downloadAntennaPod-f995fd96df96d4ad9bcb9fd92b1ffdc08ec13e27.zip
Synchronisation label changes (#6213)
Diffstat (limited to 'app/src/main/res/layout/gpodnetauth_host.xml')
-rw-r--r--app/src/main/res/layout/gpodnetauth_host.xml17
1 files changed, 12 insertions, 5 deletions
diff --git a/app/src/main/res/layout/gpodnetauth_host.xml b/app/src/main/res/layout/gpodnetauth_host.xml
index bcee9b880..7f2d16f11 100644
--- a/app/src/main/res/layout/gpodnetauth_host.xml
+++ b/app/src/main/res/layout/gpodnetauth_host.xml
@@ -3,18 +3,26 @@
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:orientation="vertical">
+ android:orientation="vertical"
+ android:clipToPadding="false">
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginBottom="16dp"
+ android:text="@string/synchronization_host_explanation" />
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
+ android:layout_marginBottom="16dp"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/serverUrlText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:hint="@string/gpodnetauth_host"
+ android:hint="@string/synchronization_host_label"
android:inputType="textNoSuggestions"
android:lines="1"
android:imeOptions="actionNext|flagNoFullscreen" />
@@ -23,9 +31,8 @@
<Button
android:id="@+id/chooseHostButton"
- android:layout_width="wrap_content"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_gravity="right|end"
- android:text="@string/gpodnetauth_select_server" />
+ android:text="@string/proceed_to_login_butLabel" />
</LinearLayout>