JLOG

안드로이드 상태바, 타이틀바 색상 바꾸기/ 안드로이드 스튜디오 색깔 바꾸기 본문

안드로이드 스튜디오/팁

안드로이드 상태바, 타이틀바 색상 바꾸기/ 안드로이드 스튜디오 색깔 바꾸기

정정선선 2020. 4. 24. 14:18

왼쪽 Project 창에서

res-values-style.xml을 눌러서 들어가준다.

사진과 같은 코드가 나올텐데

<item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item>

의 부분을

<item name="colorPrimary">"색상 16 진수 값"</item>

<item name="colorPrimaryDark">"색상 16 진수 값"</item>

으로 변경해주면 된다.

(하단에 색상표 값을 첨부했으니 참고!)

 

<item name="colorPrimary"> : 앱 이름이 나오는 타이틀 바

<item name="colorPrimaryDark">: 최상단 시간과, 와이파이가 뜨는 상태바

 

ex)

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">#B0E0E6</item>
        <item name="colorPrimaryDark">#4682B4</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

</resources>

이렇게 변경시켜서, 파란색 계열로 변경 시켜 보았다.

 

변경 전 / 변경 후

 

 

* 참고 * 안드로이드 색상표

Comments