Searched defs:SmsManager (Results 1 - 2 of 2) sorted by relevance

/frameworks/opt/telephony/src/java/android/telephony/gsm/
H A DSmsManager.java26 * Get this object by calling the static method SmsManager.getDefault().
27 * @deprecated Replaced by android.telephony.SmsManager that supports both GSM and CDMA.
29 @Deprecated public final class SmsManager { class
30 private static SmsManager sInstance;
31 private android.telephony.SmsManager mSmsMgrProxy;
33 /** Get the default instance of the SmsManager
35 * @return the default instance of the SmsManager
36 * @deprecated Use android.telephony.SmsManager.
39 public static final SmsManager getDefault() {
41 sInstance = new SmsManager();
47 private SmsManager() { method in class:SmsManager
[all...]
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsManager.java57 public final class SmsManager { class
58 private static final String TAG = "SmsManager";
66 private static final SmsManager sInstance = new SmsManager(DEFAULT_SUBSCRIPTION_ID);
74 private static final Map<Integer, SmsManager> sSubInstances =
75 new ArrayMap<Integer, SmsManager>();
455 * Get the SmsManager associated with the default subscription id. The instance will always be
458 * @return the SmsManager associated with the default subscription id
460 public static SmsManager getDefault() {
465 * Get the the instance of the SmsManager associate
483 private SmsManager(int subId) { method in class:SmsManager
[all...]

Completed in 81 milliseconds