x7_small_account_dialog.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="@dimen/x7_addSmallAccount_width"
  4. android:layout_height="wrap_content"
  5. android:paddingBottom="20dp"
  6. android:orientation="vertical">
  7. <TextView
  8. android:id="@+id/tv_switch_account_title"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_marginTop="20dp"
  12. android:text="增加小號"
  13. android:textSize="18dp"
  14. android:layout_centerHorizontal="true"
  15. android:textColor="#12cdb0"
  16. />
  17. <TextView
  18. android:id="@+id/tv_switch_account_hint"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_below="@id/tv_switch_account_title"
  22. android:layout_centerHorizontal="true"
  23. android:layout_marginTop="10dp"
  24. android:paddingLeft="15dp"
  25. android:paddingRight="15dp"
  26. android:textColor="@color/x7_text_gray"
  27. android:textSize="14sp" />
  28. <LinearLayout
  29. android:id="@+id/rl_sure_cancel"
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:layout_below="@+id/tv_switch_account_hint"
  33. android:layout_centerHorizontal="true"
  34. android:layout_marginTop="20dp"
  35. android:orientation="horizontal"
  36. >
  37. <Button
  38. android:id="@+id/btn_sure_for_switch_account"
  39. android:layout_width="83dp"
  40. android:layout_height="34dp"
  41. android:background="@drawable/x7_btn_back_selected_2"
  42. android:text="@string/x7_sure_to_add"
  43. android:textColor="#fff"
  44. android:textSize="16dp"
  45. />
  46. <Button
  47. android:id="@+id/btn_cancel_for_switch_account"
  48. android:layout_width="83dp"
  49. android:layout_height="34dp"
  50. android:layout_marginLeft="10dp"
  51. android:background="@drawable/x7_edt_back_2"
  52. android:text="@string/x7_cancel"
  53. android:textColor="#fff"
  54. android:textSize="16dp"
  55. />
  56. </LinearLayout>
  57. </RelativeLayout>