2022-02-08 19:57:13 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content">
|
2022-05-20 15:50:36 +05:30
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
2022-02-08 19:57:13 +05:30
|
|
|
android:layout_width="match_parent"
|
2022-05-20 15:50:36 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/app_name"
|
|
|
|
android:gravity="center"
|
|
|
|
android:layout_margin="10dp"
|
2022-06-03 22:19:48 +05:30
|
|
|
android:textSize="20sp" />
|
2022-02-08 19:57:13 +05:30
|
|
|
|
|
|
|
<TextView
|
2022-04-15 00:21:54 +05:30
|
|
|
android:id="@+id/user"
|
2022-02-08 19:57:13 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/already_logged_in"
|
|
|
|
android:padding="8dp"
|
2022-06-03 22:19:48 +05:30
|
|
|
android:layout_margin="8dp" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/logout"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/logout"
|
2022-06-05 20:03:31 +05:30
|
|
|
android:layout_gravity="right"
|
|
|
|
android:backgroundTint="@android:color/transparent"
|
|
|
|
android:textColor="?attr/colorPrimary"
|
|
|
|
android:textSize="14sp"
|
2022-06-03 22:19:48 +05:30
|
|
|
android:padding="8dp"
|
2022-06-05 20:03:31 +05:30
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
android:layout_marginBottom="8dp" />
|
2022-02-08 19:57:13 +05:30
|
|
|
|
|
|
|
</LinearLayout>
|