안드로이드 앱 개발

Edittext 색상 값들 정리 본문

카테고리 없음

Edittext 색상 값들 정리

스텝바이스텝안드로이드 2021. 5. 17. 23:54

퍼옴 https://yuuj.tistory.com/16

 

적용

1. Cursor 색상

drawble> cursor.xml -> edittext의 xml 속성에서 textCursor에 @drawable/로 적용

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <size android:width="@dimen/cursor_width"/>
    <solid android:color="@color/mainBlue"/>
</shape>

 

2. textColorHighlight

 android:textColorHighlight="@color/mainBlueTextColorHighlight"

 

3. colorControlNormal과 Activated는 theme에서 만들어준다음 xml에서 적용

<style name="이름" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="colorControlNormal">@color/transparent</item>
        <item name="colorControlActivated">@color/mainBlue</item>
    </style>

-> 적용

android:theme="@style/이름"