일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 생명주기
- viewholder
- 테마 아이콘
- searchview
- 구분선
- Android
- high order function
- espresso
- 고차함수
- IntentTestRule
- 뷰변경 감지
- 코틀린
- 코딜리티
- 안드로이드개발레벨업교과서
- Fragment에서 Activity의 함수 사용하기
- adapter
- 안드로이드13
- 스와이프
- Fragment 수동 추가
- 재사용
- ActivityTestRule
- LayoutManger
- 리사이클러뷰
- Error:Execution failed for task ':app:mergeDebugResources'
- 안드로이드스튜디오
- fragment
- 안드로이드
- ui test
- binding adapter
- recyclerview
Archives
- Today
- Total
룬아님의 취중코딩
EditText cursor 색상 바꾸는 방법 본문
1. Style로 바꾸어 주기
<style name="EditTextStyle" parent="Widget.AppCompat.EditText">
<item name="colorControlActivated">@color/orange</item>
</style>
2. textCursorDrawable 이용하기
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textCursorDrawable="@drawable/color_cursor"/>
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<size android:width="3dp" />
<solid android:color="#FFFFFF" />
</shape>
setTextCursorDrawable 함수를 이용하여 코드적으로도 수정가능 하지만 29이상의 버전부터 지원한다.
반응형
'개발 > 안드로이드 개발' 카테고리의 다른 글
java.lang.IllegalArgumentException: baseUrl must end in / (1) | 2020.01.07 |
---|---|
(Dagger2) Service에서 dagger 사용하기 (0) | 2019.12.31 |
Databinding에서 view Id 사용하기 (0) | 2019.12.29 |
Databinding에서 logical operator 사용하기 (0) | 2019.12.29 |
EditText에 focus 주고 키보드 올라오지 않게 하기 (0) | 2019.12.27 |
Comments