mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-01 18:03:33 +00:00
110 lines
No EOL
4.7 KiB
XML
110 lines
No EOL
4.7 KiB
XML
<LinearLayout 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="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
style="@style/Widget.Material3.TextInputLayout.OutlinedBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="24dp"
|
|
android:layout_marginTop="24dp"
|
|
android:layout_marginEnd="24dp"
|
|
android:textColorHint="?android:textColorHint"
|
|
app:endIconMode="clear_text"
|
|
app:endIconTint="?android:textColorSecondary"
|
|
app:errorEnabled="true">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/server_name_text_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/server_signup_dialog_hint_name"
|
|
android:inputType="textNoSuggestions"
|
|
android:text="Navidrome"
|
|
android:textCursorDrawable="@null" />
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
style="@style/Widget.Material3.TextInputLayout.OutlinedBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="24dp"
|
|
android:layout_marginEnd="24dp"
|
|
android:textColorHint="?android:textColorHint"
|
|
app:endIconMode="clear_text"
|
|
app:endIconTint="?android:textColorSecondary"
|
|
app:errorEnabled="true">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/username_text_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/server_signup_dialog_hint_username"
|
|
android:inputType="textShortMessage"
|
|
android:text="antonio"
|
|
android:textCursorDrawable="@null" />
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
style="@style/Widget.Material3.TextInputLayout.OutlinedBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="24dp"
|
|
android:layout_marginEnd="24dp"
|
|
android:textColorHint="?android:textColorHint"
|
|
app:endIconMode="password_toggle"
|
|
app:endIconTint="?android:textColorSecondary"
|
|
app:errorEnabled="true">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/password_text_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/server_signup_dialog_hint_password"
|
|
android:inputType="textPassword"
|
|
android:text="!$4EBXhSPUi4$E#oagvAisCA"
|
|
android:textCursorDrawable="@null" />
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
style="@style/Widget.Material3.TextInputLayout.OutlinedBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="24dp"
|
|
android:layout_marginEnd="24dp"
|
|
android:textColorHint="?android:textColorHint"
|
|
app:endIconMode="clear_text"
|
|
app:endIconTint="?android:textColorSecondary"
|
|
app:errorEnabled="true">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/server_text_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/server_signup_dialog_hint_url"
|
|
android:inputType="textNoSuggestions"
|
|
android:text="http://192.168.1.81:4533"
|
|
android:textCursorDrawable="@null" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<CheckBox
|
|
android:id="@+id/direct_access_checkbox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="24dp"
|
|
android:layout_marginEnd="24dp"
|
|
android:text="@string/server_signup_dialog_action_direct_access" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/low_security_checkbox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="24dp"
|
|
android:layout_marginEnd="24dp"
|
|
android:text="@string/server_signup_dialog_action_low_security" />
|
|
</LinearLayout> |