2017-04-13 6 views

答えて

1

Buttonなどを使用しているとします。


Button btn = new Button("My Button"); 
btn.setIcon(myFontIcon); 

そしてボタンを押している間、図示される代替アイコンを提供するsetPressedIcon()方法を使用することができます。あなたは持っているでしょう:


Button btn = new Button("My Button"); 
btn.setIcon(myFontIcon); 
btn.setPressedIcon(myAlternateColorFontIcon); 
関連する問題