You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -73,7 +82,7 @@ This should usually be placed above the ViewPager it represents.
73
82
app:stl_drawDecorationAfterTab="false"
74
83
/>
75
84
76
-
<android.support.v4.view.ViewPager
85
+
<androidx.viewpager.widget.ViewPager
77
86
android:id="@+id/viewpager"
78
87
android:layout_width="match_parent"
79
88
android:layout_height="match_parent"
@@ -198,8 +207,8 @@ public class SmartTabLayout extends HorizontalScrollView {
198
207
199
208
Utility has two types available to suit the Android support library.
200
209
201
-
* utils-v4 library contains the PagerAdapter implementation class for _android.support.v4.app.Fragment_
202
-
* utils-v13 library contains the PagerAdapter implementation class for _android.app.Fragment_
210
+
* utils-v4 library contains the PagerAdapter implementation class for _androidx.fragment.app.Fragment_
211
+
*(Deprecated) utils-v13 library contains the PagerAdapter implementation class for _android.app.Fragment_
203
212
204
213
The two libraries have different Android support libraries that depend,
205
214
but implemented functionality is the same.
@@ -257,7 +266,7 @@ public void onPageSelected(int position) {
257
266
258
267
```
259
268
260
-
*__Notes:__ If using fragment inside a ViewPager, Must be use [Fragment#getChildFragmentManager()](http://developer.android.com/reference/android/support/v4/app/Fragment.html#getChildFragmentManager).*
269
+
*__Notes:__ If using fragment inside a ViewPager, Must be use [Fragment#getChildFragmentManager()](https://developer.android.com/reference/androidx/fragment/app/Fragment.html#getChildFragmentManager).*
0 commit comments