POZO_Retail/app/build/intermediates/merged-not-compiled-resources/release/layout/dragger_alert.xml

157 lines
5.7 KiB
XML
Raw Permalink Normal View History

2025-08-26 13:45:32 +05:30
<?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="match_parent"
android:layout_margin="5dp"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:orientation="vertical"
android:layout_weight="1">
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="true">
<LinearLayout
android:layout_marginTop="10dp"
android:id="@+id/Qty_brand_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<LinearLayout
android:id="@+id/Category"
android:layout_width="130dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="5dp"
android:gravity="center"
android:layout_gravity="center"
android:background="@drawable/option_button_style">
<TextView
android:id="@+id/Categoryname"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:ellipsize="marquee"
android:fontFamily="@font/inter_500"
android:gravity="center"
android:marqueeRepeatLimit="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
android:scrollHorizontally="true"
android:text="Category">
</TextView>
</LinearLayout>
<LinearLayout
android:id="@+id/SubCategory"
android:layout_width="130dp"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_gravity="center"
android:background="@drawable/option_button_style">
<TextView
android:id="@+id/SubCategoryname"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:ellipsize="marquee"
android:fontFamily="@font/inter_500"
android:gravity="center"
android:marqueeRepeatLimit="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
android:scrollHorizontally="true"
android:text="Sub Category">
</TextView>
</LinearLayout>
<LinearLayout
android:id="@+id/Card"
android:layout_width="130dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="5dp"
android:gravity="center"
android:layout_gravity="center"
android:background="@drawable/option_button_style">
<TextView
android:id="@+id/cardname"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:ellipsize="marquee"
android:fontFamily="@font/inter_500"
android:gravity="center"
android:marqueeRepeatLimit="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
android:scrollHorizontally="true"
android:text="Card">
</TextView>
</LinearLayout>
</LinearLayout>
</HorizontalScrollView>
<TextView
android:id="@+id/position"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:fontFamily="@font/inter_700"
android:textColor="@color/black"
android:textSize="16dp"
android:text="Position">
</TextView>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/draggerCatShow"
android:layout_width="match_parent"
android:layout_marginTop="10dp"
android:layout_height="wrap_content">
</androidx.recyclerview.widget.RecyclerView>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_gravity="bottom"
android:gravity="end">
<Button
android:id="@+id/draggersubmit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/submit_btn"
android:fontFamily="@font/popins_regular"
android:drawableRight="@drawable/submit_vec"
android:drawablePadding="10dp"
android:text="SUBMIT"
android:textColor="@color/white">
</Button>
</LinearLayout>
</LinearLayout>