account_safe_tips_layout.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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="#00000000" >
  6. <LinearLayout
  7. android:background="#70000000"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:layout_centerInParent="true"
  11. android:orientation="vertical" >
  12. <TextView
  13. android:layout_marginTop="10dp"
  14. android:layout_width="wrap_content"
  15. android:layout_height="wrap_content"
  16. android:layout_gravity="center_horizontal"
  17. android:text="@string/account_safe_tips_title"
  18. android:textSize="@dimen/text_size_24sp" />
  19. <TextView
  20. android:layout_width="220dp"
  21. android:layout_height="wrap_content"
  22. android:layout_marginLeft="10dp"
  23. android:layout_marginRight="10dp"
  24. android:layout_marginTop="40dp"
  25. android:textSize="@dimen/text_size_16sp"
  26. android:text="@string/account_safe_tips_string" />
  27. <Button
  28. android:id="@+id/bind_phone"
  29. android:layout_width="140dp"
  30. android:layout_height="36dp"
  31. android:layout_gravity="center_horizontal"
  32. android:layout_marginTop="16dp"
  33. android:background="@drawable/account_safe_button_bg"
  34. android:text="@string/bind_phone_string" />
  35. <Button
  36. android:id="@+id/bind_cancle"
  37. android:layout_width="140dp"
  38. android:layout_height="36dp"
  39. android:layout_gravity="center_horizontal"
  40. android:layout_marginTop="16dp"
  41. android:background="@drawable/account_safe_button_bg"
  42. android:layout_marginBottom="30dp"
  43. android:text="@string/bind_phone_cancle" />
  44. </LinearLayout>
  45. </RelativeLayout>