Sharing to facebook, twitter via share intent android

前端 未结 3 1105
野趣味
野趣味 2020-12-12 23:31

I am currently trying to share text to gmail, facebook and twitter. I am using share intent method to share. Below is the code i used to share

Intent sharing         


        
3条回答
  •  隐瞒了意图╮
    2020-12-12 23:40

    If you change the above line to:

    sharingIntent.setType("text/plain");, Would this problem be resolved?

    I think it's text/plain , not plain/text.

    Reference from Android Developers:

    mimeType A MIME type (i.e. text/plain)

提交回复
热议问题