通过在水平条上滑动图像来选择值

时间:2017-01-31 11:36:56

标签: android

enter image description here

我想在我的应用程序中提到下面提到的功能,但不知道我应该使用哪个小部件。

如上图所示,用户可以在水平条上滑动图像/视图来选择值,用户可以选择0到720之间的任何值,每30个点有一个里程碑

现在主要的一点是,一旦用户在水平线上向右移动图像,Line必须向左滚动并且必须相应地更改里程碑(如90,120,150 ..... 720)所以基本上它的水平值选择器和用户可以滑动它以选择所需的数字。

用户也可以从右向左滑动以选择以前的值。值固定为0到720

1 个答案:

答案 0 :(得分:0)

试试这个!! https://github.com/AnderWeb/discreteSeekBar

并尝试将拇指更改为可绘制

Drawable myThumb = getResources().getDrawable(R.drawable.slider_button);
myThumb.setBounds(new Rect(0, 0, myThumb.getIntrinsicWidth(),myThumb.getIntrinsicHeight()));
skbr.setThumb(myThumb);

How can I change the Android SeekBar Thumb drawable after 'onCreate' method?