1234567891011121314151617181920212223 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:background="@color/dalan_white">
- <FrameLayout
- android:id="@+id/dalan_flyt_container"
- android:layout_width="@dimen/dalan_flyt_width"
- android:layout_height="wrap_content"
- android:background="@drawable/zk_shape_bg"
- android:paddingLeft="@dimen/dalan_close_btn_width"></FrameLayout>
- <ImageView
- android:id="@+id/dalan_close"
- android:layout_width="@dimen/dalan_close_btn_width"
- android:layout_height="@dimen/dalan_close_btn_width"
- android:layout_alignTop="@+id/dalan_flyt_container"
- android:layout_toRightOf="@+id/dalan_flyt_container"
- android:padding="6dp"
- android:src="@drawable/zk_close" />
- </RelativeLayout>
|