我正在使用搜索栏。我只想通过移动拇指来控制它。
如何禁用对progressdrawable的点击?
我试过android:clickable="false"
了,但没有用。
我在 XML 中寻找条码
<SeekBar
android:id="@+id/myseek"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:maxHeight="500dp"
android:minHeight="50dp"
android:paddingBottom="30dp"
android:progressDrawable="@drawable/progress_left"
android:thumb="@drawable/left_unlocker_bkg" >
</SeekBar>
我的 onSeekChangedListner 的 Seekbar 代码
unlockSeekBar.setOnSeekBarChangeListener(new OnSeekBarChangeListener() {
@Override
public void onStopTrackingTouch(SeekBar seekBar) {
toastText.setVisibility(View.GONE);
seekBar.setProgress(0);
}
@Override
public void onStartTrackingTouch(SeekBar seekBar) {
if (seekBar.getProgress() < 10) {
seekBar.setProgress(0);
}
toastText.setVisibility(View.VISIBLE);
toastText.setText("Slide to Unclock");
}
@Override
public void onProgressChanged(SeekBar seekBar,
int progress, boolean fromUser) {
if (progress == 100) {
Vibrator v = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);
v.vibrate(100);
finish();
}
}
});
目前,用户可以点击进度和拇指移动 I want to DISABLE it 。请帮忙