Skip to content

Instantly share code, notes, and snippets.

@codenameone
Created March 4, 2016 14:38
Show Gist options
  • Save codenameone/da23d33b1a9e105efffd to your computer and use it in GitHub Desktop.
Save codenameone/da23d33b1a9e105efffd to your computer and use it in GitHub Desktop.
Sample Usage of the Codename One SMS API's
switch(Display.getInstance().getSMSSupport()) {
case Display.SMS_NOT_SUPPORTED:
return;
case Display.SMS_SEAMLESS:
showUIDialogToEditMessageData();
Display.getInstance().sendSMS(phone, data);
return;
default:
Display.getInstance().sendSMS(phone, data);
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment