<?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/white"
|
android:orientation="vertical"
|
android:paddingLeft="15dp"
|
android:paddingRight="15dp">
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="15dp"
|
android:gravity="center_vertical"
|
android:text="简介"
|
android:textSize="18sp" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="10dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:id="@+id/video_district"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:text="地区:"
|
android:textColor="@color/gray"
|
android:textSize="13.5sp" />
|
|
<TextView
|
android:id="@+id/video_score"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:gravity="right"
|
android:textColor="@color/blue2"
|
android:textSize="13.5sp" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
|
<TextView
|
android:id="@+id/video_year"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="4dp"
|
android:textColor="@color/gray"
|
android:textSize="13.5sp" />
|
|
<TextView
|
android:id="@+id/video_type"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="4dp"
|
android:textColor="@color/gray"
|
android:textSize="13.5sp" />
|
|
<TextView
|
android:id="@+id/video_actor"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="4dp"
|
android:textColor="@color/gray"
|
android:textSize="13.5sp" />
|
</LinearLayout>
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
<TextView
|
android:id="@+id/video_introduction"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="4dp"
|
android:textColor="@color/gray"
|
android:textSize="13.5sp" />
|
|
<LinearLayout
|
android:id="@+id/video_introduction_more"
|
android:layout_width="wrap_content"
|
android:layout_height="20dp"
|
android:layout_below="@+id/video_introduction"
|
android:layout_centerHorizontal="true"
|
android:layout_marginTop="8dp"
|
android:layout_marginBottom="5dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:id="@+id/video_more_text"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center"
|
android:text="查看更多"
|
android:textColor="@color/blue2"
|
android:textSize="13.5sp" />
|
|
<ImageView
|
android:id="@+id/video_more_image"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center"
|
android:src="@drawable/more_introduction" />
|
</LinearLayout>
|
</RelativeLayout>
|
|
</LinearLayout>
|