Android image slider with indicator | auto image slider in android studio kotlin | kotlin tutorial

Devendra Chavan
1 min readJun 13, 2021

Hello, in this Tutorial we will learn How to Create Android ImageSlider with dot Indicator using third party library which is easy to use.

STEP 1 : Create new Android Studio Project.

STEP 2 : After Creating new Project Setup build.gradle and sync project

allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}

dependencies {
implementation 'com.github.denzcoskun:ImageSlideshow:0.1.0'
}

STEP 3: Add ImageSlider to your activity_main.xml layout And Add ImageSlider to your MainActivity.kt Activity

STEP 4: And Add uses-permission in your app manifest

<uses-permission android:name=”android.permission.INTERNET”/>

STEP 5 : And finally run the App and See the output

Show More Tutorials And Feel free to SUBSCRIBE to my YOUTUBE channel Thank You :-)

--

--