Sending MMS into different Android devices

前端 未结 3 1889
别那么骄傲
别那么骄傲 2021-01-17 06:39

I need to send MMS. Into my hero this code looks ugly but works:

Intent sendIntent = new Intent(\"android.intent.action.SEND_MSG\"); 
   sendIntent.putExtra         


        
3条回答
  •  感动是毒
    2021-01-17 07:30

    send from your app ?

    before startActivity, you can

    intent.setClassName("your package name", "your class name");

    startActivity(intent);

提交回复
热议问题