mirror of
https://github.com/shaulascr/ecommerce_serang.git
synced 2025-08-12 18:22:22 +00:00
47 lines
1.9 KiB
XML
47 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_marginVertical="20dp">
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="32dp"
|
|
android:textColor="@color/black"
|
|
android:text="All grocery"
|
|
android:textSize="22sp"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/showAll"
|
|
style="@style/Widget.MaterialComponents.Button.TextButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="32dp"
|
|
android:text="@string/show_all"
|
|
android:textAllCaps="false"
|
|
android:textColor="@color/blue1"
|
|
android:textSize="16sp"
|
|
app:layout_constraintBaseline_toBaselineOf="@id/title"
|
|
app:layout_constraintEnd_toEndOf="parent" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/products"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingHorizontal="23dp"
|
|
android:clipToPadding="false"
|
|
android:clipChildren="false"
|
|
app:layout_constraintTop_toBottomOf="@id/title"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
android:layout_marginTop="16dp"
|
|
android:orientation="horizontal"
|
|
tools:listitem="@layout/item_product_grid"
|
|
app:layoutManager="androidx.recyclerview.widget.GridLayoutManager"/>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |