ytdlnis/app/src/main/res/layout/history_no_results.xml
2023-01-30 00:00:03 +01:00

35 lines
No EOL
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/no_results"
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">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:orientation="vertical"
tools:ignore="MissingConstraints">
<ImageView
android:layout_width="150sp"
android:layout_height="100sp"
android:layout_gravity="center"
android:scaleType="centerInside"
android:background="@drawable/ic_no_results" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/no_results"
android:textAlignment="center"
android:textSize="20sp"
android:textStyle="bold" />
</LinearLayout>
</RelativeLayout>