97 lines
3.1 KiB
XML
97 lines
3.1 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
android:paddingLeft="10dp"
|
||
|
android:paddingRight="8dp"
|
||
|
android:background="@color/white"
|
||
|
>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="50dp"
|
||
|
android:layout_marginBottom="10dp"
|
||
|
android:orientation="horizontal"
|
||
|
>
|
||
|
|
||
|
<FrameLayout
|
||
|
android:layout_width="50dp"
|
||
|
android:layout_height="50dp"
|
||
|
>
|
||
|
|
||
|
<com.makeramen.roundedimageview.RoundedImageView
|
||
|
android:id="@+id/img"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
app:riv_corner_radius="4dp"
|
||
|
/>
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/btn_play"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:padding="17dp"
|
||
|
android:src="@mipmap/icon_video_music_play"
|
||
|
/>
|
||
|
</FrameLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:layout_marginLeft="10dp"
|
||
|
android:layout_marginRight="10dp"
|
||
|
android:layout_weight="1"
|
||
|
android:orientation="vertical"
|
||
|
>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/title"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textColor="@color/textColor"
|
||
|
android:textSize="14sp"
|
||
|
/>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/author"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textColor="@color/gray1"
|
||
|
android:textSize="12sp"
|
||
|
/>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/length"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textColor="@color/gray1"
|
||
|
android:textSize="12sp"
|
||
|
/>
|
||
|
</LinearLayout>
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/btn_collect"
|
||
|
android:layout_width="40dp"
|
||
|
android:layout_height="40dp"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:padding="9dp"
|
||
|
android:src="@mipmap/icon_video_music_collect_0"
|
||
|
/>
|
||
|
</LinearLayout>
|
||
|
|
||
|
<com.yunbao.common.custom.RatioImageView
|
||
|
android:id="@+id/btn_use"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="0dp"
|
||
|
android:layout_marginBottom="10dp"
|
||
|
android:scaleType="fitXY"
|
||
|
android:src="@mipmap/icon_video_music_use"
|
||
|
android:visibility="gone"
|
||
|
app:ri_ratio="0.0986"
|
||
|
/>
|
||
|
</LinearLayout>
|