52 lines
1.3 KiB
XML
52 lines
1.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:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:layout_marginHorizontal="5dp"
|
||
|
|
android:background="@color/white">
|
||
|
|
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_marginTop="3dp"
|
||
|
|
android:id="@+id/textview"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:text="SET AS DEFAULT"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"/>
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_marginTop="-7dp"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
|
android:id="@+id/list_view"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"/>
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:scaleType="fitXY"
|
||
|
|
android:id="@+id/tvItem"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"/>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|