12345678910111213141516171819202122232425 |
- <?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="@dimen/dp_40">
- <ImageView
- android:id="@+id/dialog_title_back_iv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:layout_alignParentStart="true"
- android:src="@drawable/ej_img_icon_back"
- android:padding="@dimen/dp_10"
- android:visibility="gone"/>
- <ImageView
- android:id="@+id/dialog_title_close_iv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:src="@drawable/ej_img_icon_close"
- android:layout_alignParentEnd="true"
- android:padding="@dimen/dp_10"/>
- </RelativeLayout>
|