LibGdx ProgressBar旋钮边距?

时间:2016-02-18 22:53:29

标签: java libgdx

我试图做一个进度条,旋钮和背景都是9补丁。我在右边和左边得到了这个旋钮边距

ScreenShot:ProgressBar

我知道它,因为背景和旋钮是9补丁,我测试了它。有谁知道如何解决这一问题?感谢

继承人的代码

WithAncestor

ScrennShot 9-patch:enter image description here

1 个答案:

答案 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();

我希望这有帮助!