아래는 코모스튜디오가 직접 만든 무료 앱이에요(한 번만 봐주세요 ^^)
기본이 검정색이다. 흰색 및 다른 색으로 바꾸고 싶다면?
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>
' [안드로이드 공부] > UI' 카테고리의 다른 글
[안드로이드] AlertDailog 버튼 색 변경 하기 (0) | 2016.10.05 |
---|---|
[안드로이드] 패키지안에서 View 찾아내기 (0) | 2016.10.05 |
[안드로이드] 라디오 그룹에 체크된 아이템 찾기 (0) | 2016.10.05 |
[안드로이드] AppCompatEditText Alert Dialog 키보드 자동으로 띄우기 (0) | 2016.10.05 |
[안드로이드] layoutInflater 성능 올리기 (0) | 2016.04.26 |
모든 게시물은 코모스튜디오의 소유이며, 무단 복제 수정은 절대 불가입니다. |
퍼가실 경우 댓글과 블로그 주소를 남기고 해당 게시물에 출처를 명확히 밝히세요. |