gityan
gityan
遇到同样的问题,想改变timer的速度但比较麻烦,后来想了一个办法绕了过去。 其实最终要实现的效果是2倍速下,原本在100s处显示的弹幕在第50s显示。时间流逝的速度既然改不了,那么可以改变相对于这个流速的位置。在添加弹幕的时候修改弹幕时间 danmaku.time = item.position * 1000/speed 设置speed的时候,清空已经添加的弹幕,重新add弹幕。然后seek一下。seek方法要改成 danmakuView.seekTo(position/speed)。凑合着用吧。
我也遇到这个问题 nexus 5x android 8.1.0 原生系统 后置摄像头画面倒立 前置的没问题
I have the same problem. Did you get solution?
http://www.cnblogs.com/blog-wenfeng/archive/2013/04/15/3022327.html I found a way to resolve it. Some one modified horizontallistview 1.5. Here is the 1.5.1, which can use setselection() method.
Maybe,it's useful.You can use setSelectionFromLeft() to try. ------------------ 原始邮件 ------------------ 发件人: "dimitrireef";[email protected]; 发送时间: 2014年2月19日(星期三) 下午4:24 收件人: "dinocore1/DevsmartLib-Android"[email protected]; 抄送: "gityan"[email protected]; 主题: Re: [DevsmartLib-Android] How to let horizontal listview could be use...