animation

private static final String SMS_SENT_INTENT_FILTER = "com.yourapp.sms_send"; private static final String SMS_DELIVERED_INTENT_FILTER = "com.yourapp.sms_delivered";  String message = "hey, this is my message";  String phnNo = " " //preferable use complete international number  PendingIntent sentPI = PendingIntent.getBroadcast(this, 0, new Intent(                 SMS_SENT_INTENT_FILTER), 0); PendingIntent deliveredPI = PendingIntent.getBroadcast(this, 0, new Intent(                 SMS_DELIVERED_INTENT_FILTER), 0);  SmsManager sms = SmsManager.getDefault(); sms.sendTextMessage(phnNo, null, message, sentPI, deliveredPI);

Click the button to trigger a function that will output "Hello World" in a p element with id="demo".

CONVERSATION

0 comments:

Post a Comment

Back
to top