1. Edit Text
- 언더바와 그냥 컬러를 바꾸고 싶었으나, style을 직접 만들고 해도 원하는 대로 수정되지 않음
2. 해결방법
- Theme를 이용해서 스타일을 변경 가능함.
1) style.xml 에 추가
- 아래와 같이 theme를 추가해준다.
<style name="EditTextTheme" parent="Widget.AppCompat.EditText">
<item name="colorAccent">@color/appColor</item>
<item name="colorControlNormal">#888</item>
</style>
2) theme 적용
- EditText의 테마에 적용한다
<EditText
android:theme="@style/EditTextTheme"
android:layout_width="match_parent"
android:layout_height="70dp"
android:hint="아이디" />
'앱 개발자 역량 > Android' 카테고리의 다른 글
암시적 Broadcast Receiver가 제대로 동작하지 않는 이유 (0) | 2021.03.17 |
---|---|
안드로이드 VPN 연결 방법 (0) | 2021.01.19 |
Android ] DrawerLayout (0) | 2019.06.19 |
Android ] Aspect Ratio (0) | 2019.06.11 |
[안드로이드] No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android 에러 (0) | 2019.06.04 |