android.telephony.SmsManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.telephony;
public final class SmsManager
{
SmsManager() { throw new RuntimeException("Stub!"); }
public void sendTextMessage(java.lang.String destinationAddress, java.lang.String scAddress, java.lang.String text, android.app.PendingIntent sentIntent, android.app.PendingIntent deliveryIntent) { throw new RuntimeException("Stub!"); }
public java.util.ArrayList divideMessage(java.lang.String text) { throw new RuntimeException("Stub!"); }
public void sendMultipartTextMessage(java.lang.String destinationAddress, java.lang.String scAddress, java.util.ArrayList parts, java.util.ArrayList sentIntents, java.util.ArrayList deliveryIntents) { throw new RuntimeException("Stub!"); }
public void sendDataMessage(java.lang.String destinationAddress, java.lang.String scAddress, short destinationPort, byte[] data, android.app.PendingIntent sentIntent, android.app.PendingIntent deliveryIntent) { throw new RuntimeException("Stub!"); }
public static android.telephony.SmsManager getDefault() { throw new RuntimeException("Stub!"); }
public static final int STATUS_ON_ICC_FREE = 0;
public static final int STATUS_ON_ICC_READ = 1;
public static final int STATUS_ON_ICC_UNREAD = 3;
public static final int STATUS_ON_ICC_SENT = 5;
public static final int STATUS_ON_ICC_UNSENT = 7;
public static final int RESULT_ERROR_GENERIC_FAILURE = 1;
public static final int RESULT_ERROR_RADIO_OFF = 2;
public static final int RESULT_ERROR_NULL_PDU = 3;
public static final int RESULT_ERROR_NO_SERVICE = 4;
}