New file |
| | |
| | | <?xml version="1.0" encoding="utf-8"?>
|
| | | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
| | | android:orientation="vertical" android:layout_width="match_parent"
|
| | | android:layout_height="match_parent">
|
| | | <RelativeLayout
|
| | | android:layout_width="match_parent"
|
| | | android:layout_height="wrap_content">
|
| | | <TextView
|
| | | android:id="@+id/visitor_register_back"
|
| | | android:layout_width="wrap_content"
|
| | | android:layout_height="wrap_content"
|
| | | android:text="< 来访登记"
|
| | | android:layout_marginLeft="3dp"
|
| | | android:layout_centerVertical="true"
|
| | | android:textColor="#8BD2F6"
|
| | | />
|
| | | <RadioGroup
|
| | | android:id="@+id/visitor_register_radio"
|
| | | android:layout_width="match_parent"
|
| | | android:layout_height="51dp"
|
| | | android:gravity="center"
|
| | | android:orientation="horizontal">
|
| | | <RadioButton
|
| | | android:id="@+id/visitor_register_rb_left"
|
| | | android:button="@null"
|
| | | android:text="来访人员"
|
| | | android:textColor="@color/tab_visitor_register"
|
| | | android:background="@drawable/visitor_register_rb_left"
|
| | | android:layout_width="wrap_content"
|
| | | android:layout_height="wrap_content" />
|
| | | <RadioButton
|
| | | android:id="@+id/visitor_register_rb_right"
|
| | | android:button="@null"
|
| | | android:text="被访人员"
|
| | | android:checked="true"
|
| | | android:textColor="@color/tab_visitor_register"
|
| | | android:background="@drawable/visitor_register_rb_right"
|
| | | android:layout_width="wrap_content"
|
| | | android:layout_height="wrap_content" />
|
| | | </RadioGroup>
|
| | | </RelativeLayout>
|
| | | <LinearLayout
|
| | | android:layout_width="match_parent"
|
| | | android:layout_height="match_parent"
|
| | | android:background="@color/colorSearch"
|
| | | android:orientation="vertical">
|
| | | <EditText
|
| | | android:id="@+id/visitor_register_search_et"
|
| | | android:layout_width="match_parent"
|
| | | android:layout_height="wrap_content"
|
| | | android:layout_marginTop="5.5dp"
|
| | | android:layout_marginBottom="5.5dp"
|
| | | android:layout_marginLeft="4dp"
|
| | | android:layout_marginRight="4dp"
|
| | | android:gravity="center"
|
| | | android:hint="Search"
|
| | | android:textColorHint="@color/colorSearch"
|
| | | android:background="@drawable/visitor_register_search_et"/>
|
| | | <LinearLayout
|
| | | android:layout_width="match_parent"
|
| | | android:layout_height="match_parent"
|
| | | android:background="@android:color/white"
|
| | | android:orientation="vertical">
|
| | | <LinearLayout
|
| | | android:id="@+id/visitor_register_check_class_ll"
|
| | | android:orientation="horizontal"
|
| | | android:gravity="center"
|
| | | android:visibility="gone"
|
| | | android:layout_width="match_parent"
|
| | | android:layout_height="wrap_content">
|
| | | <TextView
|
| | | android:layout_width="wrap_content"
|
| | | android:layout_height="wrap_content"
|
| | | android:textColor="@color/colorText_5"
|
| | | android:textSize="@dimen/text_size_big"
|
| | | android:text="@string/check_class"/>
|
| | |
|
| | | <RadioGroup
|
| | | android:id="@+id/visitor_register_check_class"
|
| | | android:layout_width="wrap_content"
|
| | | android:layout_height="wrap_content"
|
| | | android:gravity="center"
|
| | | android:orientation="horizontal">
|
| | | <RadioButton
|
| | | android:id="@+id/visitor_register_check_name"
|
| | | android:text="按姓名"
|
| | | android:textColor="@color/colorText_b"
|
| | | android:checked="true"
|
| | | android:textSize="@dimen/text_size_big"
|
| | | android:layout_width="wrap_content"
|
| | | android:layout_height="wrap_content" />
|
| | | <RadioButton
|
| | | android:id="@+id/visitor_register_check_department"
|
| | | android:text="按部门"
|
| | | android:textSize="@dimen/text_size_big"
|
| | | android:textColor="@color/colorText_b"
|
| | | android:layout_width="wrap_content"
|
| | | android:layout_height="wrap_content" />
|
| | | </RadioGroup>
|
| | | </LinearLayout>
|
| | | <com.camnter.easyrecyclerview.widget.EasyRecyclerView
|
| | | android:id="@+id/visitor_register_recycler"
|
| | | android:layout_width="match_parent"
|
| | | android:layout_height="match_parent"></com.camnter.easyrecyclerview.widget.EasyRecyclerView>
|
| | | </LinearLayout>
|
| | | </LinearLayout>
|
| | | </LinearLayout> |