How to auto scroll images in android

1.6k Views Asked by At

I want to display bunch of images at the starting of my app and changing images one after another sequentially with slow auto horizantal scrolling can any one tell me how to do this android I searched in Google but I didn't get the answer can any one tell me how to do this please thanks in big advance

2

There are 2 best solutions below

0
On

You can use ViewPager for screen slides

0
On

You can use the ViewPager for Image slider in android to scroll images:

<android.support.v4.view.ViewPager
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/pager"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />