您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
要在SeekBar上实现非线性滑动,可以通过自定义SeekBar的Thumb来实现。以下是一个示例代码,用于实现非线性滑动的SeekBar:
public class NonLinearSeekBar extends SeekBar {
public NonLinearSeekBar(Context context) {
super(context);
}
public NonLinearSeekBar(Context context, AttributeSet attrs) {
super(context, attrs);
}
public NonLinearSeekBar(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
public boolean onTouchEvent(MotionEvent event) {
if (!isEnabled()) {
return false;
}
float x = event.getX();
float width = getWidth();
float progress = getMax() * x / width;
if (progress < 0.2 * getMax()) {
setProgress((int) (0.2 * getMax()));
} else if (progress > 0.8 * getMax()) {
setProgress((int) (0.8 * getMax()));
} else {
setProgress((int) progress);
}
if (event.getAction() == MotionEvent.ACTION_UP) {
setProgress(getProgress());
}
return true;
}
}
<com.example.myapplication.NonLinearSeekBar
android:id="@+id/nonLinearSeekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="100"
android:progress="50"/>
通过以上代码,在非线性SeekBar中,当Thumb滑动到进度条的20%和80%之间时,将会停止滑动。你可以根据自己的需求调整这个比例来实现不同的非线性滑动效果。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。