Uygulama Paylaş Metodu

public void share() {
    Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
    sharingIntent.setType("text/plain");
    String shareMesaj = "bigboss tarafından gönderildi";
    sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Mesaj Konu");
    sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareMesaj);
    startActivity(Intent.createChooser(sharingIntent, "Paylaşmak İçin Seçiniz"));
}

Hiç yorum yok:

Yorum Gönder