Here you can find the source of getCarrier(Context context)
public static String getCarrier(Context context)
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.telephony.TelephonyManager; public class Main { public static String getCarrier(Context context) { TelephonyManager manager = (TelephonyManager) context .getSystemService(Context.TELEPHONY_SERVICE); return manager.getNetworkOperatorName(); }//from w ww . j av a 2s . c o m }