activity_main.xml 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical"
  7. android:padding="8dp">
  8. <TextView
  9. android:id="@+id/data_text"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:text=""
  13. android:textColor="@android:color/holo_green_dark" />
  14. <ScrollView
  15. android:id="@+id/svLog"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent"
  18. android:visibility="gone">
  19. <TextView
  20. android:id="@+id/tvSync"
  21. android:layout_width="match_parent"
  22. android:layout_height="match_parent"
  23. android:visibility="visible" />
  24. </ScrollView>
  25. <LinearLayout
  26. android:layout_width="match_parent"
  27. android:layout_height="wrap_content"
  28. android:orientation="vertical"
  29. android:focusable="true"
  30. android:focusableInTouchMode="true">
  31. <LinearLayout
  32. android:layout_width="match_parent"
  33. android:layout_height="wrap_content"
  34. android:orientation="horizontal">
  35. <Button
  36. android:id="@+id/bind"
  37. android:layout_width="0dip"
  38. android:layout_height="wrap_content"
  39. android:layout_weight="1"
  40. android:text="@string/bind" />
  41. <Button
  42. android:id="@+id/unbind"
  43. android:layout_width="0dip"
  44. android:layout_height="wrap_content"
  45. android:layout_weight="1"
  46. android:enabled="false"
  47. android:text="@string/unbind" />
  48. </LinearLayout>
  49. <LinearLayout
  50. android:layout_width="match_parent"
  51. android:layout_height="wrap_content"
  52. android:orientation="horizontal">
  53. <Button
  54. android:id="@+id/scan"
  55. android:layout_width="0dip"
  56. android:layout_height="wrap_content"
  57. android:layout_weight="1"
  58. android:enabled="false"
  59. android:text="@string/scan" />
  60. <Button
  61. android:id="@+id/connect"
  62. android:layout_width="0dip"
  63. android:layout_height="wrap_content"
  64. android:layout_weight="1"
  65. android:enabled="false"
  66. android:text="@string/connect"
  67. android:visibility="gone" />
  68. <Button
  69. android:id="@+id/disconnect"
  70. android:layout_width="0dip"
  71. android:layout_height="wrap_content"
  72. android:layout_weight="1"
  73. android:enabled="false"
  74. android:text="@string/disconnect" />
  75. </LinearLayout>
  76. <ScrollView
  77. android:id="@+id/svDevice"
  78. android:layout_width="match_parent"
  79. android:layout_height="wrap_content">
  80. <LinearLayout
  81. android:id="@+id/llConnect"
  82. android:layout_width="match_parent"
  83. android:layout_height="wrap_content"
  84. android:orientation="vertical"
  85. android:visibility="gone">
  86. <LinearLayout
  87. android:layout_width="match_parent"
  88. android:layout_height="wrap_content"
  89. android:orientation="horizontal">
  90. <Button
  91. android:id="@+id/set_time"
  92. android:layout_width="0dip"
  93. android:layout_height="wrap_content"
  94. android:layout_weight="1"
  95. android:text="@string/set_time" />
  96. <Button
  97. android:id="@+id/getcursportdata"
  98. android:layout_width="0dip"
  99. android:layout_height="wrap_content"
  100. android:layout_weight="1"
  101. android:text="@string/sync_time" />
  102. </LinearLayout>
  103. <LinearLayout
  104. android:layout_width="match_parent"
  105. android:layout_height="wrap_content"
  106. android:orientation="horizontal">
  107. <Button
  108. android:id="@+id/set_userinfo"
  109. android:layout_width="0dip"
  110. android:layout_height="wrap_content"
  111. android:layout_weight="1"
  112. android:text="@string/set_userinfo" />
  113. <Button
  114. android:id="@+id/set_vir"
  115. android:layout_width="0dip"
  116. android:layout_height="wrap_content"
  117. android:layout_weight="1"
  118. android:text="@string/set_vir" />
  119. </LinearLayout>
  120. <LinearLayout
  121. android:layout_width="match_parent"
  122. android:layout_height="wrap_content"
  123. android:orientation="horizontal">
  124. <Button
  125. android:id="@+id/set_photo"
  126. android:layout_width="0dip"
  127. android:layout_height="wrap_content"
  128. android:layout_weight="1"
  129. android:text="@string/set_photo" />
  130. <Button
  131. android:id="@+id/set_idletime"
  132. android:layout_width="0dip"
  133. android:layout_height="wrap_content"
  134. android:layout_weight="1"
  135. android:text="@string/set_idletime" />
  136. </LinearLayout>
  137. <LinearLayout
  138. android:layout_width="match_parent"
  139. android:layout_height="wrap_content"
  140. android:orientation="horizontal">
  141. <Button
  142. android:id="@+id/set_sleep"
  143. android:layout_width="0dip"
  144. android:layout_height="wrap_content"
  145. android:layout_weight="1"
  146. android:text="@string/set_sleep" />
  147. <Button
  148. android:id="@+id/read_batery"
  149. android:layout_width="0dip"
  150. android:layout_height="wrap_content"
  151. android:layout_weight="1"
  152. android:text="@string/read_batery" />
  153. </LinearLayout>
  154. <LinearLayout
  155. android:layout_width="match_parent"
  156. android:layout_height="wrap_content"
  157. android:orientation="horizontal">
  158. <Button
  159. android:id="@+id/read_fw"
  160. android:layout_width="0dip"
  161. android:layout_height="wrap_content"
  162. android:layout_weight="1"
  163. android:text="@string/read_deviceinfo" />
  164. <Button
  165. android:id="@+id/set_alarm"
  166. android:layout_width="0dip"
  167. android:layout_height="wrap_content"
  168. android:layout_weight="1"
  169. android:text="@string/set_alarm" />
  170. </LinearLayout>
  171. <LinearLayout
  172. android:layout_width="match_parent"
  173. android:layout_height="wrap_content"
  174. android:orientation="horizontal">
  175. <Button
  176. android:id="@+id/openheart"
  177. android:layout_width="0dip"
  178. android:layout_height="wrap_content"
  179. android:layout_weight="1"
  180. android:text="@string/openheart" />
  181. <Button
  182. android:id="@+id/closeheart"
  183. android:layout_width="0dip"
  184. android:layout_height="wrap_content"
  185. android:layout_weight="1"
  186. android:text="@string/closeheart" />
  187. </LinearLayout>
  188. <LinearLayout
  189. android:layout_width="match_parent"
  190. android:layout_height="wrap_content"
  191. android:orientation="horizontal">
  192. <Button
  193. android:id="@+id/send_msg"
  194. android:layout_width="0dip"
  195. android:layout_height="wrap_content"
  196. android:layout_weight="1"
  197. android:text="@string/send_msg" />
  198. <Button
  199. android:id="@+id/set_autoheart"
  200. android:layout_width="0dip"
  201. android:layout_height="wrap_content"
  202. android:layout_weight="1"
  203. android:text="@string/set_autoheart" />
  204. </LinearLayout>
  205. <LinearLayout
  206. android:layout_width="match_parent"
  207. android:layout_height="wrap_content"
  208. android:orientation="horizontal">
  209. <Button
  210. android:id="@+id/set_fuzhu"
  211. android:layout_width="0dip"
  212. android:layout_height="wrap_content"
  213. android:layout_weight="1"
  214. android:text="@string/set_fuzhu" />
  215. <Button
  216. android:id="@+id/set_showmode"
  217. android:layout_width="0dip"
  218. android:layout_height="wrap_content"
  219. android:layout_weight="1"
  220. android:text="@string/set_showmode" />
  221. </LinearLayout>
  222. <LinearLayout
  223. android:layout_width="match_parent"
  224. android:layout_height="wrap_content"
  225. android:orientation="horizontal">
  226. <EditText
  227. android:id="@+id/et_getdata"
  228. android:layout_width="0dp"
  229. android:layout_height="wrap_content"
  230. android:layout_weight="1"
  231. android:gravity="center"
  232. android:inputType="number"
  233. android:text="1" />
  234. <EditText
  235. android:id="@+id/et_getday"
  236. android:layout_width="0dp"
  237. android:layout_height="wrap_content"
  238. android:layout_weight="1"
  239. android:gravity="center"
  240. android:inputType="number"
  241. android:text="0" />
  242. <Button
  243. android:id="@+id/getdata"
  244. android:layout_width="0dip"
  245. android:layout_height="wrap_content"
  246. android:layout_weight="2"
  247. android:text="@string/getdata" />
  248. </LinearLayout>
  249. <LinearLayout
  250. android:layout_width="match_parent"
  251. android:layout_height="wrap_content"
  252. android:orientation="horizontal">
  253. <Button
  254. android:id="@+id/bt_setHeartRateArea"
  255. android:layout_width="0dip"
  256. android:layout_height="wrap_content"
  257. android:layout_weight="1"
  258. android:text="设置心率区间" />
  259. <Button
  260. android:id="@+id/set_parameters"
  261. android:layout_width="0dp"
  262. android:layout_height="wrap_content"
  263. android:layout_weight="1"
  264. android:text="@string/set_parameters" />
  265. </LinearLayout>
  266. <LinearLayout
  267. android:layout_width="match_parent"
  268. android:layout_height="wrap_content"
  269. android:orientation="horizontal"
  270. android:visibility="visible">
  271. <EditText
  272. android:id="@+id/etName"
  273. android:layout_width="match_parent"
  274. android:layout_height="wrap_content"
  275. android:layout_weight="1"
  276. android:hint="name"
  277. android:text="name" />
  278. <EditText
  279. android:id="@+id/etContent"
  280. android:layout_width="match_parent"
  281. android:layout_height="wrap_content"
  282. android:layout_weight="1"
  283. android:hint="content"
  284. android:text="content" />
  285. </LinearLayout>
  286. <LinearLayout
  287. android:layout_width="match_parent"
  288. android:layout_height="wrap_content"
  289. android:orientation="horizontal"
  290. android:visibility="visible">
  291. <EditText
  292. android:id="@+id/etType"
  293. android:layout_width="match_parent"
  294. android:layout_height="wrap_content"
  295. android:layout_weight="1"
  296. android:hint="type"
  297. android:inputType="number"
  298. android:text="3" />
  299. <Button
  300. android:id="@+id/bNotify"
  301. android:layout_width="match_parent"
  302. android:layout_height="wrap_content"
  303. android:layout_weight="1"
  304. android:text="@string/send_call_notificatioin" />
  305. </LinearLayout>
  306. <LinearLayout
  307. android:layout_width="match_parent"
  308. android:layout_height="wrap_content"
  309. android:orientation="horizontal">
  310. <Button
  311. android:id="@+id/setLanguage"
  312. android:layout_width="0dip"
  313. android:layout_height="wrap_content"
  314. android:layout_weight="1"
  315. android:text="设置系统语言" />
  316. <Button
  317. android:id="@+id/send_weather"
  318. android:layout_width="0dip"
  319. android:layout_height="wrap_content"
  320. android:layout_weight="1"
  321. android:text="发送天气信息" />
  322. </LinearLayout>
  323. <LinearLayout
  324. android:layout_width="match_parent"
  325. android:layout_height="wrap_content"
  326. android:orientation="horizontal">
  327. <Button
  328. android:id="@+id/bt_open_blood"
  329. android:layout_width="0dip"
  330. android:layout_height="wrap_content"
  331. android:layout_weight="1"
  332. android:text="打开血压" />
  333. <Button
  334. android:id="@+id/bt_close_blood"
  335. android:layout_width="0dip"
  336. android:layout_height="wrap_content"
  337. android:layout_weight="1"
  338. android:text="关闭血压" />
  339. </LinearLayout>
  340. <LinearLayout
  341. android:layout_width="match_parent"
  342. android:layout_height="wrap_content"
  343. android:orientation="horizontal">
  344. <Button
  345. android:id="@+id/bSetDeviceCode"
  346. android:layout_width="0dp"
  347. android:layout_height="wrap_content"
  348. android:layout_weight="1"
  349. android:text="@string/set_device_code" />
  350. <Button
  351. android:id="@+id/bGetDeviceCode"
  352. android:layout_width="0dp"
  353. android:layout_height="wrap_content"
  354. android:layout_weight="1"
  355. android:text="@string/get_device_code" />
  356. </LinearLayout>
  357. </LinearLayout>
  358. </ScrollView>
  359. </LinearLayout>
  360. </LinearLayout>