<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/rootView" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/mainBackColor" android:orientation="vertical"> <com.pengxh.kt.lite.widget.TitleBarView android:id="@+id/titleView" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/mainThemeColor" app:tbv_right_image="@drawable/ic_exit" 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" /> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <com.scwang.smartrefresh.layout.SmartRefreshLayout android:id="@+id/refreshView" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1"> <com.scwang.smartrefresh.layout.header.ClassicsHeader android:layout_width="match_parent" android:layout_height="wrap_content" /> <androidx.recyclerview.widget.RecyclerView android:id="@+id/recyclerView" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginVertical="@dimen/dp_7" app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" /> <com.scwang.smartrefresh.layout.footer.ClassicsFooter android:layout_width="match_parent" android:layout_height="wrap_content" /> </com.scwang.smartrefresh.layout.SmartRefreshLayout> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="@dimen/dp_10" android:text="到达现场后,先把设备架好。APP连接上一体机WiFi后,会有两个提示“指令连接成功,现在可以下发指令了”和“AI连接成功”,如果没出现,杀掉APP重进,如果还没出现,重启一体机再试。" android:textColor="@color/orangeTextColor" android:textSize="@dimen/sp_12" /> </LinearLayout> </LinearLayout>