@@ -42,17 +42,17 @@ Firstly you need to place `Filter` above your `RecyclerView` in the layout file
4242
4343``` xml
4444<?xml version =" 1.0" encoding =" utf-8" ?>
45- <android .support.design .widget.CoordinatorLayout xmlns : android =" http://schemas.android.com/apk/res/android"
45+ <androidx .coordinatorlayout .widget.CoordinatorLayout xmlns : android =" http://schemas.android.com/apk/res/android"
4646 xmlns : app =" http://schemas.android.com/apk/res-auto"
4747 xmlns : tools =" http://schemas.android.com/tools"
4848 android : layout_width =" match_parent"
4949 android : layout_height =" match_parent" >
5050
51- <android .support.design.widget .AppBarLayout
51+ <com .google.android.material.appbar .AppBarLayout
5252 android : layout_width =" match_parent"
5353 android : layout_height =" wrap_content" >
5454
55- <android .support.v7 .widget.Toolbar
55+ <androidx .appcompat .widget.Toolbar
5656 android : layout_width =" match_parent"
5757 android : layout_height =" ?attr/actionBarSize"
5858 android : background =" @color/colorPrimary"
@@ -63,7 +63,7 @@ Firstly you need to place `Filter` above your `RecyclerView` in the layout file
6363 android : layout_width =" match_parent"
6464 android : layout_height =" match_parent" >
6565
66- <android .support.v7 .widget.AppCompatImageView
66+ <androidx .appcompat .widget.AppCompatImageView
6767 android : layout_width =" 24dp"
6868 android : layout_height =" 24dp"
6969 android : layout_centerVertical =" true"
@@ -78,7 +78,7 @@ Firstly you need to place `Filter` above your `RecyclerView` in the layout file
7878 android : textColor =" @android:color/white"
7979 android : textSize =" 20sp" />
8080
81- <android .support.v7 .widget.AppCompatImageView
81+ <androidx .appcompat .widget.AppCompatImageView
8282 android : layout_width =" 24dp"
8383 android : layout_height =" 24dp"
8484 android : layout_alignParentRight =" true"
@@ -88,16 +88,16 @@ Firstly you need to place `Filter` above your `RecyclerView` in the layout file
8888
8989 </RelativeLayout >
9090
91- </android .support.v7 .widget.Toolbar>
92- </android .support.design.widget .AppBarLayout>
91+ </androidx .appcompat .widget.Toolbar>
92+ </com .google.android.material.appbar .AppBarLayout>
9393
9494 <FrameLayout
9595 android : layout_width =" match_parent"
9696 android : layout_height =" match_parent"
9797 android : background =" #E4E6E3"
9898 app : layout_behavior =" @string/appbar_scrolling_view_behavior" >
9999
100- <android .support.v7 .widget.RecyclerView
100+ <androidx .recyclerview .widget.RecyclerView
101101 android : id =" @+id/list"
102102 android : layout_width =" match_parent"
103103 android : layout_height =" wrap_content"
@@ -110,7 +110,7 @@ Firstly you need to place `Filter` above your `RecyclerView` in the layout file
110110 android : layout_height =" wrap_content" />
111111
112112 </FrameLayout >
113- </android .support.design .widget.CoordinatorLayout>
113+ </androidx .coordinatorlayout .widget.CoordinatorLayout>
114114
115115```
116116
0 commit comments