Android examples for Hardware:Sim Card
is Connect China Mobile
//package com.java2s; import android.content.Context; import android.telephony.TelephonyManager; public class Main { public static boolean isConnectChinaMobile(Context context) { TelephonyManager telManager = (TelephonyManager) context .getSystemService(Context.TELEPHONY_SERVICE); String operator = telManager.getSimOperator(); if (operator != null) { if (operator.startsWith("46000") || operator.startsWith("46002")) { return true; } else { return false; }/*from w w w . j a v a2s.c o m*/ } else { return false; } } }