61 lines
2.2 KiB
XML
61 lines
2.2 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:orientation="vertical">
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:weightSum="3"
|
||
|
|
android:padding="@dimen/dp_5">
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/sino"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:fontFamily="@font/inter_600"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center"
|
||
|
|
android:text="SINO">
|
||
|
|
</TextView>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/prodname"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:fontFamily="@font/inter_600"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textAllCaps="true"
|
||
|
|
android:text="Product Name">
|
||
|
|
</TextView>
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="@dimen/sp_0"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_weight="1">
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/edit"
|
||
|
|
android:layout_width="@dimen/dp_24"
|
||
|
|
android:layout_height="@dimen/dp_24"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:src="@drawable/edit"
|
||
|
|
android:gravity="center">
|
||
|
|
</ImageView>
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/delete"
|
||
|
|
android:layout_width="@dimen/dp_24"
|
||
|
|
android:layout_height="@dimen/dp_24"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_marginLeft="@dimen/_20dp"
|
||
|
|
android:src="@drawable/sales_screen_mobile_delete"
|
||
|
|
android:gravity="center"/>
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|