[안드로이드 공부]/UI

[안드로이드] Drawer Icon 색깔 바꾸기

코코모아 2016. 10. 5. 11:00

아래는 코모스튜디오가 직접 만든 무료 앱이에요
(한 번만 봐주세요 ^^)

01

02

03

정각알림 만들기(말하는시계)

말하는 시계 (취침, 자전거) 

말하는 타이머 음성 스톱워치 

기본이 검정색이다. 흰색 및 다른 색으로 바꾸고 싶다면? 


1. 아이콘을 변경 한다.

        actionBarDrawerToggle.setDrawerIndicatorEnabled(false);

        Drawable drawable = ResourcesCompat.getDrawable(getResources(), R.drawable.ic_xxx, activity.getTheme());

        actionBarDrawerToggle.setHomeAsUpIndicator(drawable);


또는


2. 색을 변경한다.

2.1 Style 추가

<style name="DrawerArrowStyle" parent="Widget.AppCompat.DrawerArrowToggle">

    <item name="color">@android:color/white</item>

</style>


2.2 Item 추가

<item name="drawerArrowStyle">@style/DrawerArrowStyle</item>


모든 게시물은 코모스튜디오의 소유이며, 무단 복제 수정은 절대 불가입니다.
퍼가실 경우 댓글과 블로그 주소를 남기고 해당 게시물에 출처를 명확히 밝히세요.