12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?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"
- android:background="@drawable/bd_announce_view_bg"
- >
- <FrameLayout
- android:id="@+id/bdp_paycenter_title_frame"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentTop="true"
- android:visibility="gone"/>
- <FrameLayout
- android:id="@+id/bdp_paycenter_content_frame"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginTop="-65dp"
- android:layout_marginBottom="-65dp"
- android:layout_marginRight="-45dp"
- android:layout_marginLeft="-45dp"
- android:layout_centerHorizontal="true"
- >
- </FrameLayout>
- <ImageView
- android:id="@+id/back"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/bdp_icon_back1"
- android:padding="20dp"
- android:visibility="gone"
- android:layout_marginLeft="-20dp"
- android:layout_marginTop="-15dp"
- />
- </RelativeLayout>
|