安卓---EditText控件的使用

限制输入字符数量 android:maxLength=”3”
多行文本框 android:singleLine=”false”
限制EditText输入信息 android:inputType=”number”
设置提示信息 android:hint=”我是EditText”
在EditText中显示图片 android:drawableLeft=”@drawable/title”

安卓---EditText控件的使用_第1张图片

这里写图片描述


设置圆角
安卓---EditText控件的使用_第2张图片

这里写图片描述

shape.xml文件内容


<shape      
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    
    <solid android:color="#FFFFFF" />
    
    
    <corners android:radius="7dip" />
shape> 

你可能感兴趣的:(android)