|
|
@@ -0,0 +1,111 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent">
|
|
|
+
|
|
|
+ <com.google.android.material.card.MaterialCardView
|
|
|
+ android:id="@+id/headlayout"
|
|
|
+ android:layout_width="@dimen/divider_667px"
|
|
|
+ android:layout_height="@dimen/divider_427px"
|
|
|
+ android:theme="@style/Theme.MaterialComponents.NoActionBar"
|
|
|
+ app:cardBackgroundColor="@android:color/white"
|
|
|
+ app:cardCornerRadius="@dimen/divider_20px"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ app:strokeColor="@color/color_FF979797"
|
|
|
+ app:strokeWidth="@dimen/divider_1px">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="@dimen/divider_191px"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@color/color_FF4A76FF"
|
|
|
+ android:gravity="center"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.AppCompatImageView
|
|
|
+ android:layout_width="@dimen/divider_65px"
|
|
|
+ android:layout_height="@dimen/divider_86px"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:background="@mipmap/icon_doctor_head" />
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.AppCompatTextView
|
|
|
+ android:id="@+id/tvYear"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/divider_31px"
|
|
|
+ android:background="@color/color_FF4A76FF"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ android:text="@string/accompanying_personnel_judgment"
|
|
|
+ android:textColor="@android:color/white"
|
|
|
+ android:textSize="@dimen/divider_24px" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/divider_16px"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/can_the_accompanying_personnel_determine_the_patient_answer_is_correct"
|
|
|
+ android:textColor="@color/color_FF222222"
|
|
|
+ android:textSize="@dimen/divider_32px"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <RadioGroup
|
|
|
+ android:id="@+id/radioChoice"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/divider_32px"
|
|
|
+ android:gravity="center"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/radioCorrect"
|
|
|
+ android:layout_width="@dimen/divider_191px"
|
|
|
+ android:layout_height="@dimen/divider_90px"
|
|
|
+ android:background="@drawable/selector_questions_choice"
|
|
|
+ android:button="@null"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/correct"
|
|
|
+ android:textColor="@color/txt_radio_color"
|
|
|
+ android:textSize="@dimen/divider_24px"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/radioDeny"
|
|
|
+ android:layout_width="@dimen/divider_191px"
|
|
|
+ android:layout_height="@dimen/divider_90px"
|
|
|
+ android:layout_marginStart="@dimen/divider_12px"
|
|
|
+ android:background="@drawable/selector_questions_choice"
|
|
|
+ android:button="@null"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/deny"
|
|
|
+ android:textColor="@color/txt_radio_color"
|
|
|
+ android:textSize="@dimen/divider_24px"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ </RadioGroup>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </com.google.android.material.card.MaterialCardView>
|
|
|
+
|
|
|
+
|
|
|
+</androidx.constraintlayout.widget.ConstraintLayout>
|