android disable seek bar for audio controller

廉价感情. 提交于 2019-12-03 02:23:00

Just add touch event handler and return true, like example below:

    seekBar.setOnTouchListener(new OnTouchListener(){
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            return true;
        }
    });

User won't be able to touch and change the progress this way.

Try adding a empty eventhandler for the event of "click".

Try this

seekBar.setEnabled(false);
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!