本文介绍了Android删除SeekBar背景的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

有没有办法可以删除SeekBar android小部件中的背景条图像?

Is there a way I can remove the background bar image in the SeekBar android widget?

我只是想让它显示一个没有进度条的滑块。

I just want it to show a slider with no progress bar behind it.

任何帮助?

推荐答案

我解决了自己的问题。

Well I solved my own problem.

要删除背景,您必须创建一个空白drawable并将其设置为progressDrawable:

To remove the background, you have to create a blank drawable and set it to the progressDrawable:

satBar.setProgressDrawable(invisibleBackground);

将其设置为null似乎不起作用。

Setting it to null doesn't seem to work.

这篇关于Android删除SeekBar背景的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-06 17:49