0

共有アイコンを保持したまま、メッセージ アプリを含む小さなボックスを削除するにはどうすればよいですか?

インテントを最新のアプリと共有する

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

1 に答える 1

1

最近の共有アプリを表示したくない場合は、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"));
于 2016-10-28T06:32:21.083 に答える