12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/hj_lands_rl_layout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#ccffffff"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_width="300dp"
- android:layout_height="match_parent"
- android:layout_alignParentRight="true">
- <ImageView
- android:id="@+id/iv_center"
- android:layout_width="300dp"
- android:layout_height="match_parent"
- android:background="#99666666"
- />
- <ImageView
- android:id="@+id/hj_lands_iv_icon"
- android:layout_width="60dp"
- android:layout_height="60dp"
- android:layout_alignParentRight="true"
- android:layout_alignTop="@+id/iv_center"
- android:layout_marginRight="120dp"
- android:layout_marginTop="25dp"
- />
- <ImageView
- android:id="@+id/hj_lands_iv_close"
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_alignParentRight="true"
- android:layout_margin="30dp"
- android:src="@drawable/hj_video_close"
- />
- <TextView
- android:id="@+id/hj_lands_tv_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@+id/hj_lands_iv_icon"
- android:layout_centerHorizontal="true"
- android:layout_marginLeft="20dp"
- android:layout_marginRight="20dp"
- android:layout_marginTop="20dp"
- android:ellipsize="end"
- android:maxLines="2"
- android:text="更多精彩 请点击"
- android:textColor="#ffffff"
- android:textSize="24sp"
- />
- <TextView
- android:id="@+id/hj_lands_tv_sub_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@+id/hj_lands_tv_title"
- android:layout_centerHorizontal="true"
- android:layout_marginLeft="20dp"
- android:layout_marginRight="20dp"
- android:layout_marginTop="20dp"
- android:ellipsize="end"
- android:maxLines="2"
- android:textColor="#ffffff"
- android:textSize="18sp"/>
- <TextView
- android:id="@+id/hj_lands_tv_detail"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignBottom="@+id/iv_center"
- android:layout_centerHorizontal="true"
- android:layout_marginBottom="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>
|