layout_theatre_basicinfo.xml 2.03 KB
<?xml version="1.0" encoding="utf-8"?><!--直播详情 节目预约  点播详情中剧院基础信息Item-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/theatre_layout_parent"
    android:layout_width="match_parent"
    android:layout_height="55dp"
   >


    <ImageView
        android:id="@+id/theatre_img"
        android:layout_width="32dp"
        android:layout_height="32dp"
        android:layout_marginLeft="10dp"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        tools:background="@mipmap/icon_apklogo" />

    <TextView
        android:id="@+id/theatre_tv_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="11dp"
        android:layout_marginTop="17dp"
        android:layout_centerVertical="true"
        android:layout_toRightOf="@id/theatre_img"
        android:textColor="#666"
        android:textSize="13sp"
        tools:text="Board Way Theater" />

    <TextView
        android:id="@+id/theatre_tv_fans"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/theatre_tv_title"
        android:layout_marginLeft="11dp"
        android:layout_marginTop="9dp"
        android:layout_toRightOf="@id/theatre_img"
        android:textColor="#a7a7a7"
        android:textSize="11sp"
        tools:text="123万粉丝" />

    <ImageView
        android:id="@+id/theatre_img_arrow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:src="@mipmap/icon_theatre_next_button" />

    <View
        android:id="@+id/theatre_cut_bottom"
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:layout_alignParentBottom="true"
        android:background="#f2f2f2" />

</RelativeLayout>