LibreTube/app/src/main/res/layout/dialog_logout.xml

30 lines
909 B
XML
Raw Normal View History

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:layout_width="wrap_content"
2022-06-27 22:47:52 +05:30
android:layout_height="wrap_content"
android:orientation="vertical">
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:layout_margin="10dp"
2022-06-27 22:47:52 +05:30
android:gravity="center"
android:text="@string/app_name"
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"
2022-06-27 22:47:52 +05:30
android:layout_margin="8dp"
2022-02-08 19:57:13 +05:30
android:padding="8dp"
2022-06-27 22:47:52 +05:30
android:text="@string/already_logged_in" />
2022-06-03 22:19:48 +05:30
<Button
android:id="@+id/logout"
2022-06-27 22:47:52 +05:30
style="@style/CustomDialogButton"
android:text="@string/logout" />
2022-02-08 19:57:13 +05:30
</LinearLayout>