AndroidImageSlider
AndroidImageSlider copied to clipboard
第一张图片闪过
为什么进入界面,即使把自动播放禁止了,还是会闪过第一张图片,直接从第二张开始才正常。
我也遇到这样的问题了,你解决了吗
我也是
我这每次初始化结束,会从最后一页闪回第一页,折腾了1天。你们的问题未遇到过
请问解决了么?我也遇到了这个问题
解决了,需要修改他的源代码
发件人: aymoreyn [email protected] 发送时间: 2016年10月16日 16:14 收件人: daimajia/AndroidImageSlider 抄送: coder2014; Comment 主题: Re: [daimajia/AndroidImageSlider] 第一张图片闪过 (#223)
请问解决了么?我也遇到了这个问题
― You are receiving this because you commented. Reply to this email directly, view it on GitHubhttps://github.com/daimajia/AndroidImageSlider/issues/223#issuecomment-254033738, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AHKaDtXkjyzvew4yj3vdhzry_-Xt-AGvks5q0dzYgaJpZM4Ib4TT.
viewHolder.slider.setCurrentPosition(0, true); new Handler().postDelayed(new Runnable() { @Override public void run() { viewHolder.slider.startAutoCycle(); } }, 4000);
我直接用这几行代码 取缔 setDuration 亲测有效
你们是把项目拷贝下来,作为一个library moduler然后改源码?
@aymoreyn 您的方法似乎没有用; 谁有更好地解决方式么?
@coder2014 我也遇到从最后一页闪回第一页的问题,请问要修改什么呢?
same problem ,Have a good solution?
I make a delayed display,but not good
new Handler().postDelayed(new Runnable() { @Override public void run() { slider_layout.setVisibility(View.VISIBLE); slider_layout.startAutoCycle(); } },3000);