LibreTube/app/src/main/res/layout/fragment_library.xml
2022-01-28 21:10:32 +04:00

35 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Library">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
>
<ImageView
android:id="@+id/player_like"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerInParent="true"
android:layout_marginBottom="16dp"
android:src="@drawable/ic_campaign" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Coming Soon!"
android:id="@+id/textLike"
android:layout_below="@id/player_like"
android:layout_centerHorizontal="true"
android:textStyle="bold"
android:textSize="20sp"
/>
</RelativeLayout>
</FrameLayout>