35 lines
1.2 KiB
XML
35 lines
1.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:background="@color/dasbordColor"
|
||
|
|
android:padding="5dp"
|
||
|
|
android:gravity="center_vertical">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/prodname"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:text="Product"
|
||
|
|
android:fontFamily="@font/popins_regular"
|
||
|
|
android:textAlignment="textStart"
|
||
|
|
android:textColor="@color/white"
|
||
|
|
android:textSize="16sp" />
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/iconarrow"
|
||
|
|
android:layout_width="@dimen/dp_25"
|
||
|
|
android:layout_height="@dimen/dp_25"
|
||
|
|
android:src="@drawable/icondashboard"
|
||
|
|
android:tint="@color/white"
|
||
|
|
android:layout_gravity="center_vertical" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|