|
|
@@ -23,18 +23,40 @@
|
|
|
<androidx.appcompat.widget.AppCompatTextView style="@style/back_text" />
|
|
|
</LinearLayout>
|
|
|
|
|
|
- <androidx.appcompat.widget.AppCompatTextView
|
|
|
- android:id="@+id/tvTitle"
|
|
|
+ <RadioGroup
|
|
|
+ android:id="@+id/radioEvaluation"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="@dimen/divider_32px"
|
|
|
- android:text="@string/evaluation_history_info"
|
|
|
- android:textColor="@android:color/white"
|
|
|
- android:textSize="@dimen/divider_34px"
|
|
|
- android:textStyle="bold"
|
|
|
+ android:layout_marginTop="@dimen/divider_36px"
|
|
|
+ android:gravity="center"
|
|
|
+ android:orientation="horizontal"
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toTopOf="parent" />
|
|
|
+ app:layout_constraintTop_toTopOf="parent">
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/radioProfessionalEvaluation"
|
|
|
+ android:layout_width="@dimen/divider_195px"
|
|
|
+ android:layout_height="@dimen/divider_55px"
|
|
|
+ android:background="@drawable/bg_left_selected_professional_evaluation_result"
|
|
|
+ android:button="@null"
|
|
|
+ android:checked="true"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/professional_evaluation"
|
|
|
+ android:textColor="@color/selector_radio_evaluation_color"
|
|
|
+ android:textSize="@dimen/divider_24px" />
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/radioOtherEvaluation"
|
|
|
+ android:layout_width="@dimen/divider_195px"
|
|
|
+ android:layout_height="@dimen/divider_55px"
|
|
|
+ android:background="@drawable/bg_right_selected_professional_evaluation_result"
|
|
|
+ android:button="@null"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/other_evaluations"
|
|
|
+ android:textColor="@color/selector_radio_evaluation_color"
|
|
|
+ android:textSize="@dimen/divider_24px" />
|
|
|
+ </RadioGroup>
|
|
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
android:layout_width="match_parent"
|
|
|
@@ -49,7 +71,7 @@
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/tvTitle">
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/radioEvaluation">
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
android:layout_width="match_parent"
|