<?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">
|
<ScrollView
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:gravity="center_horizontal"
|
android:orientation="vertical">
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="76dp"
|
android:gravity="right|center_vertical"
|
android:orientation="horizontal">
|
<ImageView
|
android:id="@+id/visitor_register_print"
|
android:layout_width="@dimen/view_size_50"
|
android:layout_height="@dimen/view_size_50"
|
android:src="@mipmap/ic_launcher"/>
|
<ImageView
|
android:id="@+id/visitor_register_add"
|
android:layout_width="@dimen/view_size_50"
|
android:layout_height="@dimen/view_size_50"
|
android:layout_marginLeft="20dp"
|
android:src="@mipmap/ic_launcher"/>
|
<ImageView
|
android:id="@+id/visitor_register_save"
|
android:layout_width="@dimen/view_size_50"
|
android:layout_height="@dimen/view_size_50"
|
android:layout_marginLeft="20dp"
|
android:layout_marginRight="@dimen/view_size_50"
|
android:src="@mipmap/ic_launcher"/>
|
</LinearLayout>
|
<LinearLayout
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal">
|
<com.bsk.zhangbo.demoforbsk.widget.VisitorView
|
android:id="@+id/visitor_from"
|
android:layout_width="254dp"
|
android:layout_height="350dp"
|
android:background="@drawable/card_bcg"
|
android:orientation="vertical"></com.bsk.zhangbo.demoforbsk.widget.VisitorView>
|
|
<com.bsk.zhangbo.demoforbsk.widget.VisitorView
|
android:id="@+id/visitor_to"
|
android:layout_width="254dp"
|
android:layout_height="350dp"
|
android:background="@drawable/card_bcg"
|
android:layout_marginLeft="103dp"
|
android:orientation="vertical"></com.bsk.zhangbo.demoforbsk.widget.VisitorView>
|
</LinearLayout>
|
<LinearLayout
|
android:layout_width="611dp"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="20dp"
|
android:orientation="vertical">
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:textColor="@color/colorPrimary"
|
android:textStyle="bold"
|
android:textSize="@dimen/text_size_big"
|
android:text="@string/visitor_reason"/>
|
<TextView
|
android:id="@+id/visitor_reason_tv"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@null"
|
android:layout_marginTop="15dp"
|
android:layout_marginBottom="12dp"
|
android:text="对账"
|
android:textSize="@dimen/text_size_normal"
|
android:textColor="@color/colorText_b"/>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/view_size_1"
|
android:background="@color/colorText_b"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:textColor="@color/colorPrimary"
|
android:textStyle="bold"
|
android:layout_marginTop="20dp"
|
android:textSize="@dimen/text_size_big"
|
android:text="@string/visitor_remark"/>
|
<EditText
|
android:id="@+id/visitor_remark_et"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@null"
|
android:layout_marginTop="15dp"
|
android:layout_marginBottom="12dp"
|
android:hint="暂无"
|
android:textColorHint="@color/colorText_b"
|
android:textSize="@dimen/text_size_normal"
|
android:textColor="@color/colorText_b"/>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/view_size_1"
|
android:background="@color/colorText_b"/>
|
</LinearLayout>
|
</LinearLayout>
|
</ScrollView>
|
</LinearLayout>
|