How to Disable Seekbar Movable in android
This post about how to disable seekbar cussor movable
This post about how to disable seekbar cussor movable
halfSeekBar.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View arg0,
MotionEvent arg1) {
return true;
}
});
No comments:
Post a Comment