android - Delete Last Item of Share Action Provider -
i have implement shareactionprovider in android application. work fine, want delete icon of last item used, @ right of button, :
this configuration :
menu :
<item android:id="@+id/menu_item_share" android:actionproviderclass="android.widget.myshareactionprovider" android:showasaction="always" android:title="partager"/>
activity :
menuitem item = menu.finditem(r.id.menu_item_share); mshareactionprovider = (shareactionprovider) item.getactionprovider(); if (mshareactionprovider != null) { mshareactionprovider.setshareintent(mshareintent); }
do have idea ? thanks
Comments
Post a Comment