<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/lib_dp_5"
app:cardCornerRadius="@dimen/dp_5">
<LinearLayout
android:id="@+id/rootView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/lib_text_color"
android:orientation="vertical">
<com.pengxh.kt.lite.widget.TitleBarView
android:id="@+id/titleView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tbv_right_image="@drawable/ic_close_white"
app:tbv_show_left_image="false"
app:tbv_show_right_image="true"
app:tbv_smaller_title="true"
app:tbv_text="卫星定位信号"
app:tbv_text_color="@color/white" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/borderThickness"
android:background="@color/white" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="@dimen/dp_35"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingHorizontal="@dimen/dp_5">
<LinearLayout
android:layout_width="@dimen/dp_70"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_satellite" />
</LinearLayout>
<View
android:layout_width="@dimen/borderThickness"
android:layout_height="match_parent"
android:background="@color/white" />
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:orientation="horizontal">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_signal" />
</LinearLayout>
<View
android:layout_width="@dimen/borderThickness"
android:layout_height="match_parent"
android:background="@color/white" />
<LinearLayout
android:layout_width="@dimen/dp_110"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="horizontal">
<ImageView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/ic_right_red" />
<View
android:layout_width="@dimen/borderThickness"
android:layout_height="match_parent"
android:background="@color/white" />
<ImageView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/ic_azimuth" />
<View
android:layout_width="@dimen/borderThickness"
android:layout_height="match_parent"
android:background="@color/white" />
<ImageView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/ic_elevation" />
</LinearLayout>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="@dimen/borderThickness"
android:background="@color/white" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/borderThickness"
android:background="@color/white" />
<TextView
android:id="@+id/locationView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/dp_5"
android:text="卫星数量太少,无法定位"
android:textColor="@color/white" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/borderThickness"
android:background="@color/white" />
<TextView
android:id="@+id/gdGpsView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/dp_5"
android:text="高德定位"
android:textColor="@color/white" />
</LinearLayout>
</androidx.cardview.widget.CardView>