Example usage for android.telephony TelephonyManager hasIccCard

List of usage examples for android.telephony TelephonyManager hasIccCard

Introduction

In this page you can find the example usage for android.telephony TelephonyManager hasIccCard.

Prototype

public boolean hasIccCard() 

Source Link

Usage

From source file:com.silentcircle.contacts.list.ScContactEntryListFragment.java

protected boolean hasIccCard() {
    TelephonyManager telephonyManager = (TelephonyManager) mContext.getSystemService(Context.TELEPHONY_SERVICE);
    return telephonyManager.hasIccCard();
}