send_to_wx.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  3. style="@style/NavPage">
  4. <LinearLayout
  5. android:layout_width="fill_parent"
  6. android:layout_height="fill_parent"
  7. android:gravity="center_vertical"
  8. android:orientation="vertical" >
  9. <LinearLayout
  10. android:orientation="horizontal"
  11. android:layout_width="fill_parent"
  12. android:layout_height="wrap_content">
  13. <CheckBox
  14. android:id="@+id/is_timeline_cb"
  15. android:clickable="true"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"/>
  18. <TextView
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_weight="1"
  22. android:textColor="@color/black"
  23. android:text="@string/is_timeline"/>
  24. </LinearLayout>
  25. <TextView
  26. android:layout_width="fill_parent"
  27. android:layout_height="wrap_content"
  28. android:text="@string/send"/>
  29. <Button
  30. android:id="@+id/send_text"
  31. style="@style/MMLineActionButton"
  32. android:layout_margin="10dp"
  33. android:text="@string/send_text"/>
  34. <Button
  35. android:id="@+id/send_img"
  36. style="@style/MMLineActionButton"
  37. android:layout_margin="10dp"
  38. android:text="@string/send_img"/>
  39. <Button
  40. android:id="@+id/send_music"
  41. style="@style/MMLineActionButton"
  42. android:layout_margin="10dp"
  43. android:text="@string/send_music"/>
  44. <Button
  45. android:id="@+id/send_video"
  46. style="@style/MMLineActionButton"
  47. android:layout_margin="10dp"
  48. android:text="@string/send_video"/>
  49. <Button
  50. android:id="@+id/send_webpage"
  51. style="@style/MMLineActionButton"
  52. android:layout_margin="10dp"
  53. android:text="@string/send_webpage"/>
  54. <Button
  55. android:id="@+id/send_appdata"
  56. style="@style/MMLineActionButton"
  57. android:layout_margin="10dp"
  58. android:text="@string/send_appdata"/>
  59. <Button
  60. android:id="@+id/send_emoji"
  61. style="@style/MMLineActionButton"
  62. android:layout_margin="10dp"
  63. android:text="@string/send_emoji"/>
  64. <Button
  65. android:id="@+id/get_token"
  66. style="@style/MMLineActionButton"
  67. android:layout_margin="10dp"
  68. android:text="@string/get_token_from_weixin"/>
  69. <Button
  70. android:id="@+id/unregister"
  71. style="@style/MMLineActionButton"
  72. android:layout_margin="10dp"
  73. android:text="@string/unregister_from_weixin"/>
  74. </LinearLayout>
  75. </ScrollView>