Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.telephony.TelephonyManager; import android.text.TextUtils; public class Main { public static String getCellularCarrier(Context context) { TelephonyManager manager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE); String carrierName = manager.getNetworkOperatorName(); if (TextUtils.isEmpty(carrierName)) { carrierName = ""; } return carrierName; } }