tysdkn_id_dialog.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="wrap_content"
  7. android:background="@drawable/tysdkn_pay_item"
  8. android:gravity="center"
  9. android:layout_gravity="center"
  10. android:orientation="vertical">
  11. <TextView
  12. android:id="@+id/tysdkn_dialog_add_id_title"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:layout_marginTop="20dp"
  16. android:layout_marginBottom="20dp"
  17. android:text="添加小号"
  18. android:textColor="#111111"
  19. android:textSize="18sp" />
  20. <EditText
  21. android:id="@+id/tysdkn_dialog_add_id_new_name"
  22. android:layout_width="match_parent"
  23. android:layout_height="33dp"
  24. android:layout_marginLeft="20dp"
  25. android:layout_marginRight="20dp"
  26. android:background="@drawable/tysdkn_edit_two_bg"
  27. android:padding="5dp"
  28. android:lineSpacingExtra="5dp"
  29. android:textSize="12sp"
  30. android:textColor="#999999"
  31. android:maxEms="20"
  32. tools:text=""/>
  33. <LinearLayout
  34. android:layout_width="match_parent"
  35. android:layout_height="38dp"
  36. android:layout_marginTop="30dp"
  37. android:orientation="horizontal">
  38. <TextView
  39. android:id="@+id/tysdkn_dialog_id_cancle"
  40. android:layout_width="0dp"
  41. android:layout_height="42dp"
  42. android:layout_weight="1"
  43. android:background="@drawable/tysdkn_btn_dialog_cancle"
  44. android:gravity="center"
  45. android:text="取消"
  46. android:textColor="#111111"
  47. android:textSize="16sp" />
  48. <TextView
  49. android:id="@+id/tysdkn_dialog_id_sure"
  50. android:layout_width="0dp"
  51. android:layout_height="42dp"
  52. android:layout_weight="1"
  53. android:background="@drawable/tysdkn_btn_dialog_sure"
  54. android:gravity="center"
  55. android:text="发送"
  56. android:textColor="#FFFFFF"
  57. android:textSize="16sp" />
  58. </LinearLayout>
  59. </LinearLayout>