mihon/app/src/main/res/layout/pref_account_login.xml

50 lines
1.8 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2020-02-21 18:43:50 -05:00
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingStart="24dp"
android:paddingEnd="24dp">
2020-03-11 19:08:57 -04:00
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/username_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2020-03-11 19:08:57 -04:00
android:hint="@string/username">
2020-03-11 19:08:57 -04:00
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text" />
2020-03-11 19:08:57 -04:00
</com.google.android.material.textfield.TextInputLayout>
2020-03-11 19:08:57 -04:00
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/password"
app:endIconMode="password_toggle">
2020-03-11 19:08:57 -04:00
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword" />
</com.google.android.material.textfield.TextInputLayout>
2015-10-26 13:50:11 -04:00
<com.dd.processbutton.iml.ActionProcessButton
2016-03-12 08:22:40 -05:00
android:id="@+id/login"
2015-10-26 13:50:11 -04:00
android:layout_width="match_parent"
2015-10-26 12:29:16 -04:00
android:layout_height="wrap_content"
2016-03-12 08:22:40 -05:00
android:layout_marginTop="20dp"
2015-10-26 13:50:11 -04:00
android:text="@string/login"
2016-03-12 08:22:40 -05:00
android:textColor="@android:color/white"
app:pb_textComplete="@string/login_success"
2015-10-26 13:50:11 -04:00
app:pb_textError="@string/invalid_login"
2020-02-21 18:43:50 -05:00
app:pb_textProgress="@string/loading" />
2015-10-26 12:29:16 -04:00
2020-02-21 18:43:50 -05:00
</LinearLayout>