Back to project page SmartTools.
The source code is released under:
GNU General Public License
If you think the Android project SmartTools listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.nj.simba.ctrls; //from w ww .j a v a 2 s .c o m import java.awt.Color; import javax.swing.JButton; @SuppressWarnings("serial") public class ToolbarBtn extends JButton { public ToolbarBtn(String text, int x, int y, int w, int h) { setText(text); setBounds(x, y, w, h); setOpaque(false); setContentAreaFilled(false); setFocusPainted(false); setForeground(Color.WHITE); } }