안드로이드 EditText 입력 글씨 색깔 바꾸기
배경이 어두운 색이라면
에디트텍스트 입력할때 색깔이 비슷해서 알아보기 어렵다. 그래서 색깔을 바꿔줄 필요가 있는데 그 방법은
출처:http://sungho0459.blog.me/40179645913
<EditText android:id="@+id/etRendererTextBody" android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="5dp" android:textAppearance="?android:attr/textAppearanceMedium" android:textColor="#ffFF6000" android:background="#ffffffff" android:textCursorDrawable="@null"/>
<EditText
android:id="@+id/etRendererTextBody"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="#ffFF6000"
android:background="#ffffffff"
android:textCursorDrawable="@null"/>
android:textCursorDrawable속성값을 @null로 주고
android:textColor속성값을 부여하게 되면 textColor와 같은 색깔로 커서가 깜빡이게 됨
[출처] android EditText 커서 색깔|작성자 에몬
커서색깔은 물론 쓰여지는 글씨 색깔도 바뀐다.