|
|
|
|
@ -1,54 +1,60 @@ |
|
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout 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"> |
|
|
|
|
|
|
|
|
|
<TextView |
|
|
|
|
android:id="@+id/title" |
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:layout_marginStart="16dp" |
|
|
|
|
android:layout_marginTop="16dp" |
|
|
|
|
android:layout_marginEnd="16dp" |
|
|
|
|
android:text="@string/app_name" |
|
|
|
|
android:textColor="@color/white" |
|
|
|
|
android:textSize="20sp" |
|
|
|
|
android:textStyle="bold" |
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways" /> |
|
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView |
|
|
|
|
android:id="@+id/type" |
|
|
|
|
<com.google.android.material.appbar.AppBarLayout |
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:layout_below="@+id/title" |
|
|
|
|
android:clipChildren="false" |
|
|
|
|
android:clipToPadding="false" |
|
|
|
|
android:orientation="horizontal" |
|
|
|
|
android:paddingStart="8dp" |
|
|
|
|
android:paddingTop="12dp" |
|
|
|
|
android:paddingEnd="8dp" |
|
|
|
|
android:paddingBottom="12dp" |
|
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" |
|
|
|
|
tools:listitem="@layout/adapter_type" /> |
|
|
|
|
android:background="@color/transparent" |
|
|
|
|
android:elevation="0dp" |
|
|
|
|
app:elevation="0dp"> |
|
|
|
|
|
|
|
|
|
<TextView |
|
|
|
|
android:id="@+id/title" |
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:layout_marginStart="16dp" |
|
|
|
|
android:layout_marginTop="16dp" |
|
|
|
|
android:text="@string/app_name" |
|
|
|
|
android:textColor="@color/white" |
|
|
|
|
android:textSize="20sp" |
|
|
|
|
android:textStyle="bold" |
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways" /> |
|
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView |
|
|
|
|
android:id="@+id/type" |
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:clipChildren="false" |
|
|
|
|
android:clipToPadding="false" |
|
|
|
|
android:orientation="horizontal" |
|
|
|
|
android:paddingStart="8dp" |
|
|
|
|
android:paddingTop="12dp" |
|
|
|
|
android:paddingEnd="8dp" |
|
|
|
|
android:paddingBottom="12dp" |
|
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" |
|
|
|
|
tools:listitem="@layout/adapter_type" /> |
|
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout> |
|
|
|
|
|
|
|
|
|
<androidx.viewpager.widget.ViewPager |
|
|
|
|
android:id="@+id/pager" |
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
android:layout_height="match_parent" |
|
|
|
|
android:layout_below="@+id/type" |
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" /> |
|
|
|
|
|
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton |
|
|
|
|
android:id="@+id/filter" |
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:layout_alignParentEnd="true" |
|
|
|
|
android:layout_alignParentBottom="true" |
|
|
|
|
android:layout_margin="16dp" |
|
|
|
|
android:visibility="gone" |
|
|
|
|
app:backgroundTint="@color/blue_500" |
|
|
|
|
app:layout_anchor="@id/pager" |
|
|
|
|
app:layout_anchorGravity="end|bottom" |
|
|
|
|
app:layout_behavior=".ui.custom.CustomFabBehavior" |
|
|
|
|
app:srcCompat="@drawable/ic_filter" |
|
|
|
|
app:tint="@color/white" |
|
|
|
|
@ -58,12 +64,12 @@ |
|
|
|
|
android:id="@+id/link" |
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:layout_alignParentEnd="true" |
|
|
|
|
android:layout_alignParentBottom="true" |
|
|
|
|
android:layout_margin="16dp" |
|
|
|
|
app:backgroundTint="@color/blue_500" |
|
|
|
|
app:layout_anchor="@id/pager" |
|
|
|
|
app:layout_anchorGravity="end|bottom" |
|
|
|
|
app:layout_behavior=".ui.custom.CustomFabBehavior" |
|
|
|
|
app:srcCompat="@drawable/ic_link" |
|
|
|
|
app:tint="@color/white" /> |
|
|
|
|
|
|
|
|
|
</RelativeLayout> |
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |