layout_recommend_item.xml 1.92 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/root"
    android:layout_width="match_parent"
    android:layout_height="182dp"
    android:orientation="vertical">

    <ImageView
        android:id="@+id/recommend_item_img"
        android:layout_width="176dp"
        android:layout_height="123dp"
        android:scaleType="fitXY" />

    <TextView
        android:id="@+id/recommend_item_tv_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="12dp"
        android:textColor="#060606"
        android:textSize="14sp"
        tools:text="李疯子!!!!" />

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="8dp"
        android:orientation="horizontal">

        <TextView
            android:id="@+id/recommend_item_tv_online"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="7dp"
            android:drawableLeft="@mipmap/index_people_icon"
            android:drawablePadding="5dp"
            android:textColor="#cdcdcd"
            android:textSize="10sp"
            tools:text="2980人观看" />

        <TextView
            android:id="@+id/recommend_item_tv_judge"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="7dp"
            android:drawableLeft="@mipmap/index_people_icon"
            android:drawablePadding="5dp"
            android:textColor="#cdcdcd"
            android:textSize="10sp"
            tools:text="1234人评论" />

    </LinearLayout>


</LinearLayout>