Share raw resource via WhatsApp

后端 未结 2 1117
别那么骄傲
别那么骄傲 2020-12-15 01:40
Intent share = new Intent(Intent.ACTION_SEND);
share.putExtra(Intent.EXTRA_STREAM, Uri.parse(\"android.resource://\" + ContextID.getPackageName() + \"/\" + ResourceI         


        
2条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-15 02:25

    please change this line from your code and you will be able to share write ("audio/mp3") as bellow instead ("audio/*")

    share.setType("audio/mp3");
    

    this is because share type for whatsapp doesn't support ("audio/*") or ("*/*")

提交回复
热议问题