What is the procedure to detect if an Android device has SMS send capability?

后端 未结 1 1185
南笙
南笙 2021-02-02 09:32

What is the procedure to detect if an Android device has SMS send capability? I want my app to know if the device has the capability to send an SMS message before trying to actu

相关标签:
1条回答
  • 2021-02-02 09:37
    if (getPackageManager().hasSystemFeature(PackageManager.FEATURE_TELEPHONY)) {
      // THIS PHONE HAS SMS FUNCTIONALITY
    } else {
      // NO SMS HERE :(
    }
    

    That should work for API Level 5 and above.

    0 讨论(0)
提交回复
热议问题