Back to project page game-api-android.
The source code is released under:
MIT License
If you think the Android project game-api-android 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.gameengine.icadroids.forms; //w w w .ja v a 2s . com import android.view.View; /** * Interface for receiving inputs from touchable form elements. * * @author Bas van der Zandt * */ public interface IFormInput { /** * When a touchable element has been clicked on a form, this method will be * Triggered. * * @param touchedElement * The view element that has been touched */ void formElementClicked(View touchedElement); }