layout_liveshow_content.xml 4.84 KB
<?xml version="1.0" encoding="utf-8"?><!--推荐直播 item布局-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/liveshow_content_root"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/white"
    android:orientation="vertical"
    android:paddingBottom="7dp"
    android:paddingTop="7dp">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="10dp"
        android:paddingRight="10dp">

        <FrameLayout
            android:id="@+id/liveshow_content_img_layout"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true">

            <ImageView
                android:id="@+id/liveshow_content_img"
                android:layout_width="107dp"
                android:layout_height="80dp"
                android:scaleType="centerCrop"
                tools:background="@drawable/rectangle_f8b551_fill" />

            <ImageView
                android:id="@+id/liveshow_content_img_tag"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="5dp"
                android:layout_marginTop="5dp"
                android:scaleType="fitCenter"
                android:src="@mipmap/index_live_icon" />

        </FrameLayout>

        <ImageView
            android:id="@+id/liveshow_content_img_order"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_marginTop="47dp"
            tools:src="@mipmap/index_order_button" />

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="12dp"
            android:layout_marginTop="7dp"
            android:layout_toLeftOf="@id/liveshow_content_img_order"
            android:layout_toRightOf="@id/liveshow_content_img_layout"
            android:gravity="left"
            android:orientation="vertical">

            <TextView
                android:id="@+id/liveshow_content_tv_title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:ellipsize="end"
                android:gravity="center_vertical|left"
                android:includeFontPadding="false"
                android:maxLines="1"
                android:text="标题"
                android:textColor="#060606"
                android:textSize="14sp" />

            <TextView
                android:id="@+id/liveshow_content_tv_des"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="6dp"
                android:ellipsize="end"
                android:gravity="center_vertical|left"
                android:includeFontPadding="false"
                android:maxLines="1"
                android:textColor="#999"
                android:textSize="13sp"
                tools:text="内容描述" />

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:orientation="horizontal">

                <TextView
                    android:id="@+id/liveshow_content_tv_type"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginTop="12.5dp"
                    android:gravity="center"
                    android:includeFontPadding="false"
                    android:paddingBottom="1.3dp"
                    android:paddingLeft="1.5dp"
                    android:paddingRight="1.5dp"
                    android:paddingTop="1.2dp"
                    android:textSize="9sp"
                    tools:background="@drawable/rectangle_f8b551"
                    tools:text="话剧" />

                <TextView
                    android:id="@+id/liveshow_content_tv_online"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="9dp"
                    android:layout_marginTop="14dp"
                    android:drawableLeft="@mipmap/index_people_icon"
                    android:drawablePadding="5dp"
                    android:includeFontPadding="false"
                    android:text="1023人观看"
                    android:textColor="#cdcdcd"
                    android:textSize="10sp" />

            </LinearLayout>

        </LinearLayout>

    </RelativeLayout>

</LinearLayout>