1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//이미지 슬라이더
String[] arr = {
    "https://s.pstatic.net/static/www/img/2017/sp_main_v170424.png",
    "https://s.pstatic.net/static/www/img/2017/sp_main_v170424.png",
    "https://s.pstatic.net/static/www/img/2017/sp_main_v170424.png",
    "https://s.pstatic.net/static/www/img/2017/sp_main_v170424.png",
    "https://s.pstatic.net/static/www/img/2017/sp_main_v170424.png"
};
 
mBinding.slider.removeAllSliders();
 
for(int i=0;i<arr.length;i++){
    DefaultSliderView dsv = new DefaultSliderView(this);
    dsv.image(arr[i]).setScaleType(BaseSliderView.ScaleType.FitCenterCrop);
    dsv.bundle(new Bundle());
    dsv.getBundle().putString("extra", arr[i]);
    mBinding.slider.addSlider(dsv);
}
 
 
mBinding.slider.setPresetIndicator(SliderLayout.PresetIndicators.Center_Bottom);
mBinding.slider.setCustomAnimation(new DescriptionAnimation());
mBinding.slider.setDuration(4000);
mBinding.slider.setCurrentPosition(0);
cs

'Android' 카테고리의 다른 글

adb shell 명령어  (0) 2020.03.29
TextView ...더보기  (0) 2020.03.29
스피너 값넣기  (0) 2020.03.29
선택 다이얼로그 팝업  (0) 2020.03.29
LayoutInflater  (0) 2020.03.29

+ Recent posts