Back to project page crabox.
The source code is released under:
Apache License
If you think the Android project crabox 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.costular.crabox.actors; /* w w w. j a v a 2 s. c o m*/ import com.badlogic.gdx.scenes.scene2d.ui.Button; import com.costular.crabox.Cbx; public class ToggleButton extends Button{ public ToggleButton(ButtonStyle style) { super(style); } @Override public void setChecked(boolean bool) { super.setChecked(bool); Cbx.getAudio().setCanPlay(!bool); } }