Android-ScreenSlidePager alternatives and similar packages
Based on the "ViewPager Widget" category.
Alternatively, view Android-ScreenSlidePager alternatives based on common mentions on social networks and blogs.
-
Android-ViewPagerIndicator
Paging indicator widgets compatible with the ViewPager from the Android Support Library and ActionBarSherlock. Originally based on Patrik Åkerfeldt's ViewFlow. -
SCViewPager
A simple keyframe-based animation framework for UIKit. Perfect for scrolling app intros. -
WoWoViewPager
Combine ViewPager and Animations to provide a simple way to create applications' guide pages. -
SpringIndicator
A spring indicator like Morning Routine guide. -
android-auto-scroll-view-pager
Android auto scroll viewpager or viewpager in viewpager -
Onboarding
A beautiful way to introduce users to your app -
HollyViewPager
A different beautiful ViewPager, with quick swipe controls -
LoopingViewPager
An android ViewPager extension allowing infinite scrolling -
MultiViewPager
The MultiViewPager is an extension of the support-v4 library's ViewPager that allows the pages to be wider or narrower than the ViewPager itself. It takes care of aligning the pages next to each other, and always keeping the selected page centered. -
InfiniteViewPager
Augment Android's ViewPager with wrap-around functionality. -
ExpandablePager
ViewPager that slides vertically. -
FlycoPageIndicator
A Page Indicator Lib is realized in a different way. -
parallaxviewpager
[Development stopped in 2014. Unfinished and not stable - not recommended to use.] An easy-to-use ViewPager subclass with parallax background effect for Android apps. -
VerticalViewPager
Vertical implementation of Android ViewPager -
ViewPager3D
Extension of Android ViewPager with a 3D swipe effect -
NumericPageIndicator
Android - A ViewPager page indicator that displays the current page number and (optionally) the page count -
ViewPagerExtensions
A set of custom views for the ViewPager from the Android Support Package -
glazy-viewpager
Android ViewPager template with cool animation. -
LastPagerAdapter
Don't write a ViewPager Adapter! Hook up your ViewPager to your data model using Android Data Binding Framework. With Kotlin support! -
Sliding Tab With Color Icons
Library for Sliding Tab With Color Icons!
Appwrite - The open-source backend cloud platform
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Android-ScreenSlidePager or a related project?
README
PagerIndicator
Pager (especially for ViewPager) indicator in two styles: circle & fraction.
Demo
circle | fraction |
---|---|
Dependency
implementation 'me.liangfei:pagerindicator:0.0.2'
Usage
Two attributes are provided:
app:indicator_type
= [fraction | circle].app:indicator_spacing
works only for the circle type indicator.
Step 1: add PageIndicator
to the bottom of the ViewPager.
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<androidx.viewpager.widget.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<me.liangfei.indicator.PagerIndicator
android:id="@+id/indicator"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="20dp"
android:layout_marginLeft="20dp"
android:layout_marginStart="20dp"
android:gravity="bottom|center_horizontal"
app:indicator_spacing="5dp"
app:indicator_type="fraction" />
</merge>
Step 2: pass the ViewPager instance to the PagerIndicator instance.
val pageIndicator = findViewById(R.id.indicator);
pageIndicator.setViewPager(pager);
You can just take PageIndicator
as a normal view to make your layout, because it extends LinearLayout
.
Check the [app](app) module for more details.