12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?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="70dp"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="70dp"
- android:layout_marginLeft="20dp"
- android:layout_marginRight="20dp"
- android:background="#ccffffff">
- <ImageView
- android:id="@+id/hj_iv_icon"
- android:layout_width="50dp"
- android:layout_height="50dp"
- android:layout_centerVertical="true"
- android:layout_marginLeft="20dp"
- />
- <TextView
- android:id="@+id/hj_tv_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_centerVertical="true"
- android:layout_marginLeft="10dp"
- android:layout_toLeftOf="@+id/hj_tv_detail"
- android:layout_toRightOf="@+id/hj_iv_icon"
- android:ellipsize="end"
- android:maxLines="1"
- android:text="更多精彩请 点击"
- android:textColor="#000"
- android:textSize="16sp"
- />
- <TextView
- android:id="@+id/hj_tv_detail"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginRight="10dp"
- 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>
|