Open GoogleCodeExporter opened 9 years ago
Did you figure it out? I face the marquee effect in TextView too,it didn't
function in the wheelView.
Original comment by yoghourt...@gmail.com
on 16 May 2014 at 10:12
I figure it out. Because the WheelView didn't invalidate itself.In Activity,add
the code :
Handler handler = new Handler() {
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
wheelview.invalidate();
sendEmptyMessageDelayed(0, 0);
}
};
handler.sendEmptyMessage(0);
Then the TextView Marquee effect works.
I had try the TextView Marquee effect in ListView, the Marquee effect works.I
gonna check the ListView source code ,see what differences between ListView
and WheelView.
Original comment by yoghourt...@gmail.com
on 19 May 2014 at 10:06
Original issue reported on code.google.com by
yksix0...@gmail.com
on 3 Feb 2012 at 4:39