115 lines
3.6 KiB
XML
115 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
app:cardElevation="5dp"
|
|
app:cardUseCompatPadding="true"
|
|
app:cardCornerRadius="5dp"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_marginHorizontal="10dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:layout_marginTop="10dp"
|
|
android:weightSum="7">
|
|
|
|
<TextView
|
|
android:id="@+id/SerialNo"
|
|
android:hint="SL.No"
|
|
android:gravity="center"
|
|
android:padding="5dp"
|
|
android:textSize="16dp"
|
|
android:layout_weight="1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
</TextView>
|
|
<TextView
|
|
android:id="@+id/ComboName1"
|
|
android:hint="COMBO NAME"
|
|
android:gravity="center"
|
|
android:padding="5dp"
|
|
android:textSize="16dp"
|
|
android:layout_weight="1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
</TextView>
|
|
<TextView
|
|
android:id="@+id/Offerprice1"
|
|
|
|
android:gravity="center"
|
|
android:textSize="16dp"
|
|
android:padding="5dp"
|
|
android:hint="OFFER PRICE"
|
|
android:layout_weight="1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
</TextView>
|
|
<TextView
|
|
android:id="@+id/ValidateFrom1"
|
|
android:gravity="center"
|
|
android:textSize="16dp"
|
|
android:padding="5dp"
|
|
android:hint="VALIDATE FROM"
|
|
android:layout_weight="1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
</TextView>
|
|
<TextView
|
|
android:id="@+id/ValidateTo1"
|
|
android:gravity="center"
|
|
android:textSize="16dp"
|
|
android:padding="5dp"
|
|
android:hint="VALIDATE TO"
|
|
android:layout_weight="1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
</TextView>
|
|
<TextView
|
|
android:id="@+id/ComboProduct1"
|
|
android:hint="COMBO PRODUCT"
|
|
android:textSize="16dp"
|
|
android:padding="5dp"
|
|
android:layout_weight="1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
</TextView>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="horizontal">
|
|
<ImageView
|
|
android:id="@+id/ComboEdit"
|
|
android:layout_width="30dp"
|
|
android:layout_height="25dp"
|
|
android:layout_weight="0.5"
|
|
android:src="@drawable/editicon">
|
|
|
|
</ImageView>
|
|
<ImageView
|
|
android:id="@+id/ComboDelete"
|
|
android:layout_weight="0.5"
|
|
android:layout_width="30dp"
|
|
android:layout_height="25dp"
|
|
android:src="@drawable/active">
|
|
|
|
</ImageView>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.cardview.widget.CardView> |