99 lines
2.7 KiB
XML
99 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="wrap_content"
|
|
android:layout_margin="@dimen/dp_3"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/frameLayout"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.flexbox.FlexboxLayout
|
|
android:id="@+id/flexboxLayout"
|
|
android:paddingVertical="@dimen/dp_5"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:id="@+id/cardparent"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:cardMaxElevation="5dp"
|
|
app:cardElevation="@dimen/sp_1">
|
|
|
|
|
|
<FrameLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
<ImageView
|
|
android:id="@+id/imageView"
|
|
android:layout_width="140dp"
|
|
android:layout_height="110dp"
|
|
android:scaleType="fitXY"
|
|
android:visibility="visible"
|
|
android:src="@drawable/commonlogo" />
|
|
|
|
|
|
<LinearLayout
|
|
android:id="@+id/bgColor"
|
|
android:layout_width="140dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal|bottom"
|
|
android:background="#A6F2FAEF"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:paddingVertical="5dp">
|
|
|
|
<TextView
|
|
android:id="@+id/itemName"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:text="Item Name "
|
|
android:fontFamily="@font/inter_600"
|
|
android:singleLine="true"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_13"
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:id="@+id/amtTxt"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="\u20b9 120.0"
|
|
android:fontFamily="@font/inter_600"
|
|
android:singleLine="true"
|
|
android:textColor="@color/rupeeGreen"
|
|
android:textSize="14dp"
|
|
android:textStyle="bold" />
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout>
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
</com.google.android.flexbox.FlexboxLayout>
|
|
|
|
|
|
<TextView
|
|
android:visibility="gone"
|
|
android:id="@+id/count_txt"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="top|end"
|
|
android:text="26"
|
|
android:textColor="#FFFFFF"
|
|
android:textSize="12sp"
|
|
android:fontFamily="@font/inter_600"
|
|
android:background="@drawable/badge_background"
|
|
android:paddingStart="4dp"
|
|
android:paddingEnd="4dp"
|
|
android:paddingTop="1dp"
|
|
android:paddingBottom="1dp"
|
|
android:elevation="4dp"/>
|
|
|
|
|
|
</FrameLayout>
|