activity_main.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context=".MainActivity">
  8. <LinearLayout
  9. android:id="@+id/view_compass"
  10. android:layout_width="fill_parent"
  11. android:layout_height="fill_parent"
  12. android:background="@mipmap/background_light"
  13. android:orientation="vertical"
  14. app:layout_constraintStart_toStartOf="parent"
  15. app:layout_constraintTop_toTopOf="parent">
  16. <LinearLayout
  17. android:layout_width="fill_parent"
  18. android:layout_height="0dip"
  19. android:layout_weight="1"
  20. android:orientation="vertical">
  21. <FrameLayout
  22. android:layout_width="fill_parent"
  23. android:layout_height="wrap_content"
  24. android:background="@mipmap/prompt">
  25. <LinearLayout
  26. android:layout_width="fill_parent"
  27. android:layout_height="wrap_content"
  28. android:layout_gravity="center_horizontal"
  29. android:layout_marginTop="70dip"
  30. android:orientation="horizontal">
  31. <LinearLayout
  32. android:id="@+id/layout_direction"
  33. android:layout_width="0dip"
  34. android:layout_height="wrap_content"
  35. android:layout_weight="1"
  36. android:gravity="right"
  37. android:orientation="horizontal" />
  38. <ImageView
  39. android:layout_width="20dip"
  40. android:layout_height="fill_parent"/>
  41. <LinearLayout
  42. android:id="@+id/layout_angle"
  43. android:layout_width="0dip"
  44. android:layout_height="wrap_content"
  45. android:layout_weight="1"
  46. android:gravity="left"
  47. android:orientation="horizontal" />
  48. </LinearLayout>
  49. </FrameLayout>
  50. <LinearLayout
  51. android:layout_width="fill_parent"
  52. android:layout_height="0dip"
  53. android:layout_weight="1"
  54. android:orientation="vertical">
  55. <FrameLayout
  56. android:layout_width="fill_parent"
  57. android:layout_height="wrap_content"
  58. android:layout_gravity="center">
  59. <ImageView
  60. android:layout_width="wrap_content"
  61. android:layout_height="wrap_content"
  62. android:layout_gravity="center"
  63. android:src="@mipmap/background_compass" />
  64. <me.yoqi.android.compass.ui.CompassView
  65. android:id="@+id/compass_pointer"
  66. android:layout_width="wrap_content"
  67. android:layout_height="wrap_content"
  68. android:layout_gravity="center"
  69. android:src="@mipmap/compass" />
  70. <ImageView
  71. android:layout_width="wrap_content"
  72. android:layout_height="wrap_content"
  73. android:layout_gravity="center"
  74. android:src="@mipmap/miui_cover" />
  75. </FrameLayout>
  76. </LinearLayout>
  77. </LinearLayout>
  78. <FrameLayout
  79. android:id="@+id/location_layout"
  80. android:layout_width="fill_parent"
  81. android:layout_height="wrap_content">
  82. <LinearLayout
  83. android:layout_width="fill_parent"
  84. android:layout_height="wrap_content"
  85. android:background="@mipmap/background_bottom"
  86. android:orientation="vertical"/>
  87. <TextView
  88. android:id="@+id/textview_location"
  89. android:layout_width="wrap_content"
  90. android:layout_height="wrap_content"
  91. android:layout_gravity="center"
  92. android:text="@string/getting_location"
  93. android:textAppearance="?android:attr/textAppearanceMedium"
  94. android:textColor="#7FFFFFFF" />
  95. </FrameLayout>
  96. </LinearLayout>
  97. </androidx.constraintlayout.widget.ConstraintLayout>