daimajia / AndroidImageSlider

An amazing and convenient Android image slider.
MIT License
5.62k stars 1.66k forks source link

I don't want animation and indicator in one content. #419

Closed halilozel1903 closed 5 years ago

halilozel1903 commented 5 years ago

I don't want animation and numbers in one content.

image

If I have one content, I don't want use indicator

Can you help me?

halilozel1903 commented 5 years ago

I finally solved.

The solution is very simple :)

`

                          if (imageSlider.getPagerIndicator().getmItemCount() == 1){
                            imageSlider.setIndicatorVisibility(PagerIndicator.IndicatorVisibility.Invisible);
                            imageSlider.stopAutoCycle();
                        }else {
                            imageSlider.setIndicatorVisibility(PagerIndicator.IndicatorVisibility.Visible);

                        }

`

image