is Phone - Android Phone

Android examples for Phone:Phone Information

Description

is Phone

Demo Code


//package com.java2s;

import android.content.*;

import android.telephony.TelephonyManager;

public class Main {

    public static boolean isPhone(Context context) {
        TelephonyManager telephony = (TelephonyManager) context
                .getSystemService(Context.TELEPHONY_SERVICE);
        if (telephony.getPhoneType() == TelephonyManager.PHONE_TYPE_NONE) {
            return false;
        } else {/*  w  w  w . ja v a  2 s  .co m*/
            return true;
        }
    }

    public static int getPhoneType(Context context) {
        TelephonyManager telephonyManager = (TelephonyManager) context
                .getSystemService(Context.TELEPHONY_SERVICE);
        return telephonyManager.getPhoneType();
    }
}

Related Tutorials