반응형
반응형
EditText 커서 색 변경
<color name="edit_cursor"> </color>
<style name="EditTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorAccent">@color/edit_cursor</item>
</style>
<EditText
....
android:theme="@style/EditTheme"
/>
EditText 포커스 제거
=> EditText를 감싸고 있는 레이아웃에 다음과 같이 추가
android:focusable="true"
android:focusableInTouchMode="true"
반응형
'Mobile > Android' 카테고리의 다른 글
[ Android ] Fragment에서 Activity로 데이터 전달 (0) | 2023.07.26 |
---|---|
[ Android ] 쉽게 정리한 Fragment 애니메이션 (0) | 2023.07.25 |
[ Android ] EditText 엔터 처리 및 다양한 속성 알아보기 (0) | 2023.07.24 |
[ Android ] AlertDialog 다이얼로그 (0) | 2023.07.24 |
[ Android ] 버튼 이미지(변경 + hover 효과) (0) | 2023.07.23 |