0

How would i get rid of that little box that has the messaging app while retaining the share icon?

Share intent with most recent app

<item
    android:id="@+id/share"
    app:actionProviderClass="android.support.v7.widget.ShareActionProvider"
    android:title="share"
    app:showAsAction="always" />
Strahinja Ajvaz
  • 2,521
  • 5
  • 23
  • 38

1 Answers1

1

If you don't want to show recent share app then remove ShareActionprovider. and add a icon to menu and handle share action like this

Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND); 
sharingIntent.setType("text/plain");
String shareBody = "Here is the share content body";
sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject Here");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);
startActivity(Intent.createChooser(sharingIntent, "Share via"));
Vikash Kumar Verma
  • 1,068
  • 2
  • 14
  • 30