List of usage examples for android.telephony TelephonyManager hasIccCard
public boolean hasIccCard()
From source file:com.silentcircle.contacts.list.ScContactEntryListFragment.java
protected boolean hasIccCard() { TelephonyManager telephonyManager = (TelephonyManager) mContext.getSystemService(Context.TELEPHONY_SERVICE); return telephonyManager.hasIccCard(); }