I already read some related questions, but most of them were for calls, not SMS. What I have found so far:
TelephonyManager manager = (TelephonyManager) context
.getSystemService(Context.TELEPHONY_SERVICE);
if (manager.getPhoneType() == TelephonyManager.PHONE_TYPE_NONE) {
} else {
}
Is it true that devices with TelephonyManager.PHONE_TYPE_NONE cannot send SMS? I really do not understand the description of TelephonyManager.PHONE_TYPE_NONE, which is "No radiotelephone."
Thank!
source
share