Slider with bullet in android.
  Add Dependency in gradle:   implementation 'com.github.smarteist:autoimageslider:1.3.2-appcompat'  implementation 'com.github.bumptech.glide:glide:4.10.0'  annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'           Add in Xml    < androidx.cardview.widget.CardView      xmlns: android = "http://schemas.android.com/apk/res/android"      xmlns: app = "http://schemas.android.com/apk/res-auto"      android :layout_width= "fill_parent"      android :layout_height= "wrap_content"      android :orientation= "horizontal"      app :cardCornerRadius= "3dp"      app :cardUseCompatPadding= "true"     >      < com.smarteist.autoimageslider.SliderView          android :id= "@+id/imageSlider"          android :layout_width= "match_parent"          android :layout_height= "220dp"          app :sliderAnimationDuration= "600"          app :sliderA...