12345678910111213141516171819202122232425262728293031 |
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- >
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:alpha="0.5"
- android:background="#d6d6d6" />
- <TextView
- android:padding="5sp"
- android:id="@+id/TextView"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_centerVertical="true"
- android:textColor="@color/jmfont_black"
- android:textSize="15sp" />
- <ImageView
- android:id="@+id/ibcancel"
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:background="@drawable/jm_cancel" />
- </RelativeLayout>
|