Android 设置EditText光标位置、粗细颜色

1.如果设置的是起始位置,只需要在xml文件中加上
android:gravity="right"

一句话就可以。该句让光标默认在最右侧闪烁。


2.如果设置指定的位置。需要在代码中

		EditText et = (EditText) findViewById(R.id.editText);
		et.setSelection(et.getText().toString().length());
指定即可。length是在文字最后端闪烁。


3.设置光标颜色和粗细。需要在drawable目录下新建的shape.xml文件中


    
    
在edittext设置

android:textCursorDrawable="@drawable/shape"

如果设置
android:textCursorDrawable="@null"
默认跟textcolor颜色一样



你可能感兴趣的:(Android)