get TelePhony Device Id - Android Hardware

Android examples for Hardware:Device ID

Description

get TelePhony Device Id

Demo Code


//package com.java2s;
import android.app.Activity;
import android.content.Context;

import android.telephony.TelephonyManager;

public class Main {

    public static String getTelePhonyDeviceId(Context context) {

        TelephonyManager tm = (TelephonyManager) context
                .getSystemService(Activity.TELEPHONY_SERVICE);
        String strSysId = tm.getDeviceId();

        return strSysId;
    }//from   w  ww.  j  a va2 s .com
}

Related Tutorials