본문 바로가기

Android

팝업 메뉴의 스타일 변경 - How to set the background of Android PopupMenu to White [duplicate]

팝업 메뉴의 스타일 변경

http://stackoverflow.com/questions/16878662/how-to-set-the-background-of-android-popupmenu-to-white

For instance, try something like this:

<style name="Theme.MyAppTheme" parent="@style/Theme.Holo.Light">
    <item name="popupMenuStyle">@style/PopupMenu.MyAppTheme</item>
</style>

And then on the style itself:

<style name="PopupMenu.MyAppTheme" parent="@style/Widget.Holo.Light.ListPopupWindow">
    <item name="android:popupBackground">@drawable/popup_menu_bg_color</item>
</style>


'Android' 카테고리의 다른 글

한글 자소 분리  (0) 2013.09.09
Bitmap 비율 대로 이미지 크기 조정하기  (0) 2013.09.09
Call & SMS & Chaton intent  (0) 2013.09.09
메뉴 키 얻기  (0) 2013.09.09
ScrollView 에 최하단 확인  (0) 2013.09.09