整体模块修改,问题修复
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
@@ -0,0 +1,89 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout 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">
|
||||
|
||||
<data>
|
||||
|
||||
</data>
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:background="#EEEEEE"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<include
|
||||
android:id="@+id/toolbar_lay"
|
||||
layout="@layout/lay_title_bar"
|
||||
app:darkStyle="@{true}"
|
||||
app:title="@{@string/title_all_doctor_info}" />
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<View
|
||||
android:background="#21BEBD"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="170dp"/>
|
||||
<ImageView
|
||||
android:id="@+id/iv_icon"
|
||||
android:layout_width="60dp"
|
||||
android:layout_height="60dp"
|
||||
android:layout_marginLeft="16dp"
|
||||
android:layout_marginTop="10dp"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="28dp"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="@dimen/txt21"
|
||||
android:layout_toRightOf="@+id/iv_icon"
|
||||
tools:text="小助手"
|
||||
android:textStyle="bold"
|
||||
/>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_marginLeft="15dp"
|
||||
android:layout_marginRight="15dp"
|
||||
android:layout_marginTop="23dp"
|
||||
android:layout_below="@+id/iv_icon"
|
||||
android:background="@drawable/rectangle_round_corner10_white"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_desc_key"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_15"
|
||||
android:layout_marginRight="@dimen/dp_15"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt17"
|
||||
android:textStyle="bold"
|
||||
android:text="全科医生简介"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_desc"
|
||||
android:layout_marginTop="18dp"
|
||||
android:lineSpacingExtra="@dimen/dp_8"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_15"
|
||||
android:layout_marginRight="@dimen/dp_15"
|
||||
android:layout_marginBottom="@dimen/dp_40"
|
||||
android:textSize="@dimen/txt14"
|
||||
android:textColor="@color/text_black_33"
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
</LinearLayout>
|
||||
</layout>
|
||||
@@ -1,341 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<data>
|
||||
|
||||
</data>
|
||||
|
||||
<LinearLayout
|
||||
android:focusable="true"
|
||||
android:focusableInTouchMode="true"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
<include
|
||||
android:id="@+id/toolbar_lay"
|
||||
layout="@layout/lay_title_bar"
|
||||
app:darkStyle="@{true}"
|
||||
app:title="@{@string/title_big_disease}" />
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_45">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="预约人"
|
||||
android:layout_marginLeft="@dimen/dp_16"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/add_disease_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:layout_marginRight="@dimen/dp_24"
|
||||
android:text="张三-男-32"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_1"
|
||||
android:background="#E0E0E0"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginRight="@dimen/dp_16"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_45">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="预约医院"
|
||||
android:drawableRight="@drawable/ic_red_star"
|
||||
android:layout_marginLeft="@dimen/dp_16"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/add_disease_select_hospital"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:textColor="@color/text_black_99"
|
||||
android:layout_marginRight="@dimen/dp_24"
|
||||
android:text=""
|
||||
android:hint="请选择医院"
|
||||
android:drawableRight="@drawable/arrow_right"
|
||||
android:drawablePadding="@dimen/dp_4"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_1"
|
||||
android:background="#E0E0E0"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginRight="@dimen/dp_16"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_45">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="就诊卡号"
|
||||
android:layout_marginLeft="@dimen/dp_16"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
|
||||
<EditText
|
||||
android:id="@+id/add_disease_register_id_card"
|
||||
android:background="@null"
|
||||
android:longClickable="false"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:gravity="right"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:layout_marginRight="@dimen/dp_24"
|
||||
android:hint="请输入挂号医院的就诊卡号"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_1"
|
||||
android:background="#E0E0E0"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginRight="@dimen/dp_16"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_45">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="挂号类型"
|
||||
android:drawableRight="@drawable/ic_red_star"
|
||||
android:layout_marginLeft="@dimen/dp_16"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/add_disease_register_type"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:textColor="@color/text_black_99"
|
||||
android:layout_marginRight="@dimen/dp_24"
|
||||
android:text=""
|
||||
android:hint="请选择挂号类型"
|
||||
android:gravity="right"
|
||||
android:drawableRight="@drawable/arrow_right"
|
||||
android:drawablePadding="@dimen/dp_4"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_1"
|
||||
android:background="#E0E0E0"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginRight="@dimen/dp_16"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_45">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="预约时间"
|
||||
android:drawableRight="@drawable/ic_red_star"
|
||||
android:layout_marginLeft="@dimen/dp_16"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/add_disease_time"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:layout_marginRight="@dimen/dp_5"
|
||||
android:text="请选择时间"
|
||||
android:paddingLeft="@dimen/txt15"
|
||||
android:paddingRight="@dimen/dp_15"
|
||||
android:paddingTop="@dimen/dp_5"
|
||||
android:paddingBottom="@dimen/dp_5"
|
||||
android:background="@drawable/bg_grey"
|
||||
android:drawablePadding="@dimen/dp_4"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toLeftOf="@+id/add_disease_time_2"
|
||||
/>
|
||||
<TextView
|
||||
android:id="@+id/add_disease_time_2"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:layout_marginRight="@dimen/dp_26"
|
||||
android:text="请选择时间"
|
||||
android:paddingLeft="@dimen/txt15"
|
||||
android:paddingRight="@dimen/dp_15"
|
||||
android:paddingTop="@dimen/dp_5"
|
||||
android:paddingBottom="@dimen/dp_5"
|
||||
android:background="@drawable/bg_grey"
|
||||
android:drawablePadding="@dimen/dp_4"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_1"
|
||||
android:background="#E0E0E0"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginRight="@dimen/dp_16"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_45">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="预约科室"
|
||||
android:layout_marginLeft="@dimen/dp_16"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
|
||||
<EditText
|
||||
android:id="@+id/add_disease_deparment"
|
||||
android:background="@null"
|
||||
android:longClickable="false"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:gravity="right"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:layout_marginRight="@dimen/dp_24"
|
||||
android:hint="请输入您想预约的科室"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_1"
|
||||
android:background="#E0E0E0"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginRight="@dimen/dp_16"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_45">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="预约医生"
|
||||
android:layout_marginLeft="@dimen/dp_16"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
|
||||
<EditText
|
||||
android:id="@+id/add_disease_doctor_name"
|
||||
android:background="@null"
|
||||
android:longClickable="false"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:gravity="right"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:layout_marginRight="@dimen/dp_24"
|
||||
android:hint="请输入您想预约的医生姓名"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_1"
|
||||
android:background="#E0E0E0"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginRight="@dimen/dp_16"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_162">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="病情描述"
|
||||
android:layout_marginTop="@dimen/dp_15"
|
||||
android:layout_marginLeft="@dimen/dp_16"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
<EditText
|
||||
android:id="@+id/add_disease_sick"
|
||||
android:layout_marginTop="@dimen/dp_14"
|
||||
android:layout_marginRight="@dimen/dp_15"
|
||||
android:layout_marginLeft="@dimen/dp_15"
|
||||
android:gravity="top"
|
||||
android:longClickable="false"
|
||||
android:padding="@dimen/dp_5"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:background="@drawable/rectangle_round_corner10_gray"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"/>
|
||||
</LinearLayout>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<TextView
|
||||
android:id="@+id/big_disease_submit"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="@dimen/dp_45"
|
||||
android:text="提交"
|
||||
android:textSize="@dimen/txt14"
|
||||
android:textColor="@color/text_green_BD"
|
||||
android:background="@drawable/bg_frame_blue_radius17"
|
||||
android:paddingLeft="@dimen/dp_110"
|
||||
android:paddingRight="@dimen/dp_110"
|
||||
android:paddingTop="@dimen/dp_14"
|
||||
android:paddingBottom="@dimen/dp_14"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginBottom="@dimen/dp_20"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
</layout>
|
||||
@@ -1,383 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<data>
|
||||
|
||||
</data>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<include
|
||||
android:id="@+id/toolbar_lay"
|
||||
layout="@layout/lay_title_bar"
|
||||
app:darkStyle="@{true}"
|
||||
app:title="@{@string/title_big_disease}" />
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_step_view_root"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_120"
|
||||
android:background="@color/text_green_BD"
|
||||
android:orientation="vertical">
|
||||
|
||||
<com.xjjk.healthyclients.view.StepView
|
||||
android:id="@+id/step_view"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_20"
|
||||
android:layout_marginTop="@dimen/dp_10"
|
||||
android:layout_marginRight="@dimen/dp_20" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/ll_step_view_root"
|
||||
android:layout_marginLeft="@dimen/dp_15"
|
||||
android:layout_marginTop="-30dp"
|
||||
android:layout_marginRight="@dimen/dp_15"
|
||||
android:paddingBottom="@dimen/dp_30"
|
||||
android:background="@drawable/bg_card"
|
||||
android:minHeight="@dimen/dp_100"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_marginRight="@dimen/dp_14">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="预约时间"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/big_disease_details_register_time"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:text=""
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13" />
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_marginRight="@dimen/dp_14">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="挂号类型"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/big_disease_details_register_type"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:text=""
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13" />
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_marginRight="@dimen/dp_14">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="预约医院"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/big_disease_details_hospital_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:text=""
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13" />
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_marginRight="@dimen/dp_14">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="就诊卡号"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/big_disease_details_register_id_card"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:text=""
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13" />
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_marginRight="@dimen/dp_14">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="预约科室"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/big_disease_details_register_deparment"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:text=""
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13" />
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_marginRight="@dimen/dp_14">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="预约医生"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/big_disease_details_doctor_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:text=""
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13" />
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_marginRight="@dimen/dp_14">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="病情描述"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/big_disease_details_sick_hint"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:text=""
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13" />
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_marginRight="@dimen/dp_14">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="当前状态"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/big_disease_details_state"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:text=""
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13" />
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_marginRight="@dimen/dp_14">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="预约人"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/big_disease_details_register_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:text=""
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13" />
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_marginRight="@dimen/dp_14">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="身份证号"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/big_disease_details_id_card"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:text=""
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13" />
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_marginRight="@dimen/dp_14">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="手机号"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/big_disease_details_phone"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:text=""
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13" />
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_marginRight="@dimen/dp_14">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="预约单号"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/big_disease_details_order_id"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:text=""
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13" />
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_marginRight="@dimen/dp_14">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="发起时间"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/big_disease_details_start_time"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:text=""
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13" />
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_big_disease_details_end_time_root"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="@dimen/dp_30"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_marginRight="@dimen/dp_14">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="驳回时间"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/big_disease_details_end_time"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:text=""
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13" />
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
</layout>
|
||||
@@ -1,110 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<data>
|
||||
|
||||
</data>
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:ignore="MissingDefaultResource">
|
||||
<include
|
||||
android:id="@+id/toolbar_lay"
|
||||
layout="@layout/lay_title_bar"
|
||||
app:darkStyle="@{true}"
|
||||
app:title="@{@string/title_big_disease}" />
|
||||
<LinearLayout
|
||||
android:background="@color/white"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_44">
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_big_disease_in_progress"
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/big_disease_in_progress"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerInParent="true"
|
||||
android:text="进行中"
|
||||
android:textStyle="bold"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt14" />
|
||||
<View
|
||||
android:id="@+id/big_disease_in_progress_line"
|
||||
android:layout_width="@dimen/dp_28"
|
||||
android:layout_height="@dimen/dp_2"
|
||||
android:background="#21BEBD"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
<LinearLayout
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_big_disease_history"
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="match_parent">
|
||||
<TextView
|
||||
android:id="@+id/big_disease_history"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="历史"
|
||||
android:layout_centerInParent="true"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt14"
|
||||
/>
|
||||
<View
|
||||
android:id="@+id/big_disease_history_line"
|
||||
android:layout_width="@dimen/dp_28"
|
||||
android:layout_height="@dimen/dp_2"
|
||||
android:background="#21BEBD"
|
||||
android:visibility="invisible"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/big_disease_rv"
|
||||
android:layout_marginLeft="@dimen/dp_15"
|
||||
android:layout_marginRight="@dimen/dp_15"
|
||||
android:layout_marginTop="@dimen/dp_10"
|
||||
android:layout_marginBottom="@dimen/dp_80"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"/>
|
||||
<TextView
|
||||
android:id="@+id/big_disease_add"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="@dimen/dp_45"
|
||||
android:text="发起预约"
|
||||
android:textSize="@dimen/txt14"
|
||||
android:textColor="@color/text_green_BD"
|
||||
android:background="@drawable/bg_frame_blue_radius17"
|
||||
android:paddingLeft="@dimen/dp_110"
|
||||
android:paddingRight="@dimen/dp_110"
|
||||
android:paddingTop="@dimen/dp_14"
|
||||
android:paddingBottom="@dimen/dp_14"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginBottom="@dimen/dp_20"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
</layout>
|
||||
@@ -1,62 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<data>
|
||||
<variable
|
||||
name="viewModel"
|
||||
type="com.xjjk.healthyclients.ui.viewmodel.FilterSearchDoctorViewModel" />
|
||||
</data>
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:background="#EEEEEE"
|
||||
android:focusable="true"
|
||||
android:focusableInTouchMode="true"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<include
|
||||
android:id="@+id/toolbar_lay"
|
||||
layout="@layout/lay_title_bar"
|
||||
app:darkStyle="@{true}"
|
||||
app:title="@{viewModel.titleText}" />
|
||||
<com.xjjk.healthyclients.view.CustomSearchView
|
||||
android:id="@+id/seek_doctor_search"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/mFilterContentView"
|
||||
android:layout_marginTop="@dimen/dp_90"
|
||||
android:layout_marginLeft="@dimen/dp_13"
|
||||
android:layout_marginRight="@dimen/dp_13"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"/>
|
||||
<TextView
|
||||
android:id="@+id/tv_empty"
|
||||
android:visibility="gone"
|
||||
android:layout_centerInParent="true"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:drawablePadding="36dp"
|
||||
android:gravity="center"
|
||||
android:text="@string/list_is_empty"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="14sp"
|
||||
app:drawableTopCompat="@drawable/image_default_empty" />
|
||||
<com.xjjk.healthyclients.view.CustomFilterSearchView
|
||||
android:id="@+id/dropDownMenu"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
</layout>
|
||||
@@ -14,8 +14,7 @@
|
||||
<include
|
||||
android:id="@+id/toolbar_lay"
|
||||
layout="@layout/lay_title_bar"
|
||||
app:darkStyle="@{true}"
|
||||
app:title="@{@string/title_health_intervention}" />
|
||||
app:darkStyle="@{true}"/>
|
||||
|
||||
<!-- <LinearLayout-->
|
||||
<!-- android:layout_width="match_parent"-->
|
||||
|
||||
@@ -1,25 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:focusable="true"
|
||||
android:focusableInTouchMode="true"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<include layout="@layout/lay_title_bar"
|
||||
android:id="@+id/toolbar_lay"
|
||||
app:title="@{@string/title_seek_doctor}"
|
||||
app:darkStyle="@{false}"/>
|
||||
<com.xjjk.healthyclients.view.CustomSearchView
|
||||
android:id="@+id/seek_doctor_search"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rv_list"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
</LinearLayout>
|
||||
</layout>
|
||||
@@ -1,39 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:focusable="true"
|
||||
android:focusableInTouchMode="true"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<include layout="@layout/lay_title_bar"
|
||||
android:id="@+id/toolbar_lay"
|
||||
app:title="@{@string/title_seek_sick}"
|
||||
app:darkStyle="@{false}"/>
|
||||
<com.xjjk.healthyclients.view.CustomSearchView
|
||||
android:id="@+id/seek_doctor_search"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
<LinearLayout
|
||||
android:layout_marginRight="@dimen/dp_15"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/seek_doctor_department_list_left"
|
||||
android:layout_marginTop="@dimen/dp_8"
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="0.4"
|
||||
android:layout_height="match_parent"/>
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/seek_doctor_department_list_right"
|
||||
android:layout_marginTop="@dimen/dp_8"
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="0.6"
|
||||
android:layout_height="match_parent"/>
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
</layout>
|
||||
@@ -1,138 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:focusable="true"
|
||||
android:background="@color/white"
|
||||
android:focusableInTouchMode="true"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<include layout="@layout/lay_title_bar"
|
||||
android:id="@+id/toolbar_lay"
|
||||
app:title="@{@string/title_seek_doctor}"
|
||||
app:darkStyle="@{false}"/>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_50">
|
||||
<com.xjjk.healthyclients.view.CustomSearchView
|
||||
android:id="@+id/seek_doctor_search"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
<View
|
||||
android:id="@+id/seek_doctor_search_mask"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"/>
|
||||
</RelativeLayout>
|
||||
|
||||
<androidx.core.widget.NestedScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_marginBottom="@dimen/dp_30"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:paddingLeft="@dimen/dp_20"
|
||||
android:paddingRight="@dimen/dp_15"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_height="wrap_content">
|
||||
<TextView
|
||||
android:id="@+id/seek_doctor_hospital_number"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="按医院(32)"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt16"
|
||||
/>
|
||||
<TextView
|
||||
android:id="@+id/seek_doctor_hospital_all"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="全部医院"
|
||||
android:drawableRight="@drawable/arrow_right"
|
||||
android:textColor="@color/text_black_99"
|
||||
android:textSize="@dimen/txt14"
|
||||
android:layout_alignParentRight="true"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/seek_doctor_hospital_list"
|
||||
android:layout_marginTop="@dimen/dp_8"
|
||||
android:layout_marginLeft="@dimen/dp_13"
|
||||
android:layout_marginRight="@dimen/dp_13"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:paddingLeft="@dimen/dp_20"
|
||||
android:paddingRight="@dimen/dp_15"
|
||||
android:layout_marginTop="@dimen/dp_19"
|
||||
android:layout_height="wrap_content">
|
||||
<TextView
|
||||
android:id="@+id/seek_doctor_department_number"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="科室(32)"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt16"
|
||||
/>
|
||||
<TextView
|
||||
android:id="@+id/seek_doctor_department_all"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="全部科室"
|
||||
android:drawableRight="@drawable/arrow_right"
|
||||
android:textColor="@color/text_black_99"
|
||||
android:textSize="@dimen/txt14"
|
||||
android:layout_alignParentRight="true"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/seek_doctor_department_list"
|
||||
android:layout_marginTop="@dimen/dp_8"
|
||||
android:layout_marginLeft="@dimen/dp_13"
|
||||
android:layout_marginRight="@dimen/dp_13"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:paddingLeft="@dimen/dp_20"
|
||||
android:paddingRight="@dimen/dp_15"
|
||||
android:layout_marginTop="@dimen/dp_19"
|
||||
android:layout_height="wrap_content">
|
||||
<TextView
|
||||
android:id="@+id/seek_doctor_disease_number"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="疾病(32)"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt16"
|
||||
/>
|
||||
<TextView
|
||||
android:id="@+id/seek_doctor_disease_all"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="全部疾病"
|
||||
android:drawableRight="@drawable/arrow_right"
|
||||
android:textColor="@color/text_black_99"
|
||||
android:textSize="@dimen/txt14"
|
||||
android:layout_alignParentRight="true"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/seek_doctor_disease_list"
|
||||
android:layout_marginTop="@dimen/dp_8"
|
||||
android:layout_marginLeft="@dimen/dp_13"
|
||||
android:layout_marginRight="@dimen/dp_13"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
</LinearLayout>
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
</layout>
|
||||
@@ -1,41 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<data>
|
||||
|
||||
</data>
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:focusableInTouchMode="true"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<include layout="@layout/lay_title_bar"
|
||||
android:id="@+id/toolbar_lay"
|
||||
app:title="@{@string/title_seek_department}"
|
||||
app:darkStyle="@{false}"/>
|
||||
<com.xjjk.healthyclients.view.CustomSearchView
|
||||
android:id="@+id/seek_doctor_search"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
<LinearLayout
|
||||
android:layout_marginRight="@dimen/dp_15"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/seek_doctor_department_list_left"
|
||||
android:layout_marginTop="@dimen/dp_8"
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="0.4"
|
||||
android:layout_height="match_parent"/>
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/seek_doctor_department_list_right"
|
||||
android:layout_marginTop="@dimen/dp_8"
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="0.6"
|
||||
android:layout_height="match_parent"/>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</layout>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<data>
|
||||
|
||||
</data>
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<include layout="@layout/lay_title_bar"
|
||||
android:id="@+id/toolbar_lay"
|
||||
app:title="@{@string/title_seek_department}"
|
||||
app:darkStyle="@{false}"/>
|
||||
<com.xjjk.healthyclients.view.CustomSearchView
|
||||
android:id="@+id/seek_doctor_search"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/seek_doctor_disease_list"
|
||||
android:layout_marginTop="@dimen/dp_8"
|
||||
android:layout_marginLeft="@dimen/dp_13"
|
||||
android:layout_marginRight="@dimen/dp_13"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
</LinearLayout>
|
||||
</layout>
|
||||
@@ -1,30 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<data>
|
||||
|
||||
</data>
|
||||
|
||||
<LinearLayout
|
||||
android:focusableInTouchMode="true"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<include layout="@layout/lay_title_bar"
|
||||
android:id="@+id/toolbar_lay"
|
||||
app:title="@{@string/title_seek_hospital}"
|
||||
app:darkStyle="@{false}"/>
|
||||
<com.xjjk.healthyclients.view.CustomSearchView
|
||||
android:id="@+id/seek_doctor_search"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/seek_doctor_hospital_list"
|
||||
android:layout_marginTop="@dimen/dp_8"
|
||||
android:layout_marginLeft="@dimen/dp_13"
|
||||
android:layout_marginRight="@dimen/dp_13"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
</LinearLayout>
|
||||
</layout>
|
||||
@@ -1,221 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:focusable="true"
|
||||
android:background="@color/white"
|
||||
android:focusableInTouchMode="true"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<include layout="@layout/lay_title_bar"
|
||||
android:id="@+id/toolbar_lay"
|
||||
app:title="@{@string/title_seek_doctor_search}"
|
||||
app:darkStyle="@{false}"/>
|
||||
<com.xjjk.healthyclients.view.CustomSearchView
|
||||
android:id="@+id/seek_doctor_search"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
<com.google.android.material.tabs.TabLayout
|
||||
android:id="@+id/seek_doctor_search_tab"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_10"
|
||||
app:tabBackground="@android:color/transparent"
|
||||
app:tabRippleColor="@android:color/transparent"
|
||||
app:tabIndicator="@drawable/shape_tab_indicator"
|
||||
app:tabIndicatorColor="@color/text_green_BD"
|
||||
android:layout_height="@dimen/dp_30"/>
|
||||
<androidx.core.widget.NestedScrollView
|
||||
android:fillViewport="true"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_marginBottom="@dimen/dp_30"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<LinearLayout
|
||||
android:id="@+id/seek_doctor_doctor_list_root"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_doctor"
|
||||
android:orientation="horizontal"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingLeft="@dimen/dp_20"
|
||||
android:text="专家"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt16"
|
||||
/>
|
||||
<TextView
|
||||
android:id="@+id/tv_doctor_more"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingRight="@dimen/dp_20"
|
||||
android:text="更多专家"
|
||||
android:drawableRight="@drawable/arrow_right"
|
||||
android:layout_alignParentRight="true"
|
||||
android:textColor="@color/text_black_99"
|
||||
android:textSize="@dimen/txt16"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/seek_doctor_doctor_list"
|
||||
android:layout_marginTop="@dimen/dp_8"
|
||||
android:layout_marginLeft="@dimen/dp_13"
|
||||
android:layout_marginRight="@dimen/dp_13"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/seek_doctor_hospital_list_root"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_hospital"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingLeft="@dimen/dp_20"
|
||||
android:text="医院"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt16"
|
||||
/>
|
||||
<TextView
|
||||
android:id="@+id/tv_hospital_more"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingRight="@dimen/dp_20"
|
||||
android:text="更多医院"
|
||||
android:drawableRight="@drawable/arrow_right"
|
||||
android:layout_alignParentRight="true"
|
||||
android:textColor="@color/text_black_99"
|
||||
android:textSize="@dimen/txt16"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/seek_doctor_hospital_list"
|
||||
android:layout_marginTop="@dimen/dp_8"
|
||||
android:layout_marginLeft="@dimen/dp_13"
|
||||
android:layout_marginRight="@dimen/dp_13"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/seek_doctor_disease_list_root"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_disease"
|
||||
android:layout_marginTop="@dimen/dp_19"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingLeft="@dimen/dp_20"
|
||||
android:text="疾病"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt16"
|
||||
/>
|
||||
<TextView
|
||||
android:id="@+id/tv_disease_more"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingRight="@dimen/dp_20"
|
||||
android:text="更多疾病"
|
||||
android:drawableRight="@drawable/arrow_right"
|
||||
android:layout_alignParentRight="true"
|
||||
android:textColor="@color/text_black_99"
|
||||
android:textSize="@dimen/txt16"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/seek_doctor_disease_list"
|
||||
android:layout_marginTop="@dimen/dp_8"
|
||||
android:layout_marginLeft="@dimen/dp_13"
|
||||
android:layout_marginRight="@dimen/dp_13"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/seek_doctor_department_list_root"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_department"
|
||||
android:layout_marginTop="@dimen/dp_19"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingLeft="@dimen/dp_20"
|
||||
android:text="科室"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt16"
|
||||
/>
|
||||
<TextView
|
||||
android:id="@+id/tv_department_more"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingRight="@dimen/dp_20"
|
||||
android:text="更多科室"
|
||||
android:drawableRight="@drawable/arrow_right"
|
||||
android:layout_alignParentRight="true"
|
||||
android:textColor="@color/text_black_99"
|
||||
android:textSize="@dimen/txt16"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/seek_doctor_department_list"
|
||||
android:layout_marginTop="@dimen/dp_8"
|
||||
android:layout_marginLeft="@dimen/dp_13"
|
||||
android:layout_marginRight="@dimen/dp_13"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
<TextView
|
||||
android:id="@+id/tv_empty"
|
||||
android:layout_centerInParent="true"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:drawablePadding="36dp"
|
||||
android:gravity="center"
|
||||
android:text="@string/list_is_empty"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="14sp"
|
||||
app:drawableTopCompat="@drawable/image_default_empty" />
|
||||
</RelativeLayout>
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
</layout>
|
||||
@@ -0,0 +1,222 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<data>
|
||||
|
||||
</data>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:focusable="true"
|
||||
android:focusableInTouchMode="true"
|
||||
android:orientation="vertical">
|
||||
|
||||
<include
|
||||
android:id="@+id/toolbar_lay"
|
||||
layout="@layout/lay_title_bar"
|
||||
app:darkStyle="@{true}"
|
||||
app:title="@{@string/title_user_info_contact}" />
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_50">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginLeft="@dimen/dp_16"
|
||||
android:text="姓名"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<EditText
|
||||
android:id="@+id/emergency_contact_name"
|
||||
android:background="@null"
|
||||
android:longClickable="false"
|
||||
android:layout_width="@dimen/dp_200"
|
||||
android:gravity="right"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginRight="@dimen/dp_16"
|
||||
android:hint="姓名"
|
||||
android:maxLength="10"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_1"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginLeft="@dimen/dp_16"
|
||||
android:layout_marginRight="@dimen/dp_16"
|
||||
android:background="#E0E0E0" />
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_50">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginLeft="@dimen/dp_16"
|
||||
android:text="手机号"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<EditText
|
||||
android:id="@+id/emergency_contact_phone"
|
||||
android:layout_width="@dimen/dp_200"
|
||||
android:gravity="right"
|
||||
android:longClickable="false"
|
||||
android:inputType="phone"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginRight="@dimen/dp_16"
|
||||
android:hint="手机号"
|
||||
android:maxLength="11"
|
||||
android:background="@null"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_1"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginLeft="@dimen/dp_16"
|
||||
android:layout_marginRight="@dimen/dp_16"
|
||||
android:background="#E0E0E0" />
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_50">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginLeft="@dimen/dp_16"
|
||||
android:text="身份证号"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<EditText
|
||||
android:id="@+id/emergency_contact_idcard"
|
||||
android:layout_width="@dimen/dp_200"
|
||||
android:gravity="right"
|
||||
android:maxLength="18"
|
||||
android:longClickable="false"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginRight="@dimen/dp_16"
|
||||
android:hint="身份证号"
|
||||
android:background="@null"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_1"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginLeft="@dimen/dp_16"
|
||||
android:layout_marginRight="@dimen/dp_16"
|
||||
android:background="#E0E0E0" />
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_50">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginLeft="@dimen/dp_16"
|
||||
android:text="关系"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/emergency_contact_relation"
|
||||
android:layout_width="@dimen/dp_200"
|
||||
android:gravity="right"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginRight="@dimen/dp_16"
|
||||
android:drawableRight="@mipmap/ic_right_more"
|
||||
android:drawablePadding="@dimen/dp_5"
|
||||
android:text="张三"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_1"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginLeft="@dimen/dp_16"
|
||||
android:layout_marginRight="@dimen/dp_16"
|
||||
android:background="#E0E0E0" />
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_centerHorizontal="true">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/emergency_contact_del"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginRight="@dimen/dp_10"
|
||||
android:layout_marginBottom="@dimen/dp_34"
|
||||
android:background="@drawable/bg_frame_blue_radius17"
|
||||
android:paddingLeft="@dimen/dp_40"
|
||||
android:paddingTop="@dimen/dp_10"
|
||||
android:paddingRight="@dimen/dp_40"
|
||||
android:paddingBottom="@dimen/dp_10"
|
||||
android:text="删除"
|
||||
android:textColor="@color/text_green_BD" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/emergency_contact_save"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginLeft="@dimen/dp_10"
|
||||
android:layout_marginBottom="@dimen/dp_34"
|
||||
android:background="@drawable/bg_blue_background_shap"
|
||||
android:paddingLeft="@dimen/dp_40"
|
||||
android:paddingTop="@dimen/dp_10"
|
||||
android:paddingRight="@dimen/dp_40"
|
||||
android:paddingBottom="@dimen/dp_10"
|
||||
android:text="保存"
|
||||
android:textColor="@color/white" />
|
||||
</LinearLayout>
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
</LinearLayout>
|
||||
</layout>
|
||||
@@ -10,26 +10,24 @@
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<include
|
||||
android:id="@+id/toolbar_lay"
|
||||
layout="@layout/lay_title_bar"
|
||||
app:darkStyle="@{true}"
|
||||
app:title="@{@string/title_seek_doctors}" />
|
||||
app:rightText="@{@string/title_user_add_contact}"
|
||||
app:title="@{@string/title_user_info_contact}" />
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_empty_root_view"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
android:layout_height="wrap_content">
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/mFilterContentView"
|
||||
android:layout_marginLeft="@dimen/dp_13"
|
||||
android:layout_marginRight="@dimen/dp_13"
|
||||
android:id="@+id/user_info_contacts_rv"
|
||||
android:layout_marginLeft="@dimen/dp_15"
|
||||
android:layout_marginRight="@dimen/dp_15"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent" />
|
||||
<include
|
||||
android:id="@+id/include_empty"
|
||||
layout="@layout/layout_empty"/>
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
</layout>
|
||||
@@ -8,10 +8,10 @@
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/TabItem_ivIcon"
|
||||
android:layout_width="@dimen/dp_21"
|
||||
android:layout_height="@dimen/dp_21"
|
||||
android:layout_width="@dimen/dp_24"
|
||||
android:layout_height="@dimen/dp_24"
|
||||
android:layout_marginBottom="3dp"
|
||||
android:scaleType="centerInside"
|
||||
android:scaleType="fitXY"
|
||||
android:layout_marginTop="@dimen/dp_10"
|
||||
app:layout_constraintBottom_toTopOf="@id/TabItem_guideLine"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
@@ -27,7 +27,7 @@
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
android:textSize="@dimen/txt9"
|
||||
android:textSize="@dimen/txt11"
|
||||
tools:text="首页" />
|
||||
|
||||
<View
|
||||
|
||||
@@ -0,0 +1,183 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout 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">
|
||||
|
||||
<RelativeLayout
|
||||
android:background="@color/transparent"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_root"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_20"
|
||||
android:layout_marginRight="@dimen/dp_20"
|
||||
android:background="@drawable/rectangle_round_corner10_white"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/dialog_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginTop="@dimen/dp_19"
|
||||
android:text="系统功能简介"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt14" />
|
||||
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
<ScrollView
|
||||
android:layout_marginTop="@dimen/dp_27"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_400">
|
||||
<TextView
|
||||
android:id="@+id/dialog_content"
|
||||
android:layout_marginLeft="@dimen/dp_18"
|
||||
android:layout_marginRight="@dimen/dp_18"
|
||||
android:layout_marginBottom="@dimen/dp_27"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="1.数据文件管理
|
||||
首先对该地区的样本数据进行训练得出岩性的判别函数,其中的方法是利用Bayes判别理论。再输入不同井的数据,最后导入目录下自动生成该井的岩性层数据文件。其中样本训练数据是通过人工整合在一起的,从多口井中取出岩性特征比较明显的层段。
|
||||
1.数据文件管理1.数据文件管理
|
||||
首先对该地区的样本数据进行训练得出岩性的判别函数,其中的方法是利用Bayes判别理论。再输入不同井的数据,最后导入目录下自动生成该井的岩性层数据文件。其中样本训练数据是通过人工整合在一起的,从多口井中取出岩性特征比较明显的层段。
|
||||
1.数据文件管理1.数据文件管理
|
||||
首先对该地区的样本数据进行训练得出岩性的判别函数,其中的方法是利用Bayes判别理论。再输入不同井的数据,最后导入目录下自动生成该井的岩性层数据文件。其中样本训练数据是通过人工整合在一起的,从多口井中取出岩性特征比较明显的层段。
|
||||
1.数据文件管理1.数据文件管理
|
||||
首先对该地区的样本数据进行训练得出岩性的判别函数,其中的方法是利用Bayes判别理论。再输入不同井的数据,最后导入目录下自动生成该井的岩性层数据文件。其中样本训练数据是通过人工整合在一起的,从多口井中取出岩性特征比较明显的层段。
|
||||
1.数据文件管理
|
||||
首先对该地区的样本数据进行训练得出岩性的判别函数,其中的方法是利用Bayes判别理论。再输入不同井的数据,最后导入目录下自动生成该井的岩性层数据文件。其中样本训练数据是通过人工整合在一起的,从多口井中取出岩性特征比较明显的层段。
|
||||
1.数据文件管理
|
||||
首先对该地区的样本数据进行训练得出岩性的判别函数,其中的方法是利用Bayes判别理论。再输入不同井的数据,最后导入目录下自动生成该井的岩性层数据文件。其中样本训练数据是通过人工整合在一起的,从多口井中取出岩性特征比较明显的层段。
|
||||
"
|
||||
/>
|
||||
</ScrollView>
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:layout_marginBottom="@dimen/dp_20"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<RelativeLayout
|
||||
android:layout_marginBottom="@dimen/dp_13"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<LinearLayout
|
||||
android:id="@+id/dialog_confirm_7_day_no_remind_ll"
|
||||
android:orientation="horizontal"
|
||||
android:layout_marginLeft="@dimen/dp_18"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
<ImageView
|
||||
android:id="@+id/dialog_confirm_7_day_no_remind_iv"
|
||||
android:layout_width="@dimen/dp_14"
|
||||
android:layout_height="@dimen/dp_14"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:src="@drawable/ic_marital_state_no_select"
|
||||
/>
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="7日内不再提醒"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:layout_marginLeft="@dimen/dp_2"
|
||||
/>
|
||||
</LinearLayout>
|
||||
<LinearLayout
|
||||
android:id="@+id/dialog_confirm_1_month_no_remind_ll"
|
||||
android:orientation="horizontal"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_marginRight="@dimen/dp_18"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
<ImageView
|
||||
android:id="@+id/dialog_confirm_1_month_no_remind_iv"
|
||||
android:layout_width="@dimen/dp_14"
|
||||
android:layout_height="@dimen/dp_14"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:src="@drawable/ic_marital_state_no_select"
|
||||
/>
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="1个月内不再提醒"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:layout_marginLeft="@dimen/dp_2"
|
||||
/>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<LinearLayout
|
||||
android:id="@+id/dialog_confirm_6_month_no_remind_ll"
|
||||
android:orientation="horizontal"
|
||||
android:layout_marginLeft="@dimen/dp_18"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
<ImageView
|
||||
android:id="@+id/dialog_confirm_6_month_no_remind_iv"
|
||||
android:layout_width="@dimen/dp_14"
|
||||
android:layout_height="@dimen/dp_14"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:src="@drawable/ic_marital_state_no_select"
|
||||
/>
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="6个月不再提醒"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:layout_marginLeft="@dimen/dp_2"
|
||||
/>
|
||||
</LinearLayout>
|
||||
<LinearLayout
|
||||
android:id="@+id/dialog_confirm_no_remind_ll"
|
||||
android:orientation="horizontal"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_marginRight="@dimen/dp_19"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
<ImageView
|
||||
android:id="@+id/dialog_confirm_no_remind_iv"
|
||||
android:layout_width="@dimen/dp_14"
|
||||
android:layout_height="@dimen/dp_14"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:src="@drawable/ic_marital_state_no_select"
|
||||
/>
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="以后不再提醒 "
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:layout_marginLeft="@dimen/dp_2"
|
||||
/>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/dialog_confirm_close"
|
||||
android:layout_width="@dimen/dp_24"
|
||||
android:layout_height="@dimen/dp_24"
|
||||
android:layout_below="@+id/ll_root"
|
||||
android:layout_marginTop="@dimen/dp_29"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:src="@drawable/ic_down_close"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
|
||||
</layout>
|
||||
@@ -1,6 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools">
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<data>
|
||||
|
||||
@@ -76,93 +77,113 @@
|
||||
android:src="@drawable/ic_emergency_seek_doctor" />
|
||||
</LinearLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/fragment_emergency_marker_info"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_110"
|
||||
android:background="@drawable/bg_card"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/fragment_emergency_hospital_tag"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_18"
|
||||
android:background="@drawable/bg_blue_background_shap_radius4"
|
||||
android:paddingLeft="@dimen/dp_8"
|
||||
android:paddingTop="@dimen/dp_4"
|
||||
android:paddingRight="@dimen/dp_8"
|
||||
android:paddingBottom="@dimen/dp_4"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="@dimen/txt9"
|
||||
tools:text="二甲" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/fragment_emergency_hospital_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_6"
|
||||
android:layout_marginTop="@dimen/dp_18"
|
||||
android:layout_toRightOf="@+id/fragment_emergency_hospital_tag"
|
||||
android:textSize="@dimen/txt14"
|
||||
android:textStyle="bold"
|
||||
tools:text="生命科学专科医院" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/fragment_emergency_hospital_landline"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/fragment_emergency_hospital_tag"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_8"
|
||||
android:text="029-12345678"
|
||||
android:textColor="#999999"
|
||||
android:textSize="@dimen/txt13" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/fragment_emergency_hospital_address"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/fragment_emergency_hospital_landline"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_8"
|
||||
android:ellipsize="end"
|
||||
android:maxLines="2"
|
||||
android:textColor="#999999"
|
||||
android:textSize="@dimen/txt13"
|
||||
tools:text="--" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/fragment_emergency_card_navigation"
|
||||
android:layout_width="@dimen/dp_25"
|
||||
android:layout_height="@dimen/dp_25"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginRight="@dimen/dp_15"
|
||||
android:src="@drawable/ic_fragment_emergency_navigation" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/fragment_emergency_phone"
|
||||
android:layout_width="@dimen/dp_25"
|
||||
android:layout_height="@dimen/dp_25"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginRight="@dimen/dp_10"
|
||||
android:layout_toLeftOf="@+id/fragment_emergency_card_navigation"
|
||||
android:src="@drawable/ic_fragment_emergency_phone" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/fragment_emergency_address_card_close"
|
||||
android:layout_width="@dimen/dp_25"
|
||||
android:layout_height="@dimen/dp_25"
|
||||
android:layout_alignParentRight="true"
|
||||
android:padding="@dimen/dp_5"
|
||||
android:src="@drawable/core_close_icon" />
|
||||
</RelativeLayout>
|
||||
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/fragment_emergency_marker_info"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:background="@drawable/bg_card"
|
||||
android:minHeight="110dp"
|
||||
android:orientation="horizontal"
|
||||
android:paddingBottom="8dp"
|
||||
android:visibility="gone">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/fragment_emergency_hospital_tag"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_18"
|
||||
android:background="@drawable/bg_blue_background_shap_radius4"
|
||||
android:paddingLeft="@dimen/dp_8"
|
||||
android:paddingTop="@dimen/dp_4"
|
||||
android:paddingRight="@dimen/dp_8"
|
||||
android:paddingBottom="@dimen/dp_4"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="@dimen/txt9"
|
||||
app:layout_constraintLeft_toLeftOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
tools:text="二甲" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/fragment_emergency_hospital_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="5dp"
|
||||
android:layout_toRightOf="@+id/fragment_emergency_hospital_tag"
|
||||
android:textSize="@dimen/txt14"
|
||||
android:textStyle="bold"
|
||||
app:layout_constraintLeft_toRightOf="@+id/fragment_emergency_hospital_tag"
|
||||
app:layout_constraintTop_toTopOf="@+id/fragment_emergency_hospital_tag"
|
||||
app:layout_goneMarginLeft="14dp"
|
||||
app:layout_goneMarginTop="18dp"
|
||||
tools:text="生命科学专科医院" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/fragment_emergency_hospital_landline"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/fragment_emergency_hospital_tag"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_8"
|
||||
android:text="029-12345678"
|
||||
android:textColor="#999999"
|
||||
android:textSize="@dimen/txt13"
|
||||
app:layout_constraintLeft_toLeftOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/fragment_emergency_hospital_name" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/fragment_emergency_hospital_address"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/dp_14"
|
||||
android:layout_marginTop="@dimen/dp_4"
|
||||
android:layout_marginRight="14dp"
|
||||
android:textColor="#999999"
|
||||
android:textSize="@dimen/txt13"
|
||||
app:layout_constraintLeft_toLeftOf="parent"
|
||||
app:layout_constraintRight_toRightOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/fragment_emergency_hospital_landline"
|
||||
tools:text="新疆熙睦圆健康管理有限责任公司成立于2016-09-19,企业注册地址位于新疆乌鲁木齐经济技术开发区天鹅湖路2号1层101室,2层,3层,所属行业为商务服务业。" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/fragment_emergency_card_navigation"
|
||||
android:layout_width="@dimen/dp_25"
|
||||
android:layout_height="@dimen/dp_25"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginRight="@dimen/dp_15"
|
||||
android:src="@drawable/ic_fragment_emergency_navigation"
|
||||
app:layout_constraintRight_toRightOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/fragment_emergency_hospital_name" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/fragment_emergency_phone"
|
||||
android:layout_width="@dimen/dp_25"
|
||||
android:layout_height="@dimen/dp_25"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginRight="@dimen/dp_10"
|
||||
android:layout_toLeftOf="@+id/fragment_emergency_card_navigation"
|
||||
android:src="@drawable/ic_fragment_emergency_phone"
|
||||
app:layout_constraintRight_toLeftOf="@+id/fragment_emergency_card_navigation"
|
||||
app:layout_constraintTop_toBottomOf="@+id/fragment_emergency_hospital_name" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/fragment_emergency_address_card_close"
|
||||
android:layout_width="@dimen/dp_25"
|
||||
android:layout_height="@dimen/dp_25"
|
||||
android:layout_alignParentRight="true"
|
||||
android:padding="@dimen/dp_5"
|
||||
android:src="@drawable/core_close_icon"
|
||||
app:layout_constraintRight_toRightOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
@@ -26,6 +26,10 @@
|
||||
android:textSize="@dimen/txt18"
|
||||
android:textStyle="bold"
|
||||
android:background="#14BEBE" />
|
||||
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
||||
android:id="@+id/swipe_refresh"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
@@ -266,6 +270,6 @@
|
||||
</LinearLayout>
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
</LinearLayout>
|
||||
|
||||
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
||||
</LinearLayout>
|
||||
</layout>
|
||||
@@ -1,162 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:background="@drawable/bg_card"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:paddingBottom="@dimen/dp_10"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<com.allen.library.CircleImageView
|
||||
android:id="@+id/item_recycle_seek_doctor_doctor_icon"
|
||||
android:layout_width="@dimen/dp_50"
|
||||
android:layout_height="@dimen/dp_50"
|
||||
android:layout_marginLeft="@dimen/dp_10"
|
||||
android:layout_marginTop="@dimen/dp_15"
|
||||
android:src="@drawable/ic_default" />
|
||||
<TextView
|
||||
android:id="@+id/item_recycle_seek_doctor_doctor_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="@dimen/txt14"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:layout_marginTop="@dimen/dp_15"
|
||||
android:text="XXX"
|
||||
android:textStyle="bold"
|
||||
android:layout_marginLeft="@dimen/dp_8"
|
||||
android:layout_toRightOf="@+id/item_recycle_seek_doctor_doctor_icon"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:layout_below="@+id/item_recycle_seek_doctor_doctor_name"
|
||||
android:id="@+id/item_recycle_seek_doctor_doctor_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_toRightOf="@+id/item_recycle_seek_doctor_doctor_icon"
|
||||
android:textSize="@dimen/txt13"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:layout_marginTop="@dimen/dp_6"
|
||||
android:text="xxxx"
|
||||
android:layout_marginLeft="@dimen/dp_10"
|
||||
/>
|
||||
|
||||
|
||||
|
||||
<TextView
|
||||
android:id="@+id/item_recycle_seek_doctor_doctor_history"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="历史咨询"
|
||||
android:background="@drawable/bg_60_blue_background_shap_radius4"
|
||||
android:textColor="@color/text_green_BD"
|
||||
android:textSize="@dimen/txt10"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_alignBaseline="@+id/item_recycle_seek_doctor_doctor_name"
|
||||
android:layout_marginRight="@dimen/dp_15"
|
||||
android:paddingRight="@dimen/dp_8"
|
||||
android:paddingLeft="@dimen/dp_8"
|
||||
android:paddingBottom="@dimen/dp_4"
|
||||
android:paddingTop="@dimen/dp_4"
|
||||
/>
|
||||
<TextView
|
||||
android:id="@+id/item_recycle_seek_doctor_doctor_tag"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="二甲"
|
||||
android:textColor="@color/white"
|
||||
android:background="@drawable/bg_blue_background_shap_radius4"
|
||||
android:paddingRight="@dimen/dp_6"
|
||||
android:paddingLeft="@dimen/dp_6"
|
||||
android:paddingTop="@dimen/dp_2"
|
||||
android:paddingBottom="@dimen/dp_2"
|
||||
android:layout_below="@+id/item_recycle_seek_doctor_doctor_title"
|
||||
android:layout_toRightOf="@+id/item_recycle_seek_doctor_doctor_icon"
|
||||
android:layout_marginTop="@dimen/dp_6"
|
||||
android:layout_marginLeft="@dimen/dp_10"
|
||||
android:textSize="@dimen/txt9"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/item_recycle_seek_doctor_doctor_hospital_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="xxxx"
|
||||
android:layout_alignBaseline="@+id/item_recycle_seek_doctor_doctor_tag"
|
||||
android:layout_toRightOf="@+id/item_recycle_seek_doctor_doctor_tag"
|
||||
android:layout_marginLeft="@dimen/dp_6"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt13"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/item_recycle_seek_doctor_doctor_hint"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:maxLines="3"
|
||||
android:ellipsize="end"
|
||||
android:textSize="@dimen/txt14"
|
||||
android:textColor="@color/text_black_66"
|
||||
android:layout_below="@+id/item_recycle_seek_doctor_doctor_tag"
|
||||
android:layout_toRightOf="@+id/item_recycle_seek_doctor_doctor_icon"
|
||||
android:layout_marginLeft="@dimen/dp_8"
|
||||
android:layout_marginTop="@dimen/dp_12"
|
||||
android:layout_marginRight="@dimen/dp_18"
|
||||
android:text="擅长:神经内科疾病的治疗,尤其擅长以脑血管、老年痴呆症、老年抑郁症等神经内科常见病的诊疗及研究"
|
||||
/>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/item_recycle_seek_doctor_doctor_hot"
|
||||
android:layout_width="@dimen/dp_10"
|
||||
android:layout_height="@dimen/dp_13"
|
||||
android:layout_marginLeft="10dp"
|
||||
android:layout_marginTop="@dimen/dp_14"
|
||||
android:layout_toRightOf="@+id/item_recycle_seek_doctor_doctor_icon"
|
||||
android:layout_below="@+id/item_recycle_seek_doctor_doctor_hint"
|
||||
android:src="@drawable/ic_hot" />
|
||||
<TextView
|
||||
android:id="@+id/item_recycle_seek_doctor_doctor_rate"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/item_recycle_seek_doctor_doctor_hint"
|
||||
android:text="综合评价:5.0 / 回复率:99% / 咨询量:3323"
|
||||
android:layout_toRightOf="@+id/item_recycle_seek_doctor_doctor_hot"
|
||||
android:layout_marginLeft="@dimen/dp_4"
|
||||
android:layout_marginTop="@dimen/dp_10"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/item_recycle_seek_doctor_guidance_root"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_44">
|
||||
<TextView
|
||||
android:id="@+id/item_recycle_seek_doctor_image_text"
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="1"
|
||||
android:text="图文咨询"
|
||||
android:textColor="@color/text_green_BD"
|
||||
android:textSize="@dimen/txt14"
|
||||
android:gravity="center"
|
||||
android:layout_height="match_parent"/>
|
||||
<View
|
||||
android:layout_width="@dimen/dp_1"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:background="#E0E0E0"
|
||||
android:layout_height="@dimen/dp_28"/>
|
||||
<TextView
|
||||
android:id="@+id/item_recycle_seek_doctor_video"
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="1"
|
||||
android:text="视频咨询"
|
||||
android:textColor="@color/text_green_BD"
|
||||
android:textSize="@dimen/txt14"
|
||||
android:gravity="center"
|
||||
android:layout_height="match_parent"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_46">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/item_user_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:textSize="@dimen/txt14"
|
||||
android:text="张思思-1322367465"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/item_user_concern"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toLeftOf="@+id/item_user_iv_edit"
|
||||
android:layout_marginRight="@dimen/dp_60"
|
||||
android:text="夫妻"
|
||||
android:textSize="@dimen/txt14"
|
||||
android:textColor="@color/text_black_33"
|
||||
/>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/item_user_iv_edit"
|
||||
android:layout_width="@dimen/dp_6"
|
||||
android:layout_height="@dimen/dp_12"
|
||||
android:src="@mipmap/ic_right_more"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_1"
|
||||
android:background="#E0E0E0"
|
||||
android:layout_alignParentBottom="true"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
@@ -62,6 +62,7 @@
|
||||
/>
|
||||
|
||||
<ImageButton
|
||||
android:visibility="gone"
|
||||
android:id="@+id/btn_follow"
|
||||
android:layout_width="@dimen/dp_60"
|
||||
android:layout_height="@dimen/dp_26"
|
||||
|
||||
@@ -60,6 +60,7 @@
|
||||
app:barrierDirection="end"
|
||||
app:constraint_referenced_ids="iv_doctor_head,tv_stop_service" />
|
||||
<ImageButton
|
||||
android:visibility="gone"
|
||||
android:id="@+id/btn_follow"
|
||||
android:layout_width="@dimen/dp_60"
|
||||
android:layout_height="@dimen/dp_26"
|
||||
|
||||
@@ -0,0 +1,99 @@
|
||||
<!--
|
||||
~ Copyright (c) 2016-present 贵州纳雍穿青人李裕江<1032694760@qq.com>
|
||||
~
|
||||
~ The software is licensed under the Mulan PSL v2.
|
||||
~ You can use this software according to the terms and conditions of the Mulan PSL v2.
|
||||
~ You may obtain a copy of Mulan PSL v2 at:
|
||||
~ http://license.coscl.org.cn/MulanPSL2
|
||||
~ THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR
|
||||
~ IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
|
||||
~ PURPOSE.
|
||||
~ See the Mulan PSL v2 for more details.
|
||||
-->
|
||||
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="30dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center"
|
||||
android:textColor="@color/text_black_33"
|
||||
android:layout_gravity="center"
|
||||
android:text="下限" />
|
||||
<TextView
|
||||
android:textColor="@color/text_black_33"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center"
|
||||
android:text="上限" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_marginTop="30dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<com.github.gzuliyujiang.wheelview.widget.WheelView
|
||||
android:id="@+id/wheel_picker_linkage_first_wheel"
|
||||
style="@style/WheelDefault"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1.0" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/wheel_picker_linkage_first_label"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:text="" />
|
||||
|
||||
<com.github.gzuliyujiang.wheelview.widget.WheelView
|
||||
android:id="@+id/wheel_picker_linkage_second_wheel"
|
||||
style="@style/WheelDefault"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1.0" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/wheel_picker_linkage_second_label"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:text="" />
|
||||
|
||||
<com.github.gzuliyujiang.wheelview.widget.WheelView
|
||||
android:id="@+id/wheel_picker_linkage_third_wheel"
|
||||
style="@style/WheelDefault"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1.0" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/wheel_picker_linkage_third_label"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:text="" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<ProgressBar
|
||||
android:id="@+id/wheel_picker_linkage_loading"
|
||||
style="@android:style/Widget.ProgressBar.Small"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:visibility="invisible" />
|
||||
|
||||
</FrameLayout>
|
||||
@@ -1,6 +1,6 @@
|
||||
<resources xmlns:tools="http://schemas.android.com/tools"
|
||||
tools:ignore="MissingTranslation">
|
||||
<string name="app_name">健康长庆</string>
|
||||
<string name="app_name">健康油我</string>
|
||||
|
||||
<!--页面标题-->
|
||||
<string name="title_seek_doctor">找专家</string>
|
||||
@@ -54,7 +54,7 @@
|
||||
<string name="title_user_appraise">用户评价</string>
|
||||
<string name="title_base_healthy_info">基本健康信息</string>
|
||||
<string name="title_image_text_consult">图文咨询</string>
|
||||
<string name="title_assistant_consult">小助手</string>
|
||||
<string name="title_assistant_consult">全科医生</string>
|
||||
<string name="title_select_location">选择位置</string>
|
||||
<string name="title_view_location">位置</string>
|
||||
<string name="title_im_select_archives">选择档案</string>
|
||||
@@ -112,7 +112,8 @@
|
||||
<string name="title_health_analysis">体检项目分析</string>
|
||||
<string name="title_meals_sport_history">历史记录</string>
|
||||
<string name="title_intervention_cvd_warning">预警历史</string>
|
||||
<string name="title_health_intervention">健康干预</string>
|
||||
<string name="title_health_intervention">健康监测</string>
|
||||
<string name="title_all_doctor_info">全科医生主页</string>
|
||||
|
||||
|
||||
<!--标题右侧功能-->
|
||||
@@ -408,7 +409,7 @@
|
||||
<string name="appointment_information_predict_start_time">预计开始时间</string>
|
||||
<string name="appointment_information_start_time">开始时间</string>
|
||||
<string name="appointment_information_doctor_appointed_time" formatted="false">约定时间:%s    %s~%s</string>
|
||||
<string name="appointment_information_call_duration" formatted="false">音频通话:%s    时长:%s</string>
|
||||
<string name="appointment_information_call_duration" formatted="false">视频通话:%s    时长:%s</string>
|
||||
<string name="appointment_information_start_time_value" formatted="false">%s    %s~%s</string>
|
||||
<string name="appointment_information_start_time_tips">请打开APP并保证网络流畅</string>
|
||||
<string name="appointment_information_appointment_people_title">预约人信息</string>
|
||||
@@ -464,7 +465,7 @@
|
||||
<string name="select_consultant_height_weight" formatted="false">%scm / %skg</string>
|
||||
<string name="select_consultant_skip">快速咨询</string>
|
||||
<string name="select_consultant_next">下一步</string>
|
||||
<string name="select_consultant_empty_tips">请选择咨询人档案</string>
|
||||
<string name="select_consultant_empty_tips">请选择或新增咨询人档案</string>
|
||||
|
||||
<!--咨询人信息-->
|
||||
<string name="consult_information_consult_people_title">咨询人信息</string>
|
||||
|
||||