Skip to content

Instantly share code, notes, and snippets.

@Fbada006
Created May 3, 2020 06:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fbada006/4abdec3be8dac05904f4c8acd517fc15 to your computer and use it in GitHub Desktop.
Save Fbada006/4abdec3be8dac05904f4c8acd517fc15 to your computer and use it in GitHub Desktop.
Layout for ViewPager2 with a LinearLayout for sliding dots
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/slidingViewPager"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<LinearLayout
android:id="@+id/slider_dots"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="12dp"
android:layout_gravity="bottom|center_horizontal"
android:orientation="horizontal" />
</FrameLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment