fragment_services.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <RelativeLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content">
  9. <TextView
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:layout_alignParentEnd="true"
  13. android:layout_alignParentLeft="true"
  14. android:layout_alignParentRight="false"
  15. android:layout_marginLeft="15dp"
  16. android:layout_marginTop="20dp"
  17. android:layout_weight="1"
  18. android:text="@string/current_connection"
  19. android:textSize="18dp"
  20. android:textStyle="bold" />
  21. <ImageView
  22. android:id="@+id/services_button_connection_info"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:layout_alignParentEnd="true"
  26. android:layout_alignParentRight="true"
  27. android:layout_alignParentTop="true"
  28. android:layout_marginTop="5dp"
  29. android:layout_marginRight="12dp"
  30. android:src="@android:drawable/ic_menu_info_details" />
  31. </RelativeLayout>
  32. <View
  33. android:layout_width="fill_parent"
  34. android:layout_height="1dp"
  35. android:layout_marginLeft="15dp"
  36. android:layout_marginRight="15dp"
  37. android:background="@android:color/darker_gray" />
  38. <RelativeLayout
  39. android:layout_width="match_parent"
  40. android:layout_height="wrap_content" >
  41. <TextView
  42. android:id="@+id/services_text_name"
  43. android:layout_width="wrap_content"
  44. android:layout_height="wrap_content"
  45. android:layout_alignParentTop="true"
  46. android:layout_centerHorizontal="true"
  47. android:layout_gravity="center_horizontal"
  48. android:layout_marginTop="21dp"
  49. android:textAppearance="?android:attr/textAppearanceLarge"
  50. android:textSize="26sp" />
  51. </RelativeLayout>
  52. <RelativeLayout
  53. android:layout_width="fill_parent"
  54. android:layout_height="wrap_content"
  55. android:baselineAligned="false"
  56. android:orientation="horizontal"
  57. android:weightSum="1" >
  58. <TextView
  59. android:layout_width="wrap_content"
  60. android:layout_height="wrap_content"
  61. android:layout_alignParentEnd="true"
  62. android:layout_alignParentLeft="true"
  63. android:layout_alignParentRight="false"
  64. android:layout_marginLeft="15dp"
  65. android:layout_marginTop="35dp"
  66. android:layout_weight="1"
  67. android:text="@string/monitor_services"
  68. android:textStyle="bold"
  69. android:textSize="20dp"/>
  70. <Switch
  71. android:id="@+id/service_switch_connection"
  72. android:layout_width="wrap_content"
  73. android:layout_height="wrap_content"
  74. android:layout_alignParentBottom="false"
  75. android:layout_alignParentEnd="false"
  76. android:layout_alignParentLeft="false"
  77. android:layout_alignParentRight="true"
  78. android:layout_alignParentTop="false"
  79. android:layout_gravity="right"
  80. android:layout_marginLeft="0dp"
  81. android:layout_marginRight="15dp"
  82. android:layout_marginTop="30dp"
  83. android:layout_marginBottom="0dp"
  84. android:layout_weight="1"
  85. android:checked="false"
  86. android:textSize="10dp" />
  87. </RelativeLayout>
  88. <View
  89. android:layout_width="fill_parent"
  90. android:layout_height="1dp"
  91. android:layout_marginLeft="15dp"
  92. android:layout_marginRight="15dp"
  93. android:background="@android:color/darker_gray" />
  94. <ListView android:layout_width="fill_parent"
  95. android:layout_height="wrap_content"
  96. android:id="@+id/services_list_view"
  97. android:layout_marginLeft="15dp"
  98. android:layout_marginRight="15dp"
  99. >
  100. </ListView>
  101. </LinearLayout>