1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="#F5F3F6"
- android:orientation="horizontal" >
- <RelativeLayout
- android:id="@+id/ixunqu_relativeLayout1"
- android:layout_width="fill_parent"
- android:layout_height="50dp"
- android:layout_alignParentTop="true"
- android:layout_centerHorizontal="true"
- android:background="#262B28" >
- <TextView
- android:id="@+id/xunqu_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="#FFFFFF"
- android:textSize="20dp" />
- <Button
- android:id="@+id/xunqu_float_btn_account_back"
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_alignParentLeft="true"
- android:layout_centerVertical="true"
- android:layout_marginLeft="10dp"
- android:background="@drawable/xunqu_btn_back" />
- <Button
- android:id="@+id/xunqu_float_btn_account_bind_phone_send"
- android:layout_width="60dp"
- android:layout_height="35dp"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginRight="10dp"
- android:textColor="#FFFFFF"
- android:background="@drawable/ixunqu_button_blue"
- android:text="提交" />
- </RelativeLayout>
- <FrameLayout
- android:id="@+id/xunqu_container_layout_main_frame"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_alignParentLeft="true"
- android:layout_below="@+id/ixunqu_relativeLayout1">
- </FrameLayout>
- </RelativeLayout>
|