69 lines
2.3 KiB
XML
69 lines
2.3 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:visibility="visible"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:id="@+id/parentView">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/prodSelectQty"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_margin="10dp"
|
||
|
|
android:visibility="visible"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/overlayImage"
|
||
|
|
android:layout_width="20dp"
|
||
|
|
android:layout_height="20dp"
|
||
|
|
android:tint="@color/green"
|
||
|
|
android:layout_margin="03dp"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:src="@drawable/tick_one" />
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:id="@+id/imageView"
|
||
|
|
android:layout_width="90dp"
|
||
|
|
android:layout_height="70dp"
|
||
|
|
android:backgroundTint="@color/reserved"
|
||
|
|
android:scaleType="fitXY"/>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/amount"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:text="₹1440"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textAllCaps="false"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="13dp" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/quantity"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:text="(8 inch)"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="12sp"/>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|