2023-05-30 08:48:59 +05:30
|
|
|
<?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"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2023-09-22 11:40:17 +05:30
|
|
|
tools:context="com.example.hpostesting.presentation.dashboard.GalleryFragment">
|
2023-05-30 08:48:59 +05:30
|
|
|
|
2023-09-22 11:40:17 +05:30
|
|
|
<Button
|
|
|
|
|
android:id="@+id/btn_submit"
|
|
|
|
|
android:layout_width="wrap_content"
|
2023-05-30 08:48:59 +05:30
|
|
|
android:layout_height="wrap_content"
|
2023-09-22 11:40:17 +05:30
|
|
|
android:layout_marginHorizontal="16dp"
|
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
|
android:clickable="false"
|
|
|
|
|
android:text="@string/check_buffer"
|
|
|
|
|
android:textColor="@color/white"
|
2023-05-30 08:48:59 +05:30
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2023-09-22 11:40:17 +05:30
|
|
|
|
|
|
|
|
|
2023-05-30 08:48:59 +05:30
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|