zk_activity_common_fragment_container.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="#fff5f3f6"
  6. android:orientation="horizontal">
  7. <RelativeLayout
  8. android:id="@+id/zk_relativeLayout1"
  9. android:layout_width="match_parent"
  10. android:layout_height="50.0dip"
  11. android:layout_alignParentTop="true"
  12. android:layout_centerHorizontal="true"
  13. android:background="#ff262b28">
  14. <TextView
  15. android:id="@+id/zk_float_btn_account_title"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_centerHorizontal="true"
  19. android:layout_centerVertical="true"
  20. android:text=""
  21. android:textColor="#ffffffff"
  22. android:textSize="20.0dip" />
  23. <Button
  24. android:id="@+id/zk_float_btn_account_back"
  25. android:layout_width="30.0dip"
  26. android:layout_height="30.0dip"
  27. android:layout_alignParentLeft="true"
  28. android:layout_centerVertical="true"
  29. android:layout_marginLeft="10.0dip"
  30. android:background="@drawable/zk_btn_back" />
  31. <Button
  32. android:id="@+id/zk_float_btn_account_bind_phone_send"
  33. android:layout_width="60.0dip"
  34. android:layout_height="35.0dip"
  35. android:layout_alignParentRight="true"
  36. android:layout_centerVertical="true"
  37. android:layout_marginRight="10.0dip"
  38. android:background="@drawable/zk_button_blue"
  39. android:text="提交"
  40. android:textColor="#ffffffff" />
  41. </RelativeLayout>
  42. <FrameLayout
  43. android:id="@+id/zk_container_layout_main_frame"
  44. android:layout_width="match_parent"
  45. android:layout_height="match_parent"
  46. android:layout_alignParentLeft="true"
  47. android:layout_below="@id/zk_relativeLayout1" />
  48. </RelativeLayout>