12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?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"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/purple_f5"
- android:orientation="vertical"
- tools:context="com.zhong.inspection.ui.VagueActivity">
- <include
- android:id="@+id/tool_bar"
- layout="@layout/title_toolbar" />
- <RelativeLayout
- android:id="@+id/rel_view_two"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:background="@drawable/ic_menu_bgm"
- android:gravity="center_vertical"
- android:paddingLeft="10dp"
- android:paddingRight="10dp">
- <ImageView
- android:id="@+id/imgViews"
- android:layout_width="25dp"
- android:layout_height="25dp"
- android:layout_centerVertical="true"
- android:layout_marginLeft="6dp"
- android:visibility="gone"
- android:background="@mipmap/icon_sou_suo" />
- <EditText
- android:id="@+id/edInputs"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_centerVertical="true"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_toLeftOf="@+id/tvCancel"
- android:layout_toRightOf="@+id/imgViews"
- android:background="@null"
- android:gravity="left"
- android:singleLine="true"
- android:imeOptions="actionSearch"
- android:hint="请输入 名称/ cas号"
- android:padding="10dp"
- android:textSize="12sp" />
- <ImageView
- android:id="@+id/tvCancel"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:padding="6dp"
- android:src="@mipmap/icon_clae"/>
- </RelativeLayout>
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/recyclerView"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="10dp"
- android:layout_marginRight="10dp" />
- </LinearLayout>
|