第一次使用Markdown在线编译器写博客

Android Intent常用方法大全

Android中Intent是需要经常用到的。不管是页面牵转,还是传递数据,或是调用外部程序,系统功能都要用到Intent

列表

1.从google搜索内容
Intent intent=new Intent();
intent.setAction(Intent.ACTION_WEB_SEARCH);
intent.putExtra(SearchManager.QUERY,”searchString”);
startActivity(intent);
2.浏览网页
Uri uri=uri.parse(“http://www.google.com“);
Intent it=new Intent(Intent.ACTION_VIEW,uri);
startAction(it);
3.拨打电话
Uri uri=Uri.parse(“tel:xxxxxx”);
Intent it=new Intent(Intent.ACTION_DIAL,uri);
startActivity(it);
4.调用发短信的程序
Intent it=new Intent(Intent.ACTION_VIEW);
it.putExtra(“sms_body”,”The SMS text”);
it.setType(“vnd.android-dir/mms-sms”);
startActivity(it);

你可能感兴趣的:(第一次使用Markdown在线编译器写博客)