We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WheelView wheelView = (WheelView) findViewById(R.id.wheelview); wheelView.setWheelAdapter(new ArrayWheelAdapter(this)); // 文本数据源 wheelView.setSkin(WheelView.Skin.Common); // common皮肤 wheelView.setWheelData( ?); // 数据集合
The text was updated successfully, but these errors were encountered:
use this snippet, it works just fine with me
var wheelView= findViewById(R.id.wheel_view) as WheelView<String> with(weightWV) { setWheelAdapter(ArrayWheelAdapter(activity)) skin = WheelView.Skin.Holo setWheelData(getWheelList()) selection = getWheelList().size / 2 style = wvStyle }
Sorry, something went wrong.
No branches or pull requests
WheelView wheelView = (WheelView) findViewById(R.id.wheelview);
wheelView.setWheelAdapter(new ArrayWheelAdapter(this)); // 文本数据源
wheelView.setSkin(WheelView.Skin.Common); // common皮肤
wheelView.setWheelData( ?); // 数据集合
The text was updated successfully, but these errors were encountered: