EditText textCursorDrawable - Cursor color 변경
EditText textCursorDrawable
(Cursor color 변경)
ㆍ EditText를 선택했을때 깜빡깜빡 거리는
Cursor의 색깔을 변경한다.
EditText 기본
textCursorDrawable
이 부분은
[Android Reference] - [EditText]에서
검색해도 나오지 않는것 같다.
사용방법은 간단하다.
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textColor="#000000"
android:textCursorDrawable="@drawable/yourDrawable"
android:textSize="25dp"/>
android:textCursorDrawable 부분에
원하는 drawable을 넣어주면 된다.
예를 들면
[cursor_color.xml]
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#FFF000" />
<size android:width="3dp" />
</shape>
이렇게 만든 후에
textCursorDrawalbe에 넣어주면 된다.
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textColor="#000000"
android:textCursorDrawable="@drawable/cursor_color"
android:textSize="25dp"/>
size(width)와 solid를 원하는대로
변경해서 사용하면 된다.
'안드로이드(android) > 위젯(Widget)' 카테고리의 다른 글
TextView에 Shadow 적용하기 (0) | 2017.06.14 |
---|---|
TextView 줄간격, 자간, 장평 변경하기 (0) | 2017.01.26 |
descendantFocusability - Child View의 Focus를 제어하자 (3) | 2016.11.26 |
EditText Keyboard show/hide 이벤트 잡기 (3) | 2016.11.25 |
EditText Keyboard 내리기 (0) | 2016.11.24 |