博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
EditTex属性
阅读量:6073 次
发布时间:2019-06-20

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

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
   android:orientation="vertical"
    tools:context=".MainActivity" >
  
   <EditText
       android:layout_marginTop="200dp"
       android:hint="keyboard"
       android:textColorHint="@android:color/holo_purple"//会有非常好看的提示颜色
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:singleLine="true"
       android:password="true"//输入限制为密码
       ></EditText>
   <EditText
       android:digits="123"//输入限制为数字
  
       android:layout_width="match_parent"
       android:layout_height="100dp"/>
   <EditText
        android:phoneNumber="true"//输入限制为电话号码
       android:layout_width="match_parent"
       android:layout_height="100dp"/>
<EditText
    android:textScaleX="1.05"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    ></EditText>
<EditText
    android:background="@null"//背景为空没有那个下划线我们能够制作好看的文本框
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    ></EditText>
<EditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textAppearance="?

android:attr/textAppearanceLargeInverse"//不出现键盘

    >
</EditText>
</LinearLayout>

转载地址:http://bpngx.baihongyu.com/

你可能感兴趣的文章
Spring Cloud云服务- HongHu云架构common-service代码结构分析
查看>>
【BZOJ】1585: [Usaco2009 Mar]Earthquake Damage 2 地震伤害
查看>>
Java开发5年只会curd,被新来开发一年的小子说成是混吃等死...
查看>>
CentOS 7 Docker
查看>>
Telegraf+Influxdb+Grafana构建监控平台
查看>>
死磕Tomcat系列(1)——整体架构
查看>>
Spring AOP
查看>>
The following users do not have email address specified
查看>>
Docker Data Center系列(一)- 快速搭建云原生架构的实践环境
查看>>
ESLint 禁止检验
查看>>
用了那么多年MySQL不知道Explain?怪不得性能那么差!
查看>>
java 字符流 字节流
查看>>
mysql实战14 | count(*)这么慢,我该怎么办?
查看>>
wireshark的ubuntu更新ppa源
查看>>
AngularJs 学习 (二)
查看>>
0302感想
查看>>
实验四 主存空间的分配和回收
查看>>
解决eclipse之ADT与SDK版本不一致问题
查看>>
jQuery 属性操作
查看>>
小甜点,RecyclerView 之 ItemDecoration 讲解及高级特性实践
查看>>