41 lines
1.3 KiB
XML
41 lines
1.3 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:background="@drawable/bg_card"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:padding="12dp"
|
||
|
|
android:layout_marginTop="8dp"
|
||
|
|
android:elevation="2dp">
|
||
|
|
|
||
|
|
<!-- Offer Text -->
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tvOfferText"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:text="7up 1 PCS → 7up 1 PCS"
|
||
|
|
android:textColor="@color/text_primary"
|
||
|
|
android:textSize="14sp"/>
|
||
|
|
|
||
|
|
<!-- Edit Action -->
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tvEdit"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Edit"
|
||
|
|
android:textColor="@color/blue_primary"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:padding="8dp"/>
|
||
|
|
|
||
|
|
<!-- Delete Action -->
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tvDelete"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Delete"
|
||
|
|
android:textColor="@color/red_delete"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:padding="8dp"/>
|
||
|
|
</LinearLayout>
|