Skip to content

Instantly share code, notes, and snippets.

@McPo
Last active October 10, 2015 07:28
Show Gist options
  • Save McPo/3655981 to your computer and use it in GitHub Desktop.
Save McPo/3655981 to your computer and use it in GitHub Desktop.
<code>
<resources>
<style name="Theme.AppTheme" parent="android:Theme.Holo">
<item name="android:homeAsUpIndicator">@android:color/transparent</item>
</style>
</resources>
</code>
And apply it to the application, (Be aware of values-v14 etc)
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.AppTheme" >
If your using sherlock youll need to double up the xml values as discussed on their website.
Its been tested and works. Let us know if you need any more help.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment