博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android中EditText的inputType属性值
阅读量:6456 次
发布时间:2019-06-23

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

hot3.png

android中inputType属性在EditText输入值时启动的虚拟键盘的风格有着重要的作用。这也大大的方便的操作。有时需要虚拟键盘只为字符或只为数字。所以inputType尤为重要。

<EditText android:layout_width="fill_parent" android:layout_height="wrap_content"android:inputType="text" />

//文本类型,多为大写、小写和数字符号。
    android:inputType="none"
    android:inputType="text"
    android:inputType="textCapCharacters" 字母大写
    android:inputType="textCapWords" 首字母大写
    android:inputType="textCapSentences" 仅第一个字母大写
    android:inputType="textAutoCorrect" 自动完成
    android:inputType="textAutoComplete" 自动完成
    android:inputType="textMultiLine" 多行输入
    android:inputType="textImeMultiLine" 输入法多行(如果支持)
    android:inputType="textNoSuggestions" 不提示
    android:inputType="textUri" 网址
    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:textColorHint设置提示hint信息的颜色。 

//数值类型
    android:inputType="number" 数字
    android:inputType="numberSigned" 带符号数字格式
    android:inputType="numberDecimal" 带小数点的浮点格式
    android:inputType="phone" 拨号键盘
    android:inputType="datetime" 时间日期
    android:inputType="date" 日期键盘
    android:inputType="time" 时间键盘

转载于:https://my.oschina.net/u/1866821/blog/360894

你可能感兴趣的文章
我的友情链接
查看>>
kafka 安装 单机测试
查看>>
MTTR/MTTF/MTBF图解
查看>>
OpenGl中如何在一个在窗口坐标中固定大小绘图
查看>>
Mac OS X 从零开始系列教程 7 --语言输入法设定
查看>>
Cloudera Hadoop 5.2 安装
查看>>
LAMP架构(apache安装,apache工作原理介绍)
查看>>
Spring整体介绍
查看>>
文字超长用省略号
查看>>
如意云使用经验
查看>>
【转自IT168 应用】面向对象存储所需要知道的十四大问题
查看>>
openfire的配置和逻辑简要
查看>>
Application's Security component
查看>>
用大白话聊聊分布式系统
查看>>
正则表达式集合
查看>>
Plasma Active进入Beta阶段
查看>>
被某出行(原名是某单车)给恶心到了,给你们说说我的故事
查看>>
php-fpm文件描述符pid文件应该让nginx有权限访问才行
查看>>
Mac php版本切换
查看>>
php在nginx下输出缓冲
查看>>