Create a paging list so that users can scroll to access content too large to fit on a single screen. Horizontal paging lists can help users navigate through content such as images, slideshows, or product carousels. Vertical paging lists are useful for content-heavy apps where users may need to scroll through a large number of items, such as articles.
Version compatibility
This implementation requires that your project minSDK be set to API level 21 or higher.
Dependencies
Create a paging list
You can configure a horizontal or vertical paging list, depending on the orientation required for your app. The following code creates a horizontal paging list displaying 10 items:
Key points about the code
- The
HorizontalPager
composable provides a horizontally scrollable list of items.- To create a vertical paging list, use the
VerticalPager
composable instead.
- To create a vertical paging list, use the
- Each page in the list contains a
Text
object that displays the string "Page" and the page index number. - An instance of
rememberPagerState()
persists a page's state when the user navigates away, and displays the same page when the user returns to it.
Results
HorizontalPager
.Collections that contain this guide
This guide is part of these curated Quick Guide collections that cover broader Android development goals:
![](/static/images/quick-guides/collection-illustration.png)
Display a list or grid
![](/static/images/quick-guides/collection-illustration.png)
Display interactive components
![](/static/images/quick-guides/collection-illustration.png)