其他分享
首页 > 其他分享> > android-如何禁用音频控制器的搜索栏

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" />

但这不起作用.

解决方法:

尝试添加

android:enabled="false"

标签:android-audiomanager,seekbar,android
来源: https://codeday.me/bug/20191023/1915383.html