光标设置hint设置
Posted 清风已逝_晚风如故
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了光标设置hint设置相关的知识,希望对你有一定的参考价值。
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设置的主要内容,如果未能解决你的问题,请参考以下文章