Android share intent for Pinterest not working

后端 未结 3 677
清酒与你
清酒与你 2020-12-07 00:23

I am doing an android share intent for Pinterest but is not fully working. I am able to attach the image but I can\'t send text to the \"description\" field in the share win

3条回答
  •  北海茫月
    2020-12-07 00:57

    for some reason pinterest app doesn't comply to the standard (Intent.EXTRA_TEXT) so we have to add it separately

    if(appInfo.activityInfo.packageName.contains("com.pinterest"){
            shareIntent.putExtra("com.pinterest.EXTRA_DESCRIPTION","your description");
    }
    

提交回复
热议问题