I am using ShareActionProvider in my Sherlock ActionBar. I want to change the icon but not able to do so.
XML
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/action_share"
android:actionProviderClass="com.actionbarsherlock.widget.ShareActionProvider"
android:icon="@drawable/ic_menu_share"
android:showAsAction="always"
android:title="Search"/>
</menu>
Even after Specify the Icon it takes the Default Icon from the Holo Light Theme
Is there any way to reference the Icon and force change it via Program ?