tysdkn_game_pay_f.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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="match_parent"
  7. android:background="#ffffff"
  8. android:orientation="vertical">
  9. <RelativeLayout
  10. android:layout_width="match_parent"
  11. android:layout_height="30dp"
  12. android:layout_marginBottom="20dp">
  13. <LinearLayout
  14. android:layout_width="wrap_content"
  15. android:layout_height="match_parent"
  16. android:layout_centerVertical="true"
  17. android:gravity="center"
  18. android:orientation="horizontal"
  19. android:paddingLeft="10dp">
  20. <ImageView
  21. android:id="@+id/tysdkn_game_pay_back"
  22. android:layout_width="16dp"
  23. android:layout_height="16dp"
  24. android:src="@drawable/tysdkn_back"/>
  25. <TextView
  26. android:visibility="gone"
  27. android:layout_width="0dp"
  28. android:layout_height="match_parent"
  29. android:layout_marginLeft="10dp"
  30. android:layout_weight="1"
  31. android:ellipsize="end"
  32. android:gravity="center_vertical"
  33. android:maxLines="1"
  34. android:text="游戏充值"
  35. android:textColor="#111111"
  36. android:textSize="14sp"/>
  37. </LinearLayout>
  38. <TextView
  39. android:id="@+id/tysdkn_game_pay_gamename"
  40. android:layout_width="wrap_content"
  41. android:layout_height="wrap_content"
  42. android:layout_centerInParent="true"
  43. android:layout_gravity="center"
  44. android:textColor="#FFFFFF"
  45. android:textSize="11sp"
  46. tools:text="游戏充值"/>
  47. </RelativeLayout>
  48. <ScrollView
  49. android:layout_width="match_parent"
  50. android:layout_height="match_parent">
  51. <LinearLayout
  52. android:layout_width="match_parent"
  53. android:layout_height="wrap_content"
  54. android:orientation="vertical">
  55. <LinearLayout
  56. android:layout_width="match_parent"
  57. android:layout_height="0dp"
  58. android:layout_weight="1"
  59. android:orientation="horizontal">
  60. <include layout="@layout/tysdkn_game_pay_content"/>
  61. <View
  62. android:layout_width="0.5dp"
  63. android:layout_height="match_parent"
  64. android:layout_marginLeft="20dp"
  65. android:background="#dcdcdc"/>
  66. <include
  67. android:id="@+id/tysdkn_game_pay_right"
  68. layout="@layout/tysdkn_game_pay_right_layout"/>
  69. </LinearLayout>
  70. <include
  71. android:id="@+id/tysdkn_game_pay_bottom"
  72. layout="@layout/tysdkn_game_pay_bottom_layout"/>
  73. </LinearLayout>
  74. </ScrollView>
  75. </LinearLayout>