123456789101112131415161718192021222324252627282930313233343536373839 |
- <?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"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:orientation="vertical"
- tools:context="com.zhong.inspection.ui.MainActivity">
- <include
- android:id="@+id/tool_bar"
- layout="@layout/title_toolbar" />
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/rv_view"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_above="@+id/tv_1"
- android:layout_below="@+id/tool_bar"
- android:layout_marginTop="50dp"
- android:layout_marginBottom="20dp" />
- <TextView
- android:id="@+id/tv_1"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_marginBottom="30dp"
- android:gravity="center"
- android:padding="10dp"
- android:text="江苏忠江智能科技有限公司"
- android:textColor="@color/black"
- android:textSize="14sp" />
- </RelativeLayout>
|