0
我需要在我的活動中使用按鈕,而不是android鍵盤。 我FINDE例子(http://developer.android.com/guide/topics/text/creating-input-method.html):如何在應用程序中模擬鍵盤事件
InputConnection ic = getCurrentInputConnection();
ic.deleteSurroundingText(4, 0);
ic.commitText("Hello", 1);
ic.commitText("!", 1);
但我不明白如何在我的應用程序中使用它。我應該在哪裏創建擴展InputMethodService的類以及此類必須具備的類。 請幫忙!!!