mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 07:10:29 +05:30
35 lines
1.2 KiB
XML
35 lines
1.2 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"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
android:paddingVertical="50dp">
|
||
|
|
||
|
<ImageView
|
||
|
android:layout_width="80dp"
|
||
|
android:layout_height="80dp"
|
||
|
android:layout_gravity="center"
|
||
|
|
||
|
android:src="@drawable/ic_done"
|
||
|
android:tint="?attr/colorPrimary"
|
||
|
tools:ignore="UseAppTint" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_marginTop="10dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
android:text="@string/all_caught_up"
|
||
|
android:textColor="?android:attr/textColorPrimary" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_marginTop="5dp"
|
||
|
android:textSize="13sp"
|
||
|
android:text="@string/all_caught_up_summary"
|
||
|
android:textColor="?attr/colorControlNormal" />
|
||
|
|
||
|
</LinearLayout>
|