activity_rr.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <LinearLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent"
  9. android:focusable="true"
  10. android:focusableInTouchMode="true"
  11. android:orientation="vertical">
  12. <TextView
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:layout_gravity="center"
  16. android:text="模拟游戏测试发行SDK和下级渠道SDK"/>
  17. <Button
  18. android:id="@+id/init"
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content"
  21. android:text="初始化"/>
  22. <Button
  23. android:id="@+id/login"
  24. android:layout_width="match_parent"
  25. android:layout_height="wrap_content"
  26. android:text="登录"/>
  27. <LinearLayout
  28. android:layout_width="match_parent"
  29. android:layout_height="wrap_content"
  30. android:orientation="horizontal">
  31. <TextView
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34. android:text="支付金额:"/>
  35. <EditText
  36. android:id="@+id/money"
  37. android:layout_width="match_parent"
  38. android:layout_height="wrap_content"
  39. android:gravity="center"
  40. android:hint="充值金额"
  41. android:inputType="number"
  42. android:text="6"
  43. android:textColor="#e40000"
  44. android:textSize="18sp"/>
  45. </LinearLayout>
  46. <Button
  47. android:id="@+id/pay"
  48. android:layout_width="match_parent"
  49. android:layout_height="wrap_content"
  50. android:text="支付"/>
  51. <Button
  52. android:id="@+id/submit"
  53. android:layout_width="match_parent"
  54. android:layout_height="wrap_content"
  55. android:text="上传信息"/>
  56. <Button
  57. android:id="@+id/game_logout"
  58. android:layout_width="match_parent"
  59. android:layout_height="wrap_content"
  60. android:text="游戏调用注销"/>
  61. </LinearLayout>
  62. </ScrollView>