mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
131 lines
No EOL
5.5 KiB
XML
131 lines
No EOL
5.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<FrameLayout
|
|
android:layout_marginTop="20dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<TextView
|
|
android:id="@+id/text1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_rowWeight="1"
|
|
|
|
android:paddingStart="?android:attr/listPreferredItemPaddingStart"
|
|
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
|
|
android:textColor="?attr/textColor"
|
|
android:textSize="20sp"
|
|
android:textStyle="bold"
|
|
tools:text="Test" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
style="@style/WhiteButton"
|
|
android:layout_gravity="center_vertical|end"
|
|
app:icon="@drawable/ic_baseline_add_24"
|
|
android:text="@string/create_account"
|
|
android:id="@+id/create_account"
|
|
android:layout_width="wrap_content" />
|
|
</FrameLayout>
|
|
|
|
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="60dp"
|
|
android:layout_marginHorizontal="10dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<EditText
|
|
android:textColorHint="?attr/grayTextColor"
|
|
android:hint="@string/example_username"
|
|
android:autofillHints="username"
|
|
android:id="@+id/login_username_input"
|
|
android:nextFocusRight="@id/cancel_btt"
|
|
android:nextFocusLeft="@id/apply_btt"
|
|
android:nextFocusDown="@id/login_email_input"
|
|
android:requiresFadingEdge="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="text"
|
|
tools:ignore="LabelFor" />
|
|
|
|
<EditText
|
|
android:textColorHint="?attr/grayTextColor"
|
|
android:autofillHints="emailAddress"
|
|
android:hint="@string/example_email"
|
|
android:id="@+id/login_email_input"
|
|
android:nextFocusRight="@id/cancel_btt"
|
|
android:nextFocusLeft="@id/apply_btt"
|
|
android:nextFocusUp="@id/login_username_input"
|
|
android:nextFocusDown="@id/login_server_input"
|
|
|
|
android:requiresFadingEdge="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="textEmailAddress"
|
|
tools:ignore="LabelFor" />
|
|
|
|
<EditText
|
|
android:textColorHint="?attr/grayTextColor"
|
|
android:hint="@string/example_ip"
|
|
android:id="@+id/login_server_input"
|
|
android:nextFocusRight="@id/cancel_btt"
|
|
android:nextFocusLeft="@id/apply_btt"
|
|
android:nextFocusUp="@id/login_email_input"
|
|
android:nextFocusDown="@id/login_password_input"
|
|
android:requiresFadingEdge="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="textUri"
|
|
tools:ignore="LabelFor" />
|
|
|
|
<EditText
|
|
android:textColorHint="?attr/grayTextColor"
|
|
android:hint="@string/example_password"
|
|
android:id="@+id/login_password_input"
|
|
android:nextFocusRight="@id/cancel_btt"
|
|
android:nextFocusLeft="@id/apply_btt"
|
|
android:nextFocusUp="@id/login_server_input"
|
|
android:nextFocusDown="@id/apply_btt"
|
|
|
|
android:requiresFadingEdge="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="textVisiblePassword"
|
|
tools:ignore="LabelFor"
|
|
android:autofillHints="password" />
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout
|
|
android:id="@+id/apply_btt_holder"
|
|
android:orientation="horizontal"
|
|
android:layout_gravity="bottom"
|
|
android:gravity="bottom|end"
|
|
android:layout_marginTop="-60dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="60dp">
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
style="@style/WhiteButton"
|
|
android:layout_gravity="center_vertical|end"
|
|
android:text="@string/login"
|
|
android:id="@+id/apply_btt"
|
|
android:layout_width="wrap_content" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
style="@style/BlackButton"
|
|
android:layout_gravity="center_vertical|end"
|
|
android:text="@string/sort_cancel"
|
|
android:id="@+id/cancel_btt"
|
|
android:layout_width="wrap_content" />
|
|
</LinearLayout>
|
|
</LinearLayout> |