“Udostępnij Intent Android” Kod odpowiedzi

Udostępnij Intent Android

 Intent shareIntent = new Intent(Intent.ACTION_SEND);
            shareIntent.setType("text/plain");
            shareIntent.putExtra(Intent.EXTRA_SUBJECT, "My application name");
            String shareMessage = "\n" + tvBlogTitle.getText().toString()+ "\n\n";
            shareMessage = shareMessage + bundle.getString("link") + "\n\n";
            shareIntent.putExtra(Intent.EXTRA_TEXT, shareMessage);

            startActivity(Intent.createChooser(shareIntent, "choose one"));
KushalCodes

Udostępnij Intent Android


Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT,
    "Hey check out my app at: https://play.google.com/store/apps/details?id=" + BuildConfig.APPLICATION_ID);
sendIntent.setType("text/plain");
startActivity(sendIntent);

Glorious Gull

Odpowiedzi podobne do “Udostępnij Intent Android”

Pytania podobne do “Udostępnij Intent Android”

Więcej pokrewnych odpowiedzi na “Udostępnij Intent Android” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu