Android 上的数字软键盘

Numeric Soft Keyboard on Android(Android 上的数字软键盘)
本文介绍了Android 上的数字软键盘的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在开发一个 android 应用程序,我们在其中使用 WebView 来显示 Web 服务器提供的网页.一切正常,除了当我使用软键盘并切换到数字键输入并从第一个字段移动到下一个字段时,键盘布局自动更改为字母数字.

I am developing an android application where we are using WebView to display Web page being served from Web Server. Everything is working fine except with the problem that when i am using the soft keyboard and switched to numeric key entry and move from first field to next field, the keyboard layout automatically changed to alphanumeric.

只有当我需要输入数字时,有什么方法可以在数字模式下拉出虚拟键盘?

Is there any way using which i can pull up virtual keyboard in numeric mode only when i need to enter numbers only?

感谢和问候.

推荐答案

editTextField.setRawInputType(Configuration.KEYBOARD_QWERTY);

这首先显示带有数字版本的普通键盘,但允许您在它们之间切换.

This shows the normal key pad with the numeric version first, yet allows you to switch between them.

getInput.setRawInputType(Configuration.KEYBOARD_12KEY);

这仅显示数字,没有输入文本值的选项.

This shows numeric only, with no option to enter text values.

我遇到了类似的情况.我只想要数值,但我有一个提示"是文本.将 inputType 设置为 number 将不允许显示提示.这可以很好地解决它.

I ran into a similar situation. I wanted numeric values only, but I have a "hint" that was text. Setting the inputType to number would not allow the hint to be displayed. This works around it fine.

这篇关于Android 上的数字软键盘的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Storing and reading files from Documents directory iOS 5(从 Documents 目录存储和读取文件 iOS 5)
How can i use MYSQL database connection in iphone application useing cocos2d?(如何在使用 cocos2d 的 iphone 应用程序中使用 MYSQL 数据库连接?)
Smoothly drag a Sprite in cocos2d - iPhone(在 cocos2d 中平滑拖动一个 Sprite - iPhone)
CCScrollView scroll and touch events never firing(CCScrollView 滚动和触摸事件永远不会触发)
removing jagged edges of my ropes using antialiasing of OpenGLES(使用 OpenGLES 的抗锯齿去除绳索的锯齿状边缘)
cocos2d Moving between scene(cocos2d 在场景之间移动)