How to use built-in messaging within the application?
Submitted by: AdministratorIntent object to activate the built-in Messaging service. You have to pass MIME type "vnd.android-dir/mms-sms", in setType method of Intent as shown in the following given below code.
Intent intent = new Intent (android.content.Intent.ACTION_VIEW);
intent.putExtra("address", "5556; 5558;");// Send the message to multiple recipient.
itent.putExtra("sms_body", "Hello my friends!");
intent.setType("vnd.android-dir/mms-sms");
startActivity(intent);
Submitted by:
Intent intent = new Intent (android.content.Intent.ACTION_VIEW);
intent.putExtra("address", "5556; 5558;");// Send the message to multiple recipient.
itent.putExtra("sms_body", "Hello my friends!");
intent.setType("vnd.android-dir/mms-sms");
startActivity(intent);
Submitted by:
Read Online WCF SDK Job Interview Questions And Answers
Top WCF SDK Questions
☺ | How to set the timeout property for the WCF Service client call? |
☺ | What are contracts in WCF? |
☺ | How to configure Reliability while communicating with WCF Services? |
☺ | What is binding and how many types of bindings are there in WCF? |
☺ | How to deal with operation overloading while exposing the WCF services? |
Top Application Program Categories
☺ | AutoCAD Interview Questions. |
☺ | Microsoft Office Interview Questions. |
☺ | Microsoft Outlook Interview Questions. |
☺ | Microsoft Excel Interview Questions. |
☺ | MATLAB Interview Questions. |