首页 > 代码库 > 光标设置、hint设置
光标设置、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设置
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。