|
@@ -124,7 +124,8 @@
|
|
|
<LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:orientation="vertical">
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:paddingBottom="@dimen/divider_22px">
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
android:id="@+id/tvProgress"
|
|
@@ -162,6 +163,35 @@
|
|
|
android:layout_height="wrap_content"
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
|
|
|
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/divider_22px">
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.AppCompatButton
|
|
|
+ android:id="@+id/btnHome"
|
|
|
+ android:layout_width="@dimen/divider_321px"
|
|
|
+ android:layout_height="@dimen/divider_78px"
|
|
|
+ android:layout_marginStart="@dimen/divider_235px"
|
|
|
+ android:background="@drawable/bg_btn_doctor_details"
|
|
|
+ android:text="@string/home_pager"
|
|
|
+ android:textColor="@android:color/white"
|
|
|
+ android:textSize="@dimen/divider_28px"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.AppCompatButton
|
|
|
+ android:id="@+id/btnConsultationRecord"
|
|
|
+ android:layout_width="@dimen/divider_321px"
|
|
|
+ android:layout_height="@dimen/divider_78px"
|
|
|
+ android:layout_marginStart="@dimen/divider_48px"
|
|
|
+ android:background="@drawable/bg_btn_doctor_details"
|
|
|
+ android:text="@string/consultation_record"
|
|
|
+ android:textColor="@android:color/white"
|
|
|
+ android:textSize="@dimen/divider_28px"
|
|
|
+ app:layout_constraintStart_toEndOf="@+id/btnHome"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
</LinearLayout>
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
</LinearLayout>
|