How to check Phone calling service is enable or not in android device?
问题 I want to know that how to check that phone call service is enable or not in different devices, i have Micromax Funbook(p300) Tablet(Android 4.0.3), in which there is no calling service, and i am using below code to check that TelephonyManager tm = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); if (tm.getPhoneType() == TelephonyManager.PHONE_TYPE_NONE) { Log.v("TAG", "No calling service"); }else{ Log.v("TAG", "calling service"); } but this is not working. it always gives