Newer
Older
SafetyAuxiliary / app / src / main / res / layout / fragment_hidden_trouble.xml
pengxianhong on 5 Jun 2024 915 bytes 调整几个细节
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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">

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scrollbars="vertical"
        app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />

    <TextView
        android:id="@+id/tipsView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="暂未发现此场景下的安全隐患,请继续保持!"
        android:textColor="@color/white"
        android:textSize="@dimen/sp_18" />
</RelativeLayout>