首页 > 代码库 > android EditText设置光标、边框和图标
android EditText设置光标、边框和图标
控制边框形状,先在drawable中建一个xml文件:shape.xml
1 <?xml version="1.0" encoding="utf-8"?> 2 <shape xmlns:android="http://schemas.android.com/apk/res/android"> 3 <solid android:color="#00ff00ff"/> 4 <corners android:radius="8px"/> 5 <stroke android:color="#32CD32" 6 android:width="2px" 7 /> 8 </shape>
然后是布局文件,可以控制EditText的图标、字体颜色、光标、hint字体
1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="fill_parent" 4 android:layout_height="fill_parent" 5 android:background="@drawable/bg" 6 android:orientation="vertical" > 7 8 9 <EditText 10 android:layout_width="200dp" 11 android:layout_height="wrap_content" 12 android:layout_gravity="center" 13 android:drawableLeft="@drawable/title" //框内图标14 android:background="@drawable/shape" //边框形状15 android:padding="5px" 16 android:hint="请输入用户名" 17 android:singleLine="true" 18 android:textCursorDrawable="@null" //光标颜色 19 android:textColor="#4e4d4d"/> 20 21 </LinearLayout> 22
android EditText设置光标、边框和图标
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。