首次提交
This commit is contained in:
@@ -0,0 +1,169 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools">
|
||||
|
||||
<data>
|
||||
|
||||
</data>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_44"
|
||||
android:background="#14BEBE" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:background="#14BEBE"
|
||||
android:gravity="center"
|
||||
android:paddingBottom="5dp"
|
||||
android:text="应急就医"
|
||||
android:textColor="@color/colorWhite"
|
||||
android:textSize="@dimen/txt18"
|
||||
android:textStyle="bold" />
|
||||
|
||||
<com.xjjk.healthyclients.view.CustomEmergencyHeadView
|
||||
android:id="@+id/fragment_emergency_head_rv"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_45"
|
||||
android:layout_marginLeft="@dimen/dp_7"
|
||||
android:layout_marginRight="@dimen/dp_7" />
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/fragment_emergency_plat_rl_root"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<com.amap.api.maps.MapView
|
||||
android:id="@+id/fragment_emergency_map_mapview"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent" />
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/fragment_emergency_plat_rl_bottom_root"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dp_110"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:background="@drawable/bg_black_to_white">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginBottom="@dimen/dp_17"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/fragment_emergency_call_120"
|
||||
android:layout_width="@dimen/dp_70"
|
||||
android:layout_height="@dimen/dp_70"
|
||||
android:layout_marginRight="@dimen/dp_16"
|
||||
android:src="@drawable/ic_emergency_120" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/fragment_emergency_seek_doctor"
|
||||
android:layout_width="@dimen/dp_70"
|
||||
android:layout_height="@dimen/dp_70"
|
||||
android:layout_marginLeft="@dimen/dp_16"
|
||||
android:layout_toRightOf="@+id/fragment_emergency_call_120"
|
||||
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="1"
|
||||
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>
|
||||
</RelativeLayout>
|
||||
|
||||
</LinearLayout>
|
||||
</layout>
|
||||
Reference in New Issue
Block a user