|
@@ -0,0 +1,240 @@
|
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
+<layout>
|
|
|
|
+
|
|
|
|
+ <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:background="#EAF2F9">
|
|
|
|
+
|
|
|
|
+ <LinearLayout
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
+
|
|
|
|
+ <RadioGroup
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="40px"
|
|
|
|
+ android:layout_marginTop="10px"
|
|
|
|
+ android:background="#ffffff"
|
|
|
|
+ android:orientation="horizontal"
|
|
|
|
+ android:visibility="gone">
|
|
|
|
+
|
|
|
|
+ <RadioButton
|
|
|
|
+ android:id="@+id/basic_information_radiob"
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:button="@null"
|
|
|
|
+ android:checked="true"
|
|
|
|
+ android:drawableBottom="@drawable/selt_call_records_icon"
|
|
|
|
+ android:drawablePadding="1px"
|
|
|
|
+ android:gravity="center"
|
|
|
|
+ android:text="基础信息"
|
|
|
|
+ android:textSize="14px" />
|
|
|
|
+
|
|
|
|
+ <RadioButton
|
|
|
|
+ android:id="@+id/family_member_radiobw"
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:button="@null"
|
|
|
|
+ android:drawableBottom="@drawable/selt_call_records_icon"
|
|
|
|
+ android:drawablePadding="1px"
|
|
|
|
+ android:gravity="center"
|
|
|
|
+ android:text="家庭成员"
|
|
|
|
+ android:textSize="14px" />
|
|
|
|
+
|
|
|
|
+ <RadioButton
|
|
|
|
+ android:id="@+id/interaction_radiobw"
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:button="@null"
|
|
|
|
+ android:drawableBottom="@drawable/selt_call_records_icon"
|
|
|
|
+ android:drawablePadding="1px"
|
|
|
|
+ android:gravity="center"
|
|
|
|
+ android:text="交互"
|
|
|
|
+ android:textSize="14px" />
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ </RadioGroup>
|
|
|
|
+
|
|
|
|
+ <RelativeLayout
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="168px"
|
|
|
|
+ android:layout_marginTop="6px"
|
|
|
|
+ android:background="#ffffff">
|
|
|
|
+
|
|
|
|
+ <ImageView
|
|
|
|
+ android:id="@+id/head_portrait_imagev"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginLeft="10px"
|
|
|
|
+ android:layout_marginTop="10px"
|
|
|
|
+ android:src="@drawable/kong_chuang" />
|
|
|
|
+
|
|
|
|
+ <RelativeLayout
|
|
|
|
+ android:id="@+id/basic_information_relalyou"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginTop="19px"
|
|
|
|
+ android:layout_marginRight="10px"
|
|
|
|
+ android:layout_marginLeft="10px"
|
|
|
|
+ android:layout_toRightOf="@+id/head_portrait_imagev">
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/name_tv"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginLeft="8px"
|
|
|
|
+ android:text="---"
|
|
|
|
+ android:textSize="16px" />
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/age_tv"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginLeft="8px"
|
|
|
|
+ android:layout_toRightOf="@+id/name_tv"
|
|
|
|
+ android:textColor="#B4B4B4"
|
|
|
|
+ android:textSize="12px" />
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/roomNumber"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
|
+ android:text="--"
|
|
|
|
+ android:textColor="#F78B8F"
|
|
|
|
+ android:textSize="16px" />
|
|
|
|
+
|
|
|
|
+ </RelativeLayout>
|
|
|
|
+
|
|
|
|
+ <LinearLayout
|
|
|
|
+ android:id="@+id/baby_information_linlayout"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_below="@+id/basic_information_relalyou"
|
|
|
|
+ android:layout_alignLeft="@+id/basic_information_relalyou"
|
|
|
|
+ android:layout_marginTop="4px">
|
|
|
|
+
|
|
|
|
+ <ImageView
|
|
|
|
+ android:id="@+id/gender_imagev"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_gravity="center_vertical" />
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/baby_name_tv"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginLeft="8px"
|
|
|
|
+ android:layout_toRightOf="@+id/name_tv"
|
|
|
|
+ android:text="--"
|
|
|
|
+ android:textColor="#B4B4B4"
|
|
|
|
+ android:textSize="12px"
|
|
|
|
+ android:visibility="invisible"/>
|
|
|
|
+ </LinearLayout>
|
|
|
|
+
|
|
|
|
+ <RelativeLayout
|
|
|
|
+ android:id="@+id/time_relalyout"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginRight="10px"
|
|
|
|
+ android:layout_below="@+id/baby_information_linlayout"
|
|
|
|
+ android:layout_marginTop="20px">
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginLeft="8px"
|
|
|
|
+ android:text="入住日期:"
|
|
|
|
+ android:textSize="14px" />
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/time_tv"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
|
+ android:layout_marginLeft="8px"
|
|
|
|
+ android:text="----"
|
|
|
|
+ android:textColor="#B4B4B4"
|
|
|
|
+ android:textSize="14px" />
|
|
|
|
+
|
|
|
|
+ </RelativeLayout>
|
|
|
|
+
|
|
|
|
+ <RelativeLayout
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
+ android:layout_marginRight="10px"
|
|
|
|
+ android:layout_below="@+id/time_relalyout"
|
|
|
|
+ android:layout_marginTop="14px">
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginLeft="8px"
|
|
|
|
+ android:text="手机号:"
|
|
|
|
+ android:textSize="14px" />
|
|
|
|
+
|
|
|
|
+ <ImageView
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginRight="2px"
|
|
|
|
+ android:layout_centerVertical="true"
|
|
|
|
+ android:layout_toLeftOf="@+id/mobile_tv"
|
|
|
|
+ android:src="@drawable/dian_hua" />
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/mobile_tv"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
|
+ android:layout_marginLeft="8px"
|
|
|
|
+ android:text="暂无"
|
|
|
|
+ android:textColor="#B4B4B4"
|
|
|
|
+ android:textSize="14px" />
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ </RelativeLayout>
|
|
|
|
+
|
|
|
|
+ </RelativeLayout>
|
|
|
|
+
|
|
|
|
+ <android.support.v7.widget.RecyclerView
|
|
|
|
+ android:id="@+id/right_remark_recyv"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:background="#EAF2F9">
|
|
|
|
+
|
|
|
|
+ </android.support.v7.widget.RecyclerView>
|
|
|
|
+
|
|
|
|
+ </LinearLayout>
|
|
|
|
+
|
|
|
|
+ <LinearLayout
|
|
|
|
+ android:id="@+id/call_the_voice_linlyout"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="46px"
|
|
|
|
+ android:layout_alignParentBottom="true"
|
|
|
|
+ android:layout_marginLeft="10px"
|
|
|
|
+ android:layout_marginRight="10px"
|
|
|
|
+ android:gravity="center"
|
|
|
|
+ android:orientation="horizontal"
|
|
|
|
+ android:layout_marginBottom="6px"
|
|
|
|
+ android:background="#ffffff">
|
|
|
|
+
|
|
|
|
+ <ImageView
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:src="@drawable/hu_jiao" />
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/call_the_voice_tv"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:textSize="16px"
|
|
|
|
+ android:layout_marginLeft="8px"
|
|
|
|
+ android:text="呼叫" />
|
|
|
|
+ </LinearLayout>
|
|
|
|
+ </RelativeLayout>
|
|
|
|
+</layout>
|