Back to project page AerisAndroidLibrary.
The source code is released under:
Apache License
If you think the Android project AerisAndroidLibrary 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.example.edithelp; /*w w w . j a v a 2 s . c om*/ import android.widget.EditText; /** * Delegate that aids in the EditTextEnterListners handling * @author bcollins * */ public interface EnterPressedDelegate { /** * Handles the keyboard press for the EditText * @param viewId - id of the EditText * @param edit - the EditText for direction String grabs */ void onEnterPressed(int viewId, EditText edit); }