this device has phone radio? - Android Hardware

Android examples for Hardware:Device Feature

Description

this device has phone radio?

Demo Code


//package com.java2s;

import android.content.Context;

import android.telephony.TelephonyManager;

public class Main {
    /**//from w  w  w.j  a va2s  . c  o  m
     * this device has phone radio?
     *
     * @param context
     * @return
     */
    public static boolean isPhone(Context context) {
        TelephonyManager telephony = (TelephonyManager) context
                .getSystemService(Context.TELEPHONY_SERVICE);
        int type = telephony.getPhoneType();
        if (type == TelephonyManager.PHONE_TYPE_NONE) {
            return false;
        } else {
            return true;
        }
    }
}

Related Tutorials