mirror of https://github.com/FongMi/TV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.9 KiB
49 lines
1.9 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.appcompat.widget.LinearLayoutCompat 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"
|
|
android:paddingStart="24dp"
|
|
android:paddingTop="16dp"
|
|
android:paddingEnd="24dp">
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/input"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="16dp"
|
|
android:hint="@string/dialog_config_name"
|
|
android:visibility="gone">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:imeOptions="actionDone"
|
|
android:importantForAutofill="no"
|
|
android:inputType="text"
|
|
android:maxLength="10"
|
|
android:singleLine="true" />
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/choose"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/dialog_config_hint"
|
|
app:endIconDrawable="@drawable/ic_action_choose"
|
|
app:endIconMode="custom">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/url"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:imeOptions="actionDone"
|
|
android:importantForAutofill="no"
|
|
android:inputType="text"
|
|
android:singleLine="true" />
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
</androidx.appcompat.widget.LinearLayoutCompat> |