Sending mms in android 4.4

后端 未结 3 981
既然无缘
既然无缘 2020-12-21 20:30

I\'m trying to send mms from my app only. I made it default messaging app with help of android developers tutorial (http://android-developers.blogspot.com/2013/10/getting-yo

3条回答
  •  既然无缘
    2020-12-21 21:20

    I believe the issue is that you are trying to send both image and text data, but your type is set to image. Try switching this instead to:

    mmsIntent.setType("*/*");
    

提交回复
热议问题