File was renamed from app/src/main/res/layout/fragment_dashboard.xml |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <androidx.constraintlayout.widget.ConstraintLayout |
| | | xmlns:android="http://schemas.android.com/apk/res/android" |
| | | xmlns:app="http://schemas.android.com/apk/res-auto" |
| | | xmlns:tools="http://schemas.android.com/tools" |
| | | <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| | | android:layout_width="match_parent" |
| | | android:layout_height="match_parent" |
| | | tools:context=".ui.main.dashboard.DashboardFragment" > |
| | | xmlns:app="http://schemas.android.com/apk/res-auto"> |
| | | |
| | | <com.google.android.material.tabs.TabLayout |
| | | android:id="@+id/tablayout" |
| | | android:layout_width="match_parent" |
| | | android:layout_height="wrap_content" |
| | | app:layout_constraintLeft_toLeftOf="parent" |
| | | app:layout_constraintRight_toRightOf="parent" |
| | | app:layout_constraintTop_toTopOf="parent"> |
| | | |
| | | <com.google.android.material.tabs.TabItem |
| | | android:layout_width="wrap_content" |
| | | android:layout_height="wrap_content" |
| | | android:text="全部" /> |
| | | |
| | | <com.google.android.material.tabs.TabItem |
| | | android:layout_width="wrap_content" |
| | | android:layout_height="wrap_content" |
| | | android:text="人气" /> |
| | | |
| | | <com.google.android.material.tabs.TabItem |
| | | android:layout_width="wrap_content" |
| | | android:layout_height="wrap_content" |
| | | android:text="简单" /> |
| | | <com.google.android.material.tabs.TabItem |
| | | android:layout_width="wrap_content" |
| | | android:layout_height="wrap_content" |
| | | android:text="高价" /> |
| | | </com.google.android.material.tabs.TabLayout> |
| | | |
| | | <RadioGroup |
| | | android:id="@+id/radio_group" |
| | |
| | | android:layout_height="40dp" |
| | | app:layout_constraintHorizontal_chainStyle="spread" |
| | | app:layout_constraintHorizontal_weight="4" |
| | | app:layout_constraintTop_toBottomOf="@id/tablayout" |
| | | app:layout_constraintTop_toTopOf="parent" |
| | | app:layout_constraintLeft_toLeftOf="parent" |
| | | app:layout_constraintRight_toLeftOf="@id/txt_classify" |
| | | android:orientation="horizontal"> |
| | |
| | | android:gravity="center" |
| | | android:textColor="@color/radio_text" |
| | | app:layout_constraintRight_toRightOf="parent" |
| | | app:layout_constraintTop_toBottomOf="@id/tablayout" |
| | | app:layout_constraintTop_toTopOf="parent" |
| | | app:layout_constraintLeft_toRightOf="@id/radio_group" |
| | | app:layout_constraintHorizontal_weight="1" |
| | | app:layout_constraintHorizontal_chainStyle="spread" /> |
| | |
| | | android:layout_height="0.5dp" |
| | | android:background="@color/gray" |
| | | app:layout_constraintTop_toBottomOf="@id/radio_group" |
| | | app:layout_constraintLeft_toLeftOf="parent"/> |
| | | |
| | | <FrameLayout |
| | | android:id="@+id/framelayout" |
| | | app:layout_constraintLeft_toLeftOf="parent" |
| | | app:layout_constraintRight_toRightOf="parent"/> |
| | | <include layout="@layout/refresh_recycler" |
| | | android:layout_width="match_parent" |
| | | android:layout_height="0dp" |
| | | app:layout_constraintTop_toBottomOf="@id/view" |
| | | app:layout_constraintBottom_toBottomOf="parent" |
| | | app:layout_constraintLeft_toLeftOf="parent" /> |
| | | app:layout_constraintBottom_toBottomOf="parent"/> |
| | | </androidx.constraintlayout.widget.ConstraintLayout> |