我在我的应用程序中使用了搜索栏,并希望对其进行自定义。
我想更改可绘制对象(我想使用自己的图像)。怎么做?
从代码:
Drawable thumb = context.getResources().getDrawable(R.drawable.slider_thumb);
mSlider.setThumb(thumb);
mSlider.setProgressDrawable(context.getResources().getDrawable(R.drawable.slider_track));
mSlider 是一个SeekBar。