101 lines
3.3 KiB
XML
101 lines
3.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="20dp"
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:weightSum="1"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="20dp"
|
|
android:textStyle="bold"
|
|
android:layout_weight="0.9"
|
|
android:fontFamily="@font/inter_600"
|
|
android:layout_marginTop="20dp"
|
|
android:textColor="@color/black"
|
|
android:textSize="20dp"
|
|
android:text="Category Details"/>
|
|
<ImageView
|
|
android:layout_weight="0.1"
|
|
android:id="@+id/cancelimage"
|
|
android:layout_width="0dp"
|
|
android:layout_height="50dp"
|
|
android:src="@drawable/cancel_round"/>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dp"
|
|
android:layout_marginHorizontal="10dp"
|
|
android:orientation="horizontal">
|
|
|
|
|
|
<TextView
|
|
android:layout_width="200dp"
|
|
android:layout_height="50dp"
|
|
android:layout_marginHorizontal="05dp"
|
|
android:background="@drawable/countercategory"
|
|
android:fontFamily="@font/inter_700"
|
|
android:gravity="center"
|
|
android:text="Selected Category"
|
|
android:textSize="15dp"
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:layout_width="200dp"
|
|
android:layout_height="50dp"
|
|
android:layout_marginHorizontal="05dp"
|
|
android:background="@drawable/countercategory"
|
|
android:fontFamily="@font/inter_700"
|
|
android:gravity="center"
|
|
android:text="Selected Sub Category"
|
|
android:textSize="15dp"
|
|
android:textStyle="bold" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="05dp"
|
|
android:layout_marginHorizontal="10dp"
|
|
android:orientation="horizontal"
|
|
android:weightSum="1">
|
|
|
|
<TextView
|
|
android:id="@+id/setcategoryname"
|
|
android:layout_width="200dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="5dp"
|
|
android:background="@drawable/countercategory"
|
|
android:fontFamily="@font/inter_700"
|
|
android:gravity="center"
|
|
android:textSize="15dp"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:id="@+id/setsubcategoryname"
|
|
android:layout_width="200dp"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/countercategory"
|
|
android:fontFamily="@font/inter_700"
|
|
android:gravity="center"
|
|
android:layout_marginLeft="06dp"
|
|
android:textSize="15dp"
|
|
android:textStyle="bold" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout> |