Can i automatically send SMS (Without the user need to approve)

前端 未结 5 633
迷失自我
迷失自我 2020-12-02 08:36

I\'m rather new to Android. Im trying to send SMS from Android application. When using the SMS Intent the SMS window opens and the user needs to approve the SMS and send i

5条回答
  •  星月不相逢
    2020-12-02 09:03

    If your application has in the AndroidManifest.xml the following permission

    
    

    you can send as many SMS as you want with

    SmsManager manager = SmsManager.getDefault();
    manager.sendTextMessage(...);
    

    and that is all.

提交回复
热议问题