android - Sending an Audio file and a Text message to WhatsApp -
i want send mp3 file , text message contact on whatsapp. while able send either mp3 file or text message not able send them both together. here doing send text message :-
intent waintent = new intent(intent.action_send); waintent.setpackage("com.whatsapp"); waintent.settype("text/plain"); waintent.putextra(intent.extra_text, text); startactivity(intent.createchooser(waintent, "share with"));
and send mp3 file :-
intent waintent = new intent(intent.action_send); waintent.settype("audio/*"); waintent.setpackage("com.whatsapp"); waintent.putextra(intent.extra_stream, uri); startactivity(intent.createchooser(waintent, "share with"));
please suggest way can send them both.
Comments
Post a Comment