|
@@ -0,0 +1,92 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<layout>
|
|
|
+ <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ android:layout_width="480dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:padding="20dp"
|
|
|
+ android:background="@drawable/shape_bg">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/ll_time_st"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/time_s_tx_1"
|
|
|
+ android:layout_width="60dp"
|
|
|
+ android:layout_height="60dp"
|
|
|
+ android:background="@drawable/shape_papg_bg"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="-5"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="@dimen/font_size_24"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/time_s_tx_2"
|
|
|
+ android:layout_width="60dp"
|
|
|
+ android:layout_height="60dp"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:background="@drawable/shape_time_s_bg"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="-1"
|
|
|
+ android:textColor="@color/text_name_color"
|
|
|
+ android:textSize="@dimen/font_size_24"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_nurse_time"
|
|
|
+ android:layout_width="160dp"
|
|
|
+ android:layout_height="60dp"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:background="@drawable/shape_n_login_ed_bg"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/time_minute"
|
|
|
+ android:textColor="@color/black"
|
|
|
+ android:textSize="@dimen/font_size_24"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/time_s_tx_3"
|
|
|
+ android:layout_width="60dp"
|
|
|
+ android:layout_height="60dp"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:background="@drawable/shape_time_s_bg"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="+1"
|
|
|
+ android:textColor="@color/text_name_color"
|
|
|
+ android:textSize="@dimen/font_size_24"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/time_s_tx_4"
|
|
|
+ android:layout_width="60dp"
|
|
|
+ android:layout_height="60dp"
|
|
|
+ android:background="@drawable/shape_papg_bg"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="+5"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="@dimen/font_size_24"
|
|
|
+ android:textStyle="bold" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/nurse_timing_confirm"
|
|
|
+ android:layout_width="200dp"
|
|
|
+ android:layout_height="60dp"
|
|
|
+ android:layout_below="@+id/ll_time_st"
|
|
|
+ android:layout_centerHorizontal="true"
|
|
|
+ android:layout_marginTop="40dp"
|
|
|
+ android:layout_marginBottom="20dp"
|
|
|
+ android:background="@drawable/shape_main_hos_txt_bg"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/str_confirm"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="@dimen/font_size_20" />
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+</layout>
|