/ Published in: Java
Expand |
Embed | Plain Text
Button bCall,bMsg,bContact,bURL; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); //To lunch DIALER Intent intent = new intent(Intent.ACTION_DIAL,Uri.parse("tel:9800222333")); startActivity(intent); } }); //To lunch MESSAGEBOX Intent sendIntent = new Intent(Intent.ACTION_VIEW); sendIntent.setData(Uri.parse("scheme://data")); sendIntent.setType("vnd.android-dir/mms-sms"); sendIntent.putExtra("sms_body", "Msg hiiii"); sendIntent.putExtra("address", "99007777888"); startActivity(sendIntent); } }); //To lunch CONTACTS LIST Intent contactPickerIntent = new Intent(Intent.ACTION_PICK,ContactsContract.Contacts.CONTENT_URI); startActivity(contactPickerIntent); } }); //To lunch BROWSER Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://google.com")); startActivity(intent); } }); }
You need to login to post a comment.
