我想在我的自定义键盘上添加4个按钮(选择全部,剪切,复制,粘贴) 但我找不到这样做的方法。我尝试使用这行代码
进行全部选择getCurrentInputConnection().setSelection(0,1000);
但它没有用,所以有任何帮助做这4个按钮(选择全部,剪切,复制,粘贴) 感谢
答案 0 :(得分:0)
您可以使用已注册的EditText
键盘来执行所有操作(选择,复制,剪切,粘贴),就像常规EditText
一样。
这是answer related to your question to help you understand how use the EditText
此外,您还可以从此article了解有关自定义键盘的更多详细信息。