博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android EditText inputType说明
阅读量:6371 次
发布时间:2019-06-23

本文共 1279 字,大约阅读时间需要 4 分钟。

在开发的过程中,通常会用到EditText,如何让虚拟键盘来适应输入框中内容的类型,通常我们都会在xml文件中加入android:inputType=""。

android:inputType="none"android:inputType="text"android:inputType="textCapCharacters"//前3个输入普通字符android:inputType="textCapWords"//单词首字母大小

android:inputType="textCapSentences"//仅第一个字母大小

android:inputType="textAutoCorrect"android:inputType="textAutoComplete"//前两个自动完成

android:inputType="textMultiLine"//多行输入

android:inputType="textImeMultiLine"//输入法多行(不一定支持)

android:inputType="textNoSuggestions"//不提示

android:inputType="textUri"//URI格式

android:inputType="textEmailAddress"//电子邮件地址格式

android:inputType="textEmailSubject"//邮件主题格式

android:inputType="textShortMessage"//短消息格式

android:inputType="textLongMessage"android:inputType="textPersonName"//人名格式

android:inputType="textPostalAddress"//邮政格式

android:inputType="textPassword"//密码格式

android:inputType="textVisiblePassword"//密码可见格式

android:inputType="textWebEditText"//作为网页表单的文本格式

android:inputType="textFilter"//文本筛选格式

android:inputType="textPhonetic"//拼音输入格式

android:inputType="number"//数字格式

android:inputType="numberSigned"//有符号数字格式

android:inputType="numberDecimal"//可以带小数点的浮点格式

android:inputType="phone"//拨号键盘

android:inputType="datetime"android:inputType="date"//日期键盘

android:inputType="time"//时间键盘

转载于:https://www.cnblogs.com/awe061/p/5213637.html

你可能感兴趣的文章
并发与并行的问题
查看>>
Openssl解析私pfx/p12证书(1)
查看>>
Fedora 安装Dr.com 所需32位运行库
查看>>
几个Xaml开发Visual Studio 2010设置技巧
查看>>
stm32系列单片机之printf重定向
查看>>
如何从windows平台自动连接到Linux/Mac机运行shell脚本?
查看>>
【HBase从入门到精通系列】如何避免HBase写入过快引起的各种问题
查看>>
新功能:阿里云负载均衡SLB支持HTTP访问强制跳转HTTPS
查看>>
抖音网红小姐姐和她的老板带你玩转阿里云双11
查看>>
sysbench的框架实现介绍
查看>>
ESX 4.0 vsd-mount 错误
查看>>
Linux性能优化 第二章 性能工具:系统CPU
查看>>
收集FreeBSD 磁盘实时IO数据脚本
查看>>
我的友情链接
查看>>
nginx日志的错误级别
查看>>
第19集 介系词
查看>>
远程桌面服务
查看>>
Oracle数据导入导出
查看>>
使用Varnish实现web前置缓存加速
查看>>
用dos命令启动服务程序或关闭服务程序
查看>>