|
@@ -2,60 +2,78 @@
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:orientation="horizontal">
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:id="@+id/consentLayout"
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/listLayer"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:orientation="horizontal">
|
|
|
+ android:background="@drawable/patient_ripple"
|
|
|
+ android:paddingTop="8dp"
|
|
|
+ android:paddingBottom="8dp"
|
|
|
+ android:paddingLeft="8dp"
|
|
|
+ android:paddingRight="8dp">
|
|
|
|
|
|
- <LinearLayout
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/chkConsent"
|
|
|
android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content">
|
|
|
- <CheckBox
|
|
|
- android:id="@+id/consentCheckBox"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:theme="@style/CheckBoxTheme" />
|
|
|
- </LinearLayout>
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:visibility="visible"
|
|
|
+ android:buttonTint="@color/darkGray" />
|
|
|
+
|
|
|
+ <!--android:visibility="gone"-->
|
|
|
|
|
|
<LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_weight="1">
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_toLeftOf="@+id/tvTemp"
|
|
|
+ android:layout_toRightOf="@+id/chkConsent"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:orientation="vertical"
|
|
|
+ >
|
|
|
+
|
|
|
+ <!--android:layout_toRightOf="@+id/chkConsent"-->
|
|
|
+
|
|
|
<TextView
|
|
|
- android:id="@+id/tvConsentTitle"
|
|
|
+ android:id="@+id/tvPatientName"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:text="테스트입니다"
|
|
|
- android:textSize="24sp" />
|
|
|
- </LinearLayout>
|
|
|
+ android:text="!!!!!!!!!!!!!!!!!"
|
|
|
+ android:textColor="@color/black"
|
|
|
+ android:textSize="16sp" />
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_weight="3">
|
|
|
- <Button
|
|
|
- android:id="@+id/btnConsent"
|
|
|
- android:layout_width="wrap_content"
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tvConsentName"
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:text="추가" />
|
|
|
+ android:text="asdfasdfa"
|
|
|
+ android:textColor="@color/black"
|
|
|
+ android:textSize="16sp" />
|
|
|
+
|
|
|
</LinearLayout>
|
|
|
|
|
|
- </LinearLayout>
|
|
|
-</LinearLayout>
|
|
|
-
|
|
|
-
|
|
|
- <!-- <CheckBox-->
|
|
|
- <!-- android:layout_width="wrap_content"-->
|
|
|
- <!-- android:layout_height="wrap_content" />-->
|
|
|
- <!-- -->
|
|
|
- <!-- <TextView-->
|
|
|
- <!-- android:layout_width="wrap_content"-->
|
|
|
- <!-- android:layout_height="wrap_content" />-->
|
|
|
- <!-- -->
|
|
|
- <!-- <Button-->
|
|
|
- <!-- android:layout_width="wrap_content"-->
|
|
|
- <!-- android:layout_height="wrap_content"-->
|
|
|
- <!-- android:text="dd" />-->
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tvTemp"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignParentEnd="true"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:background="@drawable/shape2"
|
|
|
+ android:paddingLeft="8dp"
|
|
|
+ android:paddingTop="4dp"
|
|
|
+ android:paddingRight="8dp"
|
|
|
+ android:paddingBottom="4dp"
|
|
|
+ android:text="삭제"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:background="#D9D9D9" />
|
|
|
+
|
|
|
+</LinearLayout>
|