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"/>
如上所述,但它没有向压力按钮写任何东西。
答案 0 :(得分:1)
我找到了解决方案..
@覆盖 public void onText(CharSequence text){
InputConnection ic = getCurrentInputConnection(); ic.commitText(text, 0); }