Back to project page Android-Lib-Pen.
The source code is released under:
Apache License
If you think the Android project Android-Lib-Pen 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 android.lib.pen; // w w w . j av a 2 s .c o m import android.content.Context; import android.util.AttributeSet; import android.widget.ToggleButton; public final class PenButton extends ToggleButton { public PenButton(final Context context) { super(context); } public PenButton(final Context context, final AttributeSet attrs) { super(context, attrs); } public PenButton(final Context context, final AttributeSet attrs, final int defStyle) { super(context, attrs, defStyle); } @Override public void toggle() { } }