How to Share Entire Android App with Share Intent

后端 未结 7 989
名媛妹妹
名媛妹妹 2020-12-07 16:46

I have used Sharing-type intents before, such as:

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType(\"plain/text\");
intent.putExtra(Intent.EXTR         


        
相关标签:
7条回答
  • 2020-12-07 17:27

    You can do that by using a sharing intent

                Intent shareIntent = new Intent(Intent.ACTION_SEND);
                shareIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                shareIntent.setType("text/plain");
                shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Hey, download this app!");
                startActivity(shareIntent);     
    

    you can put this intent in an onclick or use it whereever you want

    I think this answers your question =)

    0 讨论(0)
提交回复
热议问题