layout_player_item.xml 1.04 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/color_cutline_ececec"
    android:orientation="vertical">

    <RelativeLayout
        android:id="@+id/imageParent"
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:layout_gravity="center_horizontal">

        <ImageView
            android:id="@+id/image"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scaleType="centerCrop" />

        <ImageView
            android:id="@+id/itemPlayBtn"
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:layout_centerInParent="true"
            android:contentDescription="@null"
            android:src="@mipmap/player_item_play" />
    </RelativeLayout>

    <include layout="@layout/layout_player_item_content" />

</LinearLayout>