2023-06-19 16:30:43 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-09-25 12:45:44 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2023-06-19 16:30:43 +05:30
|
|
|
android:layout_width="match_parent"
|
2023-09-25 12:45:44 +05:30
|
|
|
android:layout_height="wrap_content">
|
2023-06-19 16:30:43 +05:30
|
|
|
|
|
|
|
|
<androidx.cardview.widget.CardView
|
2023-09-25 12:45:44 +05:30
|
|
|
android:id="@+id/userCard"
|
2023-06-19 16:30:43 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2023-09-25 12:45:44 +05:30
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
|
app:cardBackgroundColor="@color/primary_light"
|
|
|
|
|
app:cardCornerRadius="25dp"
|
|
|
|
|
app:cardElevation="0dp"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
|
android:layout_width="match_parent"
|
2023-06-19 16:30:43 +05:30
|
|
|
android:layout_height="wrap_content"
|
2023-09-25 12:45:44 +05:30
|
|
|
android:padding="12dp">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/userImage"
|
|
|
|
|
android:layout_width="100dp"
|
|
|
|
|
android:layout_height="100dp"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
tools:src="@drawable/ic_qr_code_scanner" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/userName"
|
|
|
|
|
style="@style/title1_1"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
|
android:gravity="start"
|
|
|
|
|
android:textColor="@color/black"
|
|
|
|
|
android:textSize="14sp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/userImage"
|
|
|
|
|
app:layout_constraintTop_toTopOf="@+id/userImage"
|
|
|
|
|
tools:text="Name: MohamedKaif" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/userId"
|
|
|
|
|
style="@style/title1_1"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
|
android:gravity="start"
|
|
|
|
|
android:textColor="@color/black"
|
|
|
|
|
android:textSize="14sp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/userImage"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/userName"
|
|
|
|
|
tools:text="UserID: MohamedKaif" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/teststatus"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
style="@style/title1_1"
|
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
|
android:gravity="start"
|
|
|
|
|
android:textColor="@color/black"
|
|
|
|
|
android:textSize="14sp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/userImage"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/userId"
|
|
|
|
|
tools:text="Test Status: Completed"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
|
|
|
|
</androidx.cardview.widget.CardView>
|
2023-06-19 16:30:43 +05:30
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|