Skip to content

Instantly share code, notes, and snippets.

@messenger63
Created December 18, 2014 10:29
Show Gist options
  • Save messenger63/e3f838bc100b5790ef48 to your computer and use it in GitHub Desktop.
Save messenger63/e3f838bc100b5790ef48 to your computer and use it in GitHub Desktop.
Customize (hide) arrow from dropdown list in ActionBar
AndroidManifest.xml:
android:theme="@style/MyAppTheme"
Styles.xml:
<style name="MyAppTheme" parent="@style/Theme.AppCompat.Light">
<item name="actionDropDownStyle">@style/DropDownNav.Example</item>
</style>
<style name="DropDownNav.Example" parent="@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar">
<item name="android:background">@android:color/transparent</item>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment