Change SMS App Default on Android 4.4.2

后端 未结 2 1375
野的像风
野的像风 2021-02-11 04:19

I would change default sms app on Android 4.4.2

I use this code:

Intent sendIntent = new Intent(Telephony.Sms.Intents.ACTION_CHANGE_DEFAULT);
sendIntent.         


        
2条回答
  •  独厮守ぢ
    2021-02-11 05:11

    I would change default sms app on Android 4.4.2

    You cannot change the default SMS app. You can, however, ask the user to change the default SMS app, using Telephony.Sms.Intents.ACTION_CHANGE_DEFAULT. This is covered in the official blog post on the SMS changes in Android 4.4.

提交回复
热议问题