118 lines
5.0 KiB
XML
118 lines
5.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!--
|
|
~ Aurora Store
|
|
~ Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
|
|
~
|
|
~ Aurora Store is free software: you can redistribute it and/or modify
|
|
~ it under the terms of the GNU General Public License as published by
|
|
~ the Free Software Foundation, either version 2 of the License, or
|
|
~ (at your option) any later version.
|
|
~
|
|
~ Aurora Store is distributed in the hope that it will be useful,
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
~ GNU General Public License for more details.
|
|
~
|
|
~ You should have received a copy of the GNU General Public License
|
|
~ along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
|
|
~
|
|
-->
|
|
|
|
<LinearLayout 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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<include
|
|
android:id="@+id/layout_toolbar_action_review"
|
|
layout="@layout/view_toolbar_action" />
|
|
|
|
<HorizontalScrollView
|
|
android:id="@+id/sort_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:scrollbars="none">
|
|
|
|
<com.google.android.material.chip.ChipGroup
|
|
android:id="@+id/chip_group"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:paddingStart="@dimen/margin_normal"
|
|
android:paddingEnd="@dimen/margin_normal"
|
|
app:checkedChip="@id/filter_review_all"
|
|
app:singleLine="true"
|
|
app:singleSelection="true">
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/filter_review_all"
|
|
style="@style/ViewStyle.Aurora.Chip"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/filter_review_all" />
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/filter_review_critical"
|
|
style="@style/ViewStyle.Aurora.Chip"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/filter_review_critical" />
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/filter_review_positive"
|
|
style="@style/ViewStyle.Aurora.Chip"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/filter_review_positive" />
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/filter_review_five"
|
|
style="@style/ViewStyle.Aurora.Chip"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/filter_review_five" />
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/filter_review_four"
|
|
style="@style/ViewStyle.Aurora.Chip"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/filter_review_four" />
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/filter_review_three"
|
|
style="@style/ViewStyle.Aurora.Chip"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/filter_review_three" />
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/filter_review_two"
|
|
style="@style/ViewStyle.Aurora.Chip"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/filter_review_two" />
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/filter_review_one"
|
|
style="@style/ViewStyle.Aurora.Chip"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/filter_review_one" />
|
|
</com.google.android.material.chip.ChipGroup>
|
|
</HorizontalScrollView>
|
|
|
|
<com.airbnb.epoxy.EpoxyRecyclerView
|
|
android:id="@+id/recycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="true"
|
|
android:orientation="vertical"
|
|
android:overScrollMode="never"
|
|
android:paddingStart="@dimen/padding_normal"
|
|
android:paddingEnd="0dp"
|
|
android:scrollbars="none"
|
|
app:itemSpacing="@dimen/margin_normal"
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
|
tools:listitem="@layout/view_review" />
|
|
</LinearLayout> |