Advertisement
minafaw3

fragment_setting

Jan 29th, 2016
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.28 KB | None | 0 0
  1. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. xmlns:app="http://schemas.android.com/apk/res-auto"
  6. android:background="#fff"
  7. android:orientation="vertical"
  8. android:id="@+id/fragmentContainer"
  9. tools:context="org.aidmaid.settings.SettingsActivity">
  10.  
  11. <RelativeLayout android:gravity="bottom" android:layout_width="match_parent" android:orientation="horizontal"
  12. android:layout_height="60dip" android:background="#d01d1b">
  13. <TextView
  14. android:text="Settings"
  15. android:layout_toRightOf="@+id/backButton"
  16. android:textSize="23sp"
  17. android:textStyle="bold"
  18. android:textColor="#ffffff"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_marginLeft="30dp"
  22. android:layout_marginStart="30dp"
  23. android:layout_centerVertical="true"/>
  24. <ImageButton android:id="@+id/doneButton"
  25. android:background="@null"
  26. android:src="@drawable/icon_done"
  27. android:layout_width="wrap_content"
  28. android:layout_height="fill_parent"
  29. android:padding="15dp"
  30. android:layout_alignParentRight="true" />
  31. </RelativeLayout>
  32.  
  33. <ScrollView
  34. android:layout_marginTop="60dip"
  35. android:layout_width="match_parent"
  36. android:layout_height="match_parent">
  37. <LinearLayout
  38. android:background="@drawable/settings_background"
  39. android:orientation="vertical"
  40. android:layout_width="match_parent"
  41. android:layout_height="wrap_content">
  42.  
  43. <Button
  44. android:visibility="gone"
  45. android:id="@+id/logoutButton"
  46. android:text="Log Out"
  47. android:layout_width="match_parent"
  48. android:layout_height="wrap_content"
  49. android:textColor="#fff"
  50. android:paddingLeft="5dp"
  51. android:paddingRight="5dp"
  52. android:layout_marginRight="15dp"
  53. android:layout_marginLeft="15dp"
  54. android:layout_marginTop="10dp"
  55. android:background="@drawable/button_round_corners"/>
  56.  
  57. <RelativeLayout
  58. android:layout_width="match_parent"
  59. android:layout_height="wrap_content">
  60. <TextView
  61. android:text="User info"
  62. style="@style/HeaderSettings"
  63. android:layout_width="wrap_content"
  64. android:layout_height="wrap_content" />
  65.  
  66.  
  67. </RelativeLayout>
  68. <View
  69. android:layout_width="fill_parent"
  70. android:layout_height="1dp"
  71. android:layout_marginLeft="15dp"
  72. android:layout_marginRight="15dp"
  73. android:background="#fff"/>
  74.  
  75. <LinearLayout
  76. android:orientation="horizontal"
  77. android:layout_margin="15dp"
  78. android:layout_width="match_parent"
  79. android:layout_height="wrap_content">
  80. <de.hdodenhof.circleimageview.CircleImageView
  81. android:id="@+id/avatarImageView"
  82. android:layout_width="80dp"
  83. android:layout_height="80dp"
  84. android:paddingLeft="20dp"
  85. android:layout_marginRight="10dp"
  86. android:layout_centerVertical="true"
  87. android:layout_alignParentRight="true"
  88. app:border_width="1dp"
  89. app:border_color="#FF000000"/>
  90. <LinearLayout
  91. android:id="@+id/loginInfoContainer"
  92. android:orientation="vertical"
  93. android:layout_width="match_parent"
  94. android:layout_height="wrap_content">
  95.  
  96. <TextView
  97. android:visibility="gone"
  98. android:id="@+id/usernameTextView"
  99. android:text="User"
  100. style="@style/ValueEditTextSettings"
  101. android:textStyle="normal"
  102. android:textSize="30sp"
  103. android:gravity="left"
  104. android:layout_width="match_parent"
  105. android:layout_height="wrap_content" />
  106.  
  107. <TextView
  108. android:id="@+id/fullnameEditText"
  109. android:text="user"
  110. android:inputType="textNoSuggestions"
  111. style="@style/ValueEditTextSettings"
  112. android:textStyle="normal"
  113. android:textSize="26sp"
  114. android:gravity="left"
  115. android:layout_width="match_parent"
  116. android:layout_height="wrap_content" />
  117. <TextView
  118. android:id="@+id/telephoneEditText"
  119. android:text="user"
  120. android:inputType="textNoSuggestions"
  121. style="@style/ValueEditTextSettings"
  122. android:textStyle="normal"
  123. android:textSize="18sp"
  124. android:gravity="left"
  125. android:layout_width="match_parent"
  126. android:layout_height="wrap_content" />
  127. <TextView
  128. android:id="@+id/emailEditText"
  129. android:text="user"
  130. android:inputType="textEmailAddress|textNoSuggestions"
  131. style="@style/ValueEditTextSettings"
  132. android:textStyle="normal"
  133. android:textSize="18sp"
  134. android:gravity="left"
  135. android:layout_width="match_parent"
  136. android:layout_height="wrap_content" />
  137. </LinearLayout>
  138. </LinearLayout>
  139.  
  140. <LinearLayout
  141. android:orientation="vertical"
  142. android:layout_width="match_parent"
  143. android:layout_height="wrap_content"
  144. android:layout_marginLeft="15dp"
  145. android:layout_marginRight="15dp">
  146.  
  147. <Button
  148. android:id="@+id/myContactsButton"
  149. android:text="My Contacts >"
  150. android:textColor="#fff"
  151. android:background="@drawable/button_round_corners"
  152. android:layout_marginTop="15dp"
  153. android:layout_marginRight="15dp"
  154. android:layout_marginBottom="15dp"
  155. android:layout_width="fill_parent"
  156. android:layout_height="wrap_content" />
  157.  
  158. <TextView
  159. android:text="Set Alert Delay Time"
  160. style="@style/HeaderSettings"
  161. android:gravity="center_horizontal"
  162. android:textSize="18sp"
  163. android:layout_width="match_parent"
  164. android:layout_height="wrap_content" />
  165.  
  166. <LinearLayout
  167. android:orientation="vertical"
  168. android:layout_marginLeft="10dp"
  169. android:layout_marginRight="10dp"
  170. android:layout_width="match_parent"
  171. android:layout_height="wrap_content">
  172. <SeekBar
  173. android:id="@+id/delayBeforeAlarmSeekBar"
  174. android:progressDrawable="@drawable/seekbar_red_progress"
  175. android:thumb="@drawable/seekbar_thumb"
  176. android:maxHeight="2dp"
  177. android:layout_marginTop="3dp"
  178. android:layout_width="match_parent"
  179. android:layout_height="wrap_content"
  180. android:indeterminate="false" />
  181.  
  182. <TextView
  183. android:id="@+id/delayBeforeAlarmTextView"
  184. android:text="1 sec"
  185. android:background="#d01d1b"
  186. android:layout_marginTop="10dp"
  187. android:textColor="#fff"
  188. android:padding="5dp"
  189. android:textSize="18sp"
  190. android:textAlignment="center"
  191. android:gravity="center"
  192. android:layout_gravity="center"
  193. android:layout_width="110dp"
  194. android:layout_height="wrap_content" />
  195. </LinearLayout>
  196.  
  197. <RelativeLayout
  198. android:layout_width="match_parent"
  199. android:layout_height="wrap_content"
  200. android:paddingTop="20dp"
  201. android:paddingBottom="20dp">
  202. <TextView
  203. android:text="Send GPS coordinates"
  204. android:textColor="#fff"
  205. android:textSize="18sp"
  206. android:layout_centerVertical="true"
  207. android:layout_width="wrap_content"
  208. android:layout_height="wrap_content" />
  209. <CheckBox
  210. android:id="@+id/sendGpsCheckBox"
  211. android:layout_alignParentRight="true"
  212. android:layout_centerVertical="true"
  213. android:layout_width="wrap_content"
  214. android:layout_height="wrap_content"
  215. android:button="@drawable/checkbox_selector"
  216. android:background="@null"/>
  217. </RelativeLayout>
  218. <View
  219. android:layout_width="fill_parent"
  220. android:layout_height="1dp"
  221. android:background="#fff"/>
  222.  
  223. <RelativeLayout
  224. android:layout_width="match_parent"
  225. android:layout_height="wrap_content"
  226. android:paddingTop="20dp"
  227. android:paddingBottom="20dp">
  228. <TextView
  229. android:text="Post to social network"
  230. android:textColor="#fff"
  231. android:textSize="18sp"
  232. android:layout_centerVertical="true"
  233. android:layout_width="wrap_content"
  234. android:layout_height="wrap_content" />
  235. <CheckBox
  236. android:id="@+id/postToSocialCheckBox"
  237. android:textColor="#fff"
  238. android:textSize="18sp"
  239. android:layout_alignParentRight="true"
  240. android:layout_alignParentEnd="true"
  241. android:layout_centerVertical="true"
  242. android:layout_width="wrap_content"
  243. android:layout_height="wrap_content"
  244. android:button="@drawable/checkbox_selector"
  245. android:background="@null"/>
  246. </RelativeLayout>
  247. <View
  248. android:layout_width="fill_parent"
  249. android:layout_height="1dp"
  250. android:background="#fff"/>
  251.  
  252. <com.facebook.login.widget.LoginButton
  253. android:id="@+id/facebookLoginButton"
  254. android:layout_width="wrap_content"
  255. android:layout_height="wrap_content"
  256. android:layout_gravity="center_horizontal"
  257. android:layout_marginTop="20dp"
  258. android:layout_marginBottom="20dp" />
  259.  
  260. <Button
  261. android:id="@+id/defineMessageButton"
  262. android:text="DEFINE MESSAGE"
  263. android:textColor="#fff"
  264. android:background="@drawable/button_round_corners"
  265. android:layout_marginTop="15dp"
  266. android:layout_marginBottom="15dp"
  267. android:layout_width="fill_parent"
  268. android:layout_height="wrap_content" />
  269.  
  270. </LinearLayout>
  271.  
  272. <View
  273. android:layout_width="fill_parent"
  274. android:layout_marginLeft="15dp"
  275. android:layout_marginRight="15dp"
  276. android:layout_height="1dp"
  277. android:background="#fff"/>
  278.  
  279. <LinearLayout
  280. android:id="@+id/countryContainer"
  281. android:layout_width="match_parent"
  282. android:layout_height="wrap_content">
  283. <TextView
  284. android:text="Country: "
  285. style="@style/HeaderSettings"
  286. android:layout_width="wrap_content"
  287. android:layout_height="wrap_content" />
  288. <TextView
  289. android:id="@+id/countryNameTextView"
  290. android:text=""
  291. style="@style/HeaderSettings"
  292. android:layout_width="wrap_content"
  293. android:layout_height="wrap_content" />
  294. </LinearLayout>
  295. <View
  296. android:layout_width="fill_parent"
  297. android:layout_marginLeft="15dp"
  298. android:layout_marginRight="15dp"
  299. android:layout_height="1dp"
  300. android:background="#fff"/>
  301.  
  302. <LinearLayout
  303. android:orientation="horizontal"
  304. android:layout_width="match_parent"
  305. android:layout_height="wrap_content">
  306. <TextView
  307. android:text="Police"
  308. style="@style/HeaderSettings"
  309. android:layout_width="wrap_content"
  310. android:layout_height="wrap_content" />
  311.  
  312. <EditText
  313. android:id="@+id/policePhoneEditText"
  314. style="@style/PhoneNumberEditTextSettings"
  315. android:hint="Police phone"
  316. android:textColorHint="#bbb"
  317. android:gravity="end"
  318. android:layout_marginRight="15dp"
  319. android:layout_width="match_parent"
  320. android:layout_height="wrap_content" />
  321. </LinearLayout>
  322.  
  323. <View
  324. android:layout_width="fill_parent"
  325. android:layout_height="1dp"
  326. android:layout_marginLeft="15dp"
  327. android:layout_marginRight="15dp"
  328. android:background="#fff"/>
  329.  
  330. <LinearLayout
  331. android:orientation="horizontal"
  332. android:layout_width="match_parent"
  333. android:layout_height="wrap_content">
  334. <TextView
  335. android:text="Ambulance"
  336. style="@style/HeaderSettings"
  337. android:layout_width="wrap_content"
  338. android:layout_height="wrap_content" />
  339.  
  340. <EditText
  341. android:id="@+id/ambulancePhoneEditText"
  342. style="@style/PhoneNumberEditTextSettings"
  343. android:hint="Ambulance phone"
  344. android:textColorHint="#bbb"
  345. android:gravity="end"
  346. android:layout_width="match_parent"
  347. android:layout_height="wrap_content"
  348. android:layout_marginRight="15dp"/>
  349. </LinearLayout>
  350. <View
  351. android:layout_width="fill_parent"
  352. android:layout_marginLeft="15dp"
  353. android:layout_marginRight="15dp"
  354. android:layout_height="1dp"
  355. android:background="#fff"/>
  356.  
  357. <Button
  358. android:id="@+id/alertSoundButton"
  359. android:layout_below="@+id/alertSoundHeader"
  360. android:text="Siren"
  361. style="@style/HeaderSettings"
  362. android:textAlignment="textStart"
  363. android:gravity="start"
  364. android:textSize="25sp"
  365. android:textColor="#fff"
  366. android:paddingTop="15dp"
  367. android:paddingBottom="15dp"
  368. android:layout_marginRight="15dp"
  369. android:background="@drawable/button_arrow_right"
  370. android:layout_width="match_parent"
  371. android:layout_height="wrap_content" />
  372. <View
  373. android:layout_width="fill_parent"
  374. android:layout_marginLeft="15dp"
  375. android:layout_marginRight="15dp"
  376. android:layout_height="1dp"
  377. android:background="#fff"/>
  378.  
  379. <LinearLayout
  380. android:orientation="vertical"
  381. android:layout_marginLeft="15dp"
  382. android:layout_marginRight="15dp"
  383. android:layout_width="match_parent"
  384. android:layout_height="wrap_content">
  385. <RelativeLayout
  386. android:layout_width="match_parent"
  387. android:layout_height="wrap_content"
  388. android:paddingTop="20dp"
  389. android:paddingBottom="20dp">
  390. <TextView
  391. android:text="Shaking"
  392. android:textColor="#fff"
  393. android:textSize="18sp"
  394. android:layout_centerVertical="true"
  395. android:layout_width="wrap_content"
  396. android:layout_height="wrap_content" />
  397. <CheckBox
  398. android:id="@+id/shakingCheckBox"
  399. android:layout_alignParentRight="true"
  400. android:layout_alignParentEnd="true"
  401. android:layout_centerVertical="true"
  402. android:layout_width="wrap_content"
  403. android:layout_height="wrap_content"
  404. android:button="@drawable/checkbox_selector"
  405. android:background="@null"/>
  406. </RelativeLayout>
  407. <RelativeLayout
  408. android:layout_width="match_parent"
  409. android:layout_height="wrap_content"
  410. android:paddingTop="20dp"
  411. android:paddingBottom="20dp">
  412. <TextView
  413. android:text="Flashing blinking"
  414. android:textColor="#fff"
  415. android:textSize="18sp"
  416. style="@style/CheckBoxTextViewSettings"
  417. android:layout_centerVertical="true"
  418. android:layout_width="wrap_content"
  419. android:layout_height="wrap_content" />
  420. <CheckBox
  421. android:id="@+id/flashingBlinkingCheckBox"
  422. android:layout_alignParentRight="true"
  423. android:layout_centerVertical="true"
  424. android:layout_width="wrap_content"
  425. android:layout_height="wrap_content"
  426. android:button="@drawable/checkbox_selector"
  427. android:background="@null"/>
  428. </RelativeLayout>
  429. <RelativeLayout
  430. android:layout_width="match_parent"
  431. android:layout_height="wrap_content"
  432. android:paddingTop="20dp"
  433. android:paddingBottom="20dp">
  434. <TextView
  435. android:text="Screen flashing"
  436. android:textColor="#fff"
  437. android:textSize="18sp"
  438. style="@style/CheckBoxTextViewSettings"
  439. android:layout_centerVertical="true"
  440. android:layout_width="wrap_content"
  441. android:layout_height="wrap_content" />
  442. <CheckBox
  443. android:id="@+id/screenFlashingCheckBox"
  444. android:layout_alignParentRight="true"
  445. android:layout_centerVertical="true"
  446. android:layout_width="wrap_content"
  447. android:layout_height="wrap_content"
  448. android:button="@drawable/checkbox_selector"
  449. android:background="@null"/>
  450. </RelativeLayout>
  451. <RelativeLayout
  452. android:layout_width="match_parent"
  453. android:layout_height="wrap_content"
  454. android:paddingTop="20dp"
  455. android:paddingBottom="20dp">
  456. <TextView
  457. android:text="Maximize volume"
  458. android:textColor="#fff"
  459. android:textSize="18sp"
  460. style="@style/CheckBoxTextViewSettings"
  461. android:layout_centerVertical="true"
  462. android:layout_width="wrap_content"
  463. android:layout_height="wrap_content" />
  464. <CheckBox
  465. android:id="@+id/maximizeVolumeCheckBox"
  466. android:layout_alignParentRight="true"
  467. android:layout_centerVertical="true"
  468. android:layout_width="wrap_content"
  469. android:layout_height="wrap_content"
  470. android:button="@drawable/checkbox_selector"
  471. android:background="@null"/>
  472. </RelativeLayout>
  473. </LinearLayout>
  474.  
  475. <LinearLayout
  476. android:orientation="vertical"
  477. android:layout_width="match_parent"
  478. android:layout_height="wrap_content"
  479. android:layout_marginBottom="30dp">
  480. <LinearLayout
  481. android:orientation="horizontal"
  482. android:layout_width="match_parent"
  483. android:layout_height="wrap_content">
  484.  
  485. <Button
  486. android:id="@+id/rateButton"
  487. android:text="RATE AIDMAID"
  488. android:background="@drawable/button_round_corners"
  489. android:textColor="#fff"
  490. android:layout_weight="0.5"
  491. android:layout_marginLeft="20dp"
  492. android:layout_marginTop="40dp"
  493. android:layout_marginRight="5dp"
  494. android:layout_width="0dp"
  495. android:layout_height="wrap_content"/>
  496. <Button
  497. android:id="@+id/contactUsButton"
  498. android:text="CONTACT US"
  499. android:background="@drawable/button_round_corners"
  500. android:textColor="#fff"
  501. android:layout_weight="0.5"
  502. android:layout_marginLeft="5dp"
  503. android:layout_marginTop="40dp"
  504. android:layout_marginRight="20dp"
  505. android:layout_width="0dp"
  506. android:layout_height="wrap_content"/>
  507. </LinearLayout>
  508.  
  509. <LinearLayout
  510. android:orientation="horizontal"
  511. android:layout_marginBottom="30dp"
  512. android:layout_width="match_parent"
  513. android:layout_height="wrap_content">
  514.  
  515. <Button
  516. android:id="@+id/termsOfUseButton"
  517. android:text="TERMS OF USE"
  518. android:background="@drawable/button_round_corners"
  519. android:textColor="#fff"
  520. android:layout_weight="0.5"
  521. android:layout_marginLeft="20dp"
  522. android:layout_marginTop="20dp"
  523. android:layout_marginRight="5dp"
  524. android:layout_width="0dp"
  525. android:layout_height="wrap_content"/>
  526. <Button
  527. android:id="@+id/privacyPolicyButton"
  528. android:text="PRIVACY POLICY"
  529. android:background="@drawable/button_round_corners"
  530. android:textColor="#fff"
  531. android:layout_weight="0.5"
  532. android:layout_marginLeft="5dp"
  533. android:layout_marginStart="5dp"
  534. android:layout_marginTop="20dp"
  535. android:layout_marginRight="20dp"
  536. android:layout_marginEnd="20dp"
  537. android:layout_width="0dp"
  538. android:layout_height="wrap_content"/>
  539. </LinearLayout>
  540. </LinearLayout>
  541. </LinearLayout>
  542. </ScrollView>
  543.  
  544. </FrameLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement