Back to project page minak.
The source code is released under:
GNU General Public License
If you think the Android project minak 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 us.minak; //ww w .j a v a 2 s . com import android.inputmethodservice.InputMethodService; import android.view.View; /** * Represent the application input service. */ public class IMEService extends InputMethodService implements InputConnectionGetter { @Override public View onCreateInputView() { final IMEView minakView = (IMEView) getLayoutInflater().inflate(R.layout.ime, null); minakView.setInputConnectionGetter(this); return minakView; } }