| 1234567891011121314151617181920212223242526272829303132 |
- <?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"
- >
-
- <TextView
- android:id="@+id/ctv"
- android:layout_marginLeft="15dp"
- android:layout_marginTop="5dp"
- android:layout_width="fill_parent"
- android:layout_centerVertical="true"
- android:layout_height="wrap_content"
- android:textSize="@dimen/textsize_18"
- android:textColor="@color/white"
- />
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@drawable/iv_right"
- android:layout_centerVertical="true"
- android:layout_alignParentRight="true"
- android:layout_marginRight="5dp"/>
- <View
- android:id="@+id/childDividerV"
- android:layout_width="fill_parent"
- android:layout_alignParentBottom="true"
- android:visibility="gone"
- android:layout_height="1dp"
- android:background="@color/text_gray" />
- </RelativeLayout>
|