1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?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="#fff5f3f6"
- android:orientation="horizontal">
- <RelativeLayout
- android:id="@+id/zk_relativeLayout1"
- android:layout_width="match_parent"
- android:layout_height="50.0dip"
- android:layout_alignParentTop="true"
- android:layout_centerHorizontal="true"
- android:background="#ff262b28">
- <TextView
- android:id="@+id/zk_float_btn_account_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_centerVertical="true"
- android:text=""
- android:textColor="#ffffffff"
- android:textSize="20.0dip" />
- <Button
- android:id="@+id/zk_float_btn_account_back"
- android:layout_width="30.0dip"
- android:layout_height="30.0dip"
- android:layout_alignParentLeft="true"
- android:layout_centerVertical="true"
- android:layout_marginLeft="10.0dip"
- android:background="@drawable/zk_btn_back" />
- <Button
- android:id="@+id/zk_float_btn_account_bind_phone_send"
- android:layout_width="60.0dip"
- android:layout_height="35.0dip"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginRight="10.0dip"
- android:background="@drawable/zk_button_blue"
- android:text="提交"
- android:textColor="#ffffffff" />
- </RelativeLayout>
- <FrameLayout
- android:id="@+id/zk_container_layout_main_frame"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_alignParentLeft="true"
- android:layout_below="@id/zk_relativeLayout1" />
- </RelativeLayout>
|