반응형
메뉴 아이템에 대한 배경 처리를 바꾸고 싶다.
어디서 변경해야 할 지 모를 때가 있다 ^^;;
<style name="AppTheme.FullScreen" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<!-- To change the background of options menu-->
<item name="android:itemBackground">@color/white</item>
<item name="android:itemTextAppearance">@style/myCustomMenuTextApearance</item>
</style>
해당 Activity에 대한 Theme 지정에서 ItemBackground에 대한 Color를 지정하면 된다
안드로이드 개발의 길은 오늘도 멀고 험하네 ^^
반응형
'Android Coding' 카테고리의 다른 글
ScrollView 안에서의 RecyclerView시 Smooth Scroll (0) | 2017.11.11 |
---|---|
파일 삭제 Task (0) | 2017.11.10 |
[앨범]사진 다중 선택을 할 때, 이상하게 의도치 않은 checkbox checked 될 때.. (0) | 2017.06.15 |
Parcelable을 사용한 Object Array 전달 (0) | 2017.05.31 |
OkHttp3을 활용한 Multipart Image 전송 (3) | 2017.03.24 |