Android : Message Intent

前端 未结 5 1922
星月不相逢
星月不相逢 2021-01-12 08:51

I\'m a beginner to android. I need to know is there any intent to open the Create Message window. I tried with this code -

Intent i = new In         


        
5条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-12 09:44

    I guess this should work:

    i.addCategory(Intent.CATEGORY_DEFAULT);
    i.setType("vnd.android-dir/mms-sms");
    

提交回复
热议问题