12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="540dp"
- android:layout_marginTop="0.5dp"
- android:background="@drawable/ic_bgm_college"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:paddingLeft="10dp"
- android:paddingRight="10dp">
- <TextView
- android:id="@+id/tv_cancel"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:gravity="center"
- android:text="取消"
- android:textColor="@color/black"
- android:textSize="16sp" />
- <TextView
- android:id="@+id/tv_affirm"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:text="搜索"
- android:textColor="@color/purple_fa"
- android:textSize="16sp" />
- </RelativeLayout>
- <RelativeLayout
- android:id="@+id/rel_view"
- android:layout_width="match_parent"
- android:layout_height="35dp"
- android:layout_marginLeft="22dp"
- android:layout_marginRight="22dp"
- android:background="@drawable/ic_bgm_edit_user">
- <EditText
- android:id="@+id/ed_subject_name"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginLeft="4dp"
- android:layout_marginRight="30dp"
- android:background="@null"
- android:gravity="start"
- android:hint="请输入实验室或房间号"
- android:padding="7dp"
- android:textColorHint="@color/black"
- android:textSize="14sp" />
- </RelativeLayout>
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/rv_recycler_view"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- </LinearLayout>
- </LinearLayout>
|