我试图做一个进度条,旋钮和背景都是9补丁。我在右边和左边得到了这个旋钮边距
ScreenShot:ProgressBar
我知道它,因为背景和旋钮是9补丁,我测试了它。有谁知道如何解决这一问题?感谢
继承人的代码
WithAncestor
答案 0 :(得分:2)
我通过添加此代码找到了解决方案:
//for the knobBefore
pbStyle.knobBefore.setLeftWidth(0);
pbStyle.knobBefore.setRightWidth(0);
//for the background
pbStyle.background.setLeftWidth(0);
pbStyle.background.setRightWidth(0);
如果是垂直进度栏,请使用.setBottomHeight()
和.setTopHeight();
我希望这有帮助!