Social sharing on mobile

前端 未结 2 579
[愿得一人]
[愿得一人] 2021-01-01 05:06

On a website, one can use a social sharing javascript library like addthis in order to propose share buttons to the user without having to program everything from scratch.

2条回答
  •  佛祖请我去吃肉
    2021-01-01 05:08

    On Android we have Intents for this. If you like to give the user an opportunity to share something, you can fire up an intent like this for example:

    Intent share = new Intent(Intent.ACTION_SEND);
    share.setType("image/jpeg") // might be text, sound, whatever
    share.putExtra(Intent.EXTRA_STREAM, pathToPicture);
    startActivity(Intent.createChooser(share, "share"));
    

提交回复
热议问题