WheelView
WheelView copied to clipboard
can this component slide by its own ? for example if a i press a button the widget to start sliding .
Hello,
For me, I modify the source in WheelDialog, make mWheelView public. Then I can use WheelView's( extend ListView ) method.
ex. int index = 5; WheelDialog dialog = new WheelDialog(this);
// scroll to position [index] dialog.mWheelView.smoothScrollToPosition(index);
// stop scrolling dialog.mWheelView.smoothScrollBy(0, 0);