请帮我通过xml文件禁用搜索栏,而不是通过代码
<SeekBar
........
android:clickable="false"
android:longClickable="false"
android:focusable="false"
android:focusableInTouchMode="false" />
尝试过以上所有属性,但无法禁用搜索栏。 提前致谢
答案 0 :(得分:1)
简单:
android:enabled="false"
答案 1 :(得分:0)
正如this answer所述,您可以覆盖setOnTouchListener
对象上的SeekBar
事件,并返回true
以禁止用户更改控制值。
我希望这会有所帮助;)