삽질도사

[안드로이드] overflowmenu/쩜쩜쩜/점점점/툴바메뉴/케밥 색상 변경하기 본문

안드로이드

[안드로이드] overflowmenu/쩜쩜쩜/점점점/툴바메뉴/케밥 색상 변경하기

전성진블로그 2021. 4. 26. 23:24

https://stackoverflow.com/questions/6790508/how-to-change-android-overflow-menu-icon

 

how to change Android overflow menu icon

How do i change the Overflow Menu icon on the far right of the action bar as seen in the image below? My Holo theme specifies this 3 row black stack icon by default and i want something else. i c...

stackoverflow.com

 

 

them파일에서 아래와 같이 스타일을 설정해주시고,

<style name="ToolBarTheme" parent="ThemeOverlay.AppCompat.ActionBar">
    <item name="android:tint">@color/colorAccent</item>

 

 

원하는 툴바에 them으로 적용시켜주세요~

<androidx.appcompat.widget.Toolbar
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="?attr/actionBarSize"
        android:theme="@style/ToolBarTheme"/>

 

생각보다 틀린 방법도 많이 제시되어있고, 제작환경마다 달라서 방식이 찾기힘든 overflowmenu  색상변경법이였습니다.