本文介绍了Android的 - 添加下一个和$ P $光伏按钮,在点击编辑文字在我的活动似乎softkeyboard的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要的NEXT和$ P $的pV按钮添加到我出现在点击编辑文本字段在我的活动页面上的软键盘。请为我提供的指针在实施这一概念的教程。
I need to add the NEXT and PREV button to my soft keyboard which appears on clicking on an edit text field in my activity page. Kindly provide me with the pointers for tutorials on implementing this concept.
在此先感谢。
推荐答案
您可以通过
android:imeOptions="actionNext"
或程序化通过
or by programatic by
yourEditText.setImeOptions(EditorInfo.IME_ACTION_NEXT);
这篇关于Android的 - 添加下一个和$ P $光伏按钮,在点击编辑文字在我的活动似乎softkeyboard的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!