mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
31 lines
1.0 KiB
XML
31 lines
1.0 KiB
XML
|
<?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">
|
||
|
<ImageView
|
||
|
android:src="@drawable/ic_libretube_foreground"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="64dp"
|
||
|
android:scaleType="center"
|
||
|
android:background="#CD5757"
|
||
|
android:contentDescription="@string/app_name" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/already_logged_in"
|
||
|
android:padding="8dp"
|
||
|
android:layout_margin="8dp"
|
||
|
/>
|
||
|
<Button
|
||
|
android:id="@+id/logout"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/logout"
|
||
|
android:padding="8dp"
|
||
|
android:layout_margin="8dp"
|
||
|
android:layout_gravity="center"/>
|
||
|
|
||
|
</LinearLayout>
|