`
xp9802
  • 浏览: 1208293 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

android:inputType常用取值

 
阅读更多

<EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:inputType="phone" />
   //文本类型,多为大写、小写和数字符号。 
   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"//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"//时间键盘

分享到:
评论

相关推荐

    安卓一些整理的界面笔记

    #### 一、`android:inputType` 常用取值 在安卓开发中,`android:inputType` 属性用于定义输入框中的输入内容类型,它决定了键盘的显示样式及输入行为。了解这些取值对于优化用户体验至关重要。 - **普通字符输入*...

    inputType参数类型说明

    inputType参数类型是Android中的一种重要的布局参数,用于设置控件的布局方式和属性。它可以分为四类:布尔类型、ID类型、像素类型和gravity类型。 布尔类型 布尔类型的inputType参数用于设置控件的水平居中、垂直...

    A0208EditText的使用1

    - `android:inputType="textAutoCorrect"` 和 `android:inputType="textAutoComplete"`:开启自动纠错和补全功能。 - `android:inputType="textMultiLine"`:允许多行输入。 - `android:inputType="textUri"`:...

    Android编程开发之EditText中inputType属性小结

    在Android编程中,`EditText` 是一个常用的视图组件,用于接收用户的文本输入。为了控制虚拟键盘的行为和展示相应的输入字段,`EditText` 提供了一个关键属性 `inputType`。这个属性决定了当用户点击 `EditText` 时...

    EditText篇1

    在新版本的 Android 中,推荐使用 `maxLines="1"` 替代 `singleLine="true"`,并且配合 `android:inputType="text"` 以获得正确效果。 总的来说,理解和熟练运用 `EditText` 的这些知识点是Android应用开发中不可或...

    Android中EditText密码样式设置

    总之,Android中的`EditText`密码样式设置是一项常用功能,通过调整`inputType`属性和监听`CheckBox`状态,我们可以轻松实现显示和隐藏密码的切换。对于用户体验的提升,还可以进一步完善交互设计和视觉效果。

    多功能文本框控件源码

    字符型: InputType属性为varchars 数字型: InputType属性为number 浮点型: InputType属性为formatNumber,floatlength属性为3(小数位数) 选择日期: InputType属性为date,IsDisplayTime为true(显示时间) 大写...

    实现Android键盘的中英文适配

    实现Android键盘的中英文适配 ...通过设置 inputType 属性和 android:digits 属性,可以实现键盘的中英文自动适配。同时,了解 inputType 属性的值也非常重要,以便在不同的输入方式中选择合适的输入方式。

    Android View常用组件

    android:inputType="textPersonName" /&gt; ``` 四、图像视图(ImageView) ImageView用于显示图片资源,可以是本地资源或网络资源。通过`android:src`属性设置图片,`android:scaleType`调整图片缩放方式。 ```xml ...

    android-input-text-layout.7z

    对于敏感信息,如密码,建议使用`android:password`属性,并配合`android:inputType="textWebPassword"`或`android:inputType="textVisiblePassword"`以确保数据安全。 11. **适配不同的屏幕尺寸和方向**: ...

    login_interface

    android:inputType="text" &gt; android:id="@+id/password_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/user_edit" android:text="@...

    android开发textview属性详情

    4. android:inputType:设置文本的类型,例如 phone、email、text 等,以便输入法显示合适的键盘类型。 三、文本显示属性 1. android:bufferType:指定 getText() 方法取得的文本类别,例如 editable、spannable ...

    Android综合布局实例

    &lt;RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width=...

    android webview input=file 失效解决方案

    1. **安全策略限制**:Android的WebView遵循Chrome的同源策略,不允许跨域访问,包括本地文件系统。出于安全考虑,`input=file`选择文件的API被禁用或限制。 2. **文件选择器缺失**:在一些Android版本中,点击`...

    基础安卓自学汇总(网课学习)

    + android:inputType + android:drawableXxxx + android:drawablePadding + android:paddingXxxx + android:background 4. ImageView 基础知识点 * 主要属性: + android:src + android:scaleType + ...

    HTML5&CSS3网页制作:Input元素的type属性.pptx

    - 语法:`&lt;input type="text" /&gt;` - 常用属性:`name`(标识输入框的名称),`value`(初始文本内容),`maxlength`(最大输入字符数),`size`(显示宽度)。 2. **密码输入框(password)** - 描述:用于输入密码,...

    [Android开发从零开始].4.TextView控件学习

    android:inputType="textPassword" &lt;!-- 密码输入 --&gt; android:inputType="number" &lt;!-- 数字输入 --&gt; /&gt; ``` 在实际开发中,TextView常与Adapter结合,用于ListView、RecyclerView等列表视图中显示数据。通过...

    最实用的Android教程以及EditText常用功能说明

    【Android教程】EditText常用功能说明 在Android应用开发中,EditText是不可或缺的组件之一,它允许用户输入文本,广泛应用于登录、注册、评论等场景。本教程将深入讲解EditText的各种常见功能及其用法,帮助开发者...

    Android中EditText的常用效果实现

    如果需要定制特定的键盘,可以通过设置`android:inputType`属性来改变默认的软键盘,或者创建一个自定义的`InputMethodService`服务,这样可以在`EditText`上显示自定义的输入键盘。 3. **验证输入** - **正则...

Global site tag (gtag.js) - Google Analytics