移除最近的分享应用

Remove most recent share app

我怎样才能在保留共享图标的同时摆脱那个有消息传递应用程序的小盒子?

<item
    android:id="@+id/share"
    app:actionProviderClass="android.support.v7.widget.ShareActionProvider"
    android:title="share"
    app:showAsAction="always" />

如果您不想显示最近分享的应用程序,请删除 ShareActionprovider。 并向菜单添加一个图标并像这样处理分享操作

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"));