AquaStream/app/src/main/res/layout/result_poster.xml

17 lines
729 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2022-06-09 13:50:55 +00:00
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2022-06-09 13:50:55 +00:00
android:background="?attr/primaryBlackBackground">
<ImageView
android:id="@+id/imgPoster"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="fitCenter"
android:adjustViewBounds="true"
android:src="@drawable/default_cover"
2022-08-03 00:04:03 +00:00
android:background="?attr/primaryGrayBackground"
2022-06-09 13:50:55 +00:00
android:contentDescription="@string/poster_image" />
</LinearLayout>