AIRA-android/app/src/main/res/layout/fragment_login.xml

46 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<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"
android:layout_gravity="center_vertical">
<sushi.hardcore.aira.widgets.Avatar
android:id="@+id/avatar"
android:layout_height="@dimen/identityAvatarSize"
android:layout_width="@dimen/identityAvatarSize"
app:textSize="20sp"
android:layout_gravity="center"/>
<TextView
android:id="@+id/text_identity_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAlignment="center"
android:textStyle="bold"
android:textSize="25sp"
android:layout_marginTop="10dp"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/enter_password"
style="@style/Label"/>
<EditText
android:id="@+id/edit_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:hint="@string/password_hint"
android:autofillHints="password"/>
<Button
android:id="@+id/button_login"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/login"/>
</LinearLayout>