I have a slider with daimajia like this
<com.daimajia.slider.library.SliderLayout
android:id="@+id/bsNews"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bck_rounded"
custom:indicator_visibility="invisible"
custom:pager_animation_span="1100"/>
and i want the slider to auto-cycle, but we wouldn't touch it and disable swipe left and right in slider. can help me?
One approach can be : that you need to extend existing functionality(SliderLayout) and change it to receive touch events and do nothing on those touches.
Can you think along these lines?
If you are still confused, check out this original answer to a similar query.