android 禁用音频控制器的搜索栏
我使用以下搜索栏来移动音频的进度。
<SeekBar
android:padding="7dp"
android:id="@+id/SeekBar01"
android:layout_width="245dip"
android:thumb="@drawable/seekthumb2"
android:progressDrawable="@drawable/seekbar1"
android:layout_height="fill_parent"
android:clickable="false"
android:focusable="false"
android:longClickable="false"/>
我想禁用该搜索栏的手动运动。我的意思是,搜索只能通过我的代码移动,不能通过任何其他方式(触摸)访问。
I used the following seek bar for displacing the progress of my audio.
<SeekBar
android:padding="7dp"
android:id="@+id/SeekBar01"
android:layout_width="245dip"
android:thumb="@drawable/seekthumb2"
android:progressDrawable="@drawable/seekbar1"
android:layout_height="fill_parent"
android:clickable="false"
android:focusable="false"
android:longClickable="false"/>
I want to disable the manual motion of this seek bar. i mean the seek can only move by my code and it cannot be accessed by any other means (Touch).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
只需添加触摸事件处理程序并返回 true,如下例所示:
用户将无法通过这种方式触摸和更改进度。
Just add touch event handler and return true, like example below:
User won't be able to touch and change the progress this way.
Kotlin lambda 解决方案:
Kotlin lambda solution:
尝试为“click”事件添加一个空的事件处理程序。
Try adding a empty eventhandler for the event of "click".
试试这个
Try this