Last active
October 10, 2015 07:28
-
-
Save McPo/3655981 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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