EditView控件的用法及总结

activity_main.xml中的代码内容如下:

          android:layout_height="40dp"
        android:layout_width="wrap_content"
        android:textColor="@color/color" //边框的颜色
        android:hint="请输入内容"  //提醒内容,如果设置text,输入内容的时候提醒的内容不会自动消失
        android:maxLength="11" //设置EditView的最大的输入长度
        android:singleLine="true" //输入内容是单行还是多行,如果是false的话就表示是可以输入多行
        android:inputType="phone" //输入的内容是电话类型的,也可以选择其他的类型
        android:drawableLeft="@drawable/ic_launcher" //给EditView上添加图片,drawleft表示图片位于editView 的左边
        android:background="@drawable/shap"  //给EditView设置圆角 ,引用的是res\drawable-hdpi\shape.xml下的shape代码


        />

res\drawable-hdpi\shape.xml下的代码





 
 
  
 

你可能感兴趣的:(android)