简体   繁体   中英

ActionBarSherlock overflow listview

After integrating the ActionBarSherlock in my android app I noticed that the dropdown menu that drops when the user hits the overflow button differs between 2.* and 4.*.

I have successfully customize this dropdown menu for 2.* with the right colours, but the dropdown menu in 4.* is displayed with white color andblack text and nothing that I do seems to modify this menu.

Do I need to do anything special to customize this dropdown menu in 4.*? it is even possible?

Thanks

When you add a style for ABS, you must be sure to also include the proper Android tags. Eg

Not just

<item name="actionBarStyle">@style/ActionBar</item>

But

<item name="actionBarStyle">@style/ActionBar</item>
<item name="android:actionBarStyle">@style/ActionBar</item>

The former only controls ABS, and the library uses the standard Action Bar on 4.x.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM