码迷,mamicode.com
首页 > 其他好文 > 详细

光标设置、hint设置

时间:2017-07-17 15:18:58      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:focus   edit   XML   utf-8   rri   编辑   roi   tco   sha   

 

1.在edittext编辑框中调用属性。
<EditText
android:layout_width="match_parent"
android:layout_height="50dp"
android:paddingLeft="5dp"
android:layout_marginRight="30dp"
android:background="@null"
android:textColorHint="@android:color/white" // 提示文字颜色设置
android:textCursorDrawable="@drawable/cursor" // 光标颜色、大小等设置
android:gravity="center_vertical"
android:hint="@string/hint_phone_number"
android:singleLine="true"
/>

2.创建一个drawable资源文件来设置,也可以直接用颜色设置。
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<solid
android:color="@android:color/white"></solid>
<size android:width="1dp"></size>
</shape>
</item>
</layer-list>

3.监听edittext的焦点变化,获得焦点时将光标设置到最后的位置;
@Override
public void onFocusChange(View v, boolean hasFocus) {
switch (v.getId()){
case R.id.user_name_or_phone_number:
if (hasFocus){
String content=userName.getText().toString(); //获取编辑框的内容
userName.setSelection(content.length()); // 将光标设置的最后的位置
}
break;
}
}

光标设置、hint设置

标签:focus   edit   XML   utf-8   rri   编辑   roi   tco   sha   

原文地址:http://www.cnblogs.com/wisdom-windy/p/7194189.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!