keyOutputText无法在软键盘上运行

时间:2015-10-28 09:10:44

标签: android keyboard android-softkeyboard

keyOutputText在软键盘上不起作用。

>         <Key android:keyEdgeFlags="left" android:keyOutputText=".net" android:keyLabel=".net"/>
>         <Key android:keyOutputText=".org" android:keyLabel=".org"/>
>         <Key android:keyOutputText=".gov" android:keyLabel=".gov"/>
>         <Key android:keyEdgeFlags="right" android:keyOutputText=".tw" android:keyLabel=".tw"/>

如上所述,但它没有向压力按钮写任何东西。

1 个答案:

答案 0 :(得分:1)

我找到了解决方案..

  

@覆盖       public void onText(CharSequence text){

    InputConnection ic = getCurrentInputConnection();
    ic.commitText(text, 0);


}