123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#ccffffff"
- android:id="@+id/hj_por_rl_layout"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_centerInParent="true"
- android:layout_width="wrap_content"
- android:background="#00ffffff"
- android:layout_height="350dp">
- <ImageView
- android:id="@+id/iv_center"
- android:layout_width="match_parent"
- android:layout_height="350dp"
- android:layout_centerInParent="true"
- android:layout_marginLeft="100dp"
- android:background="#99666666"
- />
- <ImageView
- android:id="@+id/hj_por_iv_icon"
- android:layout_width="60dp"
- android:layout_height="60dp"
- android:layout_alignTop="@+id/iv_center"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="25dp"
- />
- <ImageView
- android:id="@+id/hj_por_iv_close"
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_alignParentRight="true"
- android:layout_marginTop="20dp"
- android:layout_marginRight="80dp"
- android:src="@drawable/hj_video_close"
- />
- <TextView
- android:id="@+id/hj_por_tv_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@+id/hj_por_iv_icon"
- android:layout_centerHorizontal="true"
- android:layout_marginLeft="130dp"
- android:layout_marginTop="60dp"
- android:ellipsize="end"
- android:maxLines="2"
- android:text="更多精彩 请点击"
- android:textColor="#ffffff"
- android:textSize="24sp"
- />
- <TextView
- android:id="@+id/hj_por_tv_sub_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@+id/hj_por_tv_title"
- android:layout_centerHorizontal="true"
- android:layout_marginLeft="130dp"
- android:layout_marginTop="20dp"
- android:ellipsize="end"
- android:maxLines="2"
- android:textColor="#ffffff"
- android:textSize="18sp"/>
- <TextView
- android:id="@+id/hj_por_tv_detail"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@+id/hj_por_tv_sub_title"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="20dp"
- android:background="@drawable/hj_corner_blue"
- android:gravity="center"
- android:paddingBottom="10dp"
- android:paddingLeft="20dp"
- android:paddingRight="20dp"
- android:paddingTop="10dp"
- android:text="查看详情"
- android:textColor="#ffffff"
- />
- </RelativeLayout>
- </RelativeLayout>
|