<?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="match_parent"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
<RadioGroup
|
android:id="@+id/radio_group"
|
android:layout_width="0dp"
|
android:layout_height="40dp"
|
app:layout_constraintHorizontal_chainStyle="spread"
|
app:layout_constraintHorizontal_weight="4"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintRight_toLeftOf="@id/txt_classify"
|
android:orientation="horizontal">
|
<com.google.android.material.radiobutton.MaterialRadioButton
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:button="@null"
|
android:text="综合"
|
android:textColor="@color/radio_text"
|
android:gravity="center"
|
android:layout_weight="1" />
|
<com.google.android.material.radiobutton.MaterialRadioButton
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:button="@null"
|
android:text="最新"
|
android:textColor="@color/radio_text"
|
android:gravity="center"
|
android:layout_weight="1" />
|
<com.google.android.material.radiobutton.MaterialRadioButton
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:button="@null"
|
android:text="价格"
|
android:textColor="@color/radio_text"
|
android:gravity="center"
|
android:layout_weight="1" />
|
<com.google.android.material.radiobutton.MaterialRadioButton
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:button="@null"
|
android:text="人气"
|
android:textColor="@color/radio_text"
|
android:gravity="center"
|
android:layout_weight="1" />
|
|
</RadioGroup>
|
|
<TextView
|
android:id="@+id/txt_classify"
|
android:layout_width="0dp"
|
android:layout_height="40dp"
|
android:text="分类▼"
|
android:gravity="center"
|
android:textColor="@color/radio_text"
|
app:layout_constraintRight_toRightOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintLeft_toRightOf="@id/radio_group"
|
app:layout_constraintHorizontal_weight="1"
|
app:layout_constraintHorizontal_chainStyle="spread" />
|
|
<com.scwang.smart.refresh.layout.SmartRefreshLayout
|
android:id="@+id/smart_refresh"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
app:layout_constraintTop_toBottomOf="@id/radio_group"
|
app:layout_constraintBottom_toBottomOf="parent" >
|
|
<androidx.core.widget.NestedScrollView
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:id="@+id/layout"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@drawable/bg_white_corner"
|
android:elevation="@dimen/small_radios"
|
android:layout_margin="@dimen/activity_horizontal_margin"
|
android:padding="@dimen/frame_margin_lr"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintRight_toRightOf="parent"
|
app:layout_constraintBottom_toTopOf="@id/recycler">
|
|
|
<include layout="@layout/hall_item_top"
|
android:id="@+id/layout_left"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintRight_toLeftOf="@id/layout_between"/>
|
<include layout="@layout/hall_item_top"
|
android:id="@+id/layout_between"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintLeft_toRightOf="@id/layout_left"
|
app:layout_constraintRight_toLeftOf="@id/layout_right"
|
/>
|
<include layout="@layout/hall_item_top"
|
android:id="@+id/layout_right"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintLeft_toRightOf="@id/layout_between"
|
app:layout_constraintRight_toRightOf="parent"/>
|
|
<View
|
android:layout_width="0.5dp"
|
android:layout_height="0dp"
|
android:background="@color/gray"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintLeft_toRightOf="@id/layout_left" />
|
|
<View
|
android:layout_width="0.5dp"
|
android:layout_height="0dp"
|
android:background="@color/gray"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintLeft_toRightOf="@id/layout_between" />
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/recycler"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:overScrollMode="never"
|
android:padding="@dimen/activity_horizontal_margin"
|
tools:listitem="@layout/homt_item_recommend"
|
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintRight_toRightOf="parent"
|
app:layout_constraintTop_toBottomOf="@id/layout"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.core.widget.NestedScrollView>
|
|
</com.scwang.smart.refresh.layout.SmartRefreshLayout>
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|