Android:如何显示键盘

发布于 2024-10-12 10:46:21 字数 101 浏览 3 评论 0原文

我正在开发简单的 android 应用程序。我的主程序需要查看键盘(只是字母)。我尝试添加按钮,然后添加标题、事件,但配置应用程序需要花费大量时间。也许还有另一种方法来显示简单的字母键盘?

i am developing simple adroid application. I main program i need to see kaypad(just letters). I have tried to add buttons and then and caption, events, but it takes a lot of time to configure app. Maybe there is another way to display simple letter keypad?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不美如何 2024-10-19 10:46:21
EditText EditTextName=findViewById(R.id.EditText01);
((InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE)).showSoftInput(EditTextName), 0);

在 edittext 焦点侦听器中编写上面的代码。然后只要该视图具有焦点,您就可以得到键盘

EditText EditTextName=findViewById(R.id.EditText01);
((InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE)).showSoftInput(EditTextName), 0);

write above code in edittext focus listener.Then u got the keypad whenever that view has focus

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文