我用CustomScrollBarUI类创建了一个Swing应用程序。但是在模仿后程序没有按预期工作.Scrollpane UI没有改变。 主要中添加了UIManager.put("ScrollBarUI", CustomScrollPaneUI.class.getName());
。任何有解决方案的人请帮忙......
提前致谢。 ( ProGuard 用于妄想)
public class CustomScrollPaneUI extends BasicScrollBarUI {
public static ComponentUI createUI(JComponent c) {
return new CustomScrollPaneUI();
}
protected JButton createDecreaseButton(int orientation) {
return new BasicArrowButton(orientation, Color.white, Color.white, Color.black, Color.white);
}
protected JButton createIncreaseButton(int orientation) {
return new BasicArrowButton(orientation, Color.white, Color.white, Color.black, Color.white);
}
@Override
protected void paintTrack(Graphics g, JComponent c, Rectangle trackBounds) {
g.setColor(Color.black);
g.drawRect(trackBounds.x, trackBounds.y, trackBounds.width, trackBounds.height);
g.setColor(Color.white);
g.fillRect(trackBounds.x, trackBounds.y, trackBounds.width, trackBounds.height);
if (trackHighlight == DECREASE_HIGHLIGHT) {
paintDecreaseHighlight(g);
} else if (trackHighlight == INCREASE_HIGHLIGHT) {
paintIncreaseHighlight(g);
}
}
@Override
protected void paintThumb(Graphics g, JComponent c, Rectangle thumbBounds) {
if (thumbBounds.isEmpty() || !scrollbar.isEnabled()) {
return;
}
Graphics2D g2 = (Graphics2D) g;
int w = thumbBounds.width;
int h = thumbBounds.height;
GradientPaint gradientPaint = new GradientPaint(0, w, Color.gray, w, h, Color.lightGray);
g.translate(thumbBounds.x, thumbBounds.y);
g.drawRoundRect(0, 0, w, h, 5, 5);
g2.setPaint(gradientPaint);
g.fillRoundRect(0, 0, w, h, 5, 5);
g2.setPaint(gradientPaint);
g.translate(-thumbBounds.x, -thumbBounds.y);
}}
答案 0 :(得分:1)
混淆对您的字节码应用修改,因此依赖于反射的事情可能不会像预期的那样起作用。
一般方法是使用proguard obfuscation options(参见“保留选项和混淆选项”部分)来保持类/其他字节码属性不被混淆以本地化您的问题。
答案 1 :(得分:1)
如果在编译时这段代码我不会感到惊讶
UIManager.put("ScrollBarUI", CustomScrollPaneUI.class.getName());
已解决将未混淆的类名作为参数放入put方法调用。
然而,在混淆了您的类名更改后,UIManager不知道如何处理您的模糊类名。