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

35 lines
1.2 KiB
XML
Raw Normal View History

2021-12-09 18:25:32 +05:30
<?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=".Subscriptions">
<RelativeLayout
2021-12-09 18:25:32 +05:30
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>
2021-12-09 18:25:32 +05:30
</FrameLayout>