Android常用URI收藏

举报
ShaderJoy 发表于 2021/12/30 01:56:38 2021/12/30
【摘要】 以下是常用到的Intent的URI及其示例,包含了大部分应用中用到的共用Intent 一、打开一个网页,类别是Intent.ACTION_VIEW Uri uri = Uri.parse("http://www.android-study.com/");Intent intent = new Intent(Intent.AC...

一、打开一个网页,类别是Intent.ACTION_VIEW



  
  1. Uri uri = Uri.parse("http://www.android-study.com/");
  2. Intent intent = new Intent(Intent.ACTION_VIEW, uri);





  
  1. Uri uri = Uri.parse("geo:52.76,-79.0342");
  2. Intent intent = new Intent(Intent.ACTION_VIEW, uri);





  
  1. Uri uri = Uri.parse("tel:10086");
  2. Intent intent = new Intent(Intent.ACTION_DIAL, uri);





  
  1. Uri uri = Uri.parse("tel:10086");
  2. Intent intent = new Intent(Intent.ACTION_CALL, uri);





  
  1. Uri uri = Uri.fromParts("package", "xxx", null);
  2. Intent intent = new Intent(Intent.ACTION_DELETE, uri);




  
  1. Uri uri = Uri.fromParts("package", "xxx", null);
  2. Intent intent = new Intent(Intent.ACTION_PACKAGE_ADDED, uri);




  
  1. Uri uri = Uri.parse("file:///sdcard/download/everything.mp3");
  2. Intent intent = new Intent(Intent.ACTION_VIEW, uri);
  3. intent.setType("audio/mp3");




  
  1. Uri uri= Uri.parse("mailto:admin@android-study.com");
  2. Intent intent = new Intent(Intent.ACTION_SENDTO, uri);




  
  1. Intent intent = new Intent(Intent.ACTION_SEND);
  2. String[] tos = { "admin@android-study.com" };
  3. String[] ccs = { "webmaster@android-study.com" };
  4. intent.putExtra(Intent.EXTRA_EMAIL, tos);
  5. intent.putExtra(Intent.EXTRA_CC, ccs);
  6. intent.putExtra(Intent.EXTRA_TEXT, "I come from http://www.android-study.com");
  7. intent.putExtra(Intent.EXTRA_SUBJECT, "http://www.android-study.com");intent.setType("message/rfc882");
  8. Intent.createChooser(intent, "Choose Email Client");
  9. //发送带附件的邮件
  10. Intent intent = new Intent(Intent.ACTION_SEND);
  11. intent.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");
  12. intent.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/mysong.mp3");
  13. intent.setType("audio/mp3");
  14. startActivity(Intent.createChooser(intent, "Choose Email Client"));

 
十、发短信

  
  1. Uri uri= Uri.parse("tel:10086");
  2. Intent intent = new Intent(Intent.ACTION_VIEW, uri);
  3. intent.putExtra("sms_body", "I come from http://www.android-study.com");
  4. intent.setType("vnd.Android-dir/mms-sms");




  
  1. Uri uri= Uri.parse("smsto://100861");
  2. Intent intent = new Intent(Intent.ACTION_SENDTO, uri);
  3. intent.putExtra("sms_body", "3g android http://www.android-study.com");

十二、发彩信



  
  1. Uri uri= Uri.parse("content://media/external/images/media/23");
  2. Intent intent = new Intent(Intent.ACTION_SEND);
  3. intent.putExtra("sms_body", "3g android http://www.android-study.com");
  4. intent.putExtra(Intent.EXTRA_STREAM, uri);
  5. intent.setType("image/png");






  
  1. Uri uri = Uri.parse("market://search?q=pname:pkg_name");
  2. Intent it = new Intent(Intent.ACTION_VIEW, uri);
  3. startActivity(it);
  4. //where pkg_name is the full package path for an application



  
  1. Uri uri = Uri.parse("market://details?id=app_id");
  2. Intent it = new Intent(Intent.ACTION_VIEW, uri);
  3. startActivity(it);
  4. //where app_id is the application ID, find the ID
  5. //by clicking on your application on Market home
  6. //page, and notice the ID from the address bar




  
  1. Uri uri = Uri.parse("http://maps.google.com/maps?f=d&saddr=startLat%20startLng&daddr=endLat%20endLng&hl=en");
  2. Intent it = new Intent(Intent.ACTION_VIEW, uri);
  3. startActivity(it);
  4. //where startLat, startLng, endLat, endLng are a long with 6 decimals like: 50.123456



  
  1. public void setupAPK(String apkname){
  2. String fileName = Environment.getExternalStorageDirectory() + "/" + apkname;
  3. Intent intent = new Intent(Intent.ACTION_VIEW);
  4. intent.setDataAndType(Uri.fromFile(new File(fileName)), "application/vnd.android.package-archive");
  5. mService.startActivity(intent);
  6. }



  
  1. Intent intent = new Intent();
  2. intent.setAction(Intent.ACTION_VIEW);
  3. intent.setData(People.CONTENT_URI);
  4. startActivity(intent);



  
  1. Uri personUri = ContentUris.withAppendedId(People.CONTENT_URI, info.id);// info.id联系人ID
  2. Intent intent = new Intent();
  3. intent.setAction(Intent.ACTION_VIEW);
  4. intent.setData(personUri);
  5. startActivity(intent);




  
  1. public static final String MIME_TYPE_IMAGE_JPEG = "image/*";
  2. public static final int ACTIVITY_GET_IMAGE = 0;
  3. Intent getImage = new Intent(Intent.ACTION_GET_CONTENT);
  4. getImage.addCategory(Intent.CATEGORY_OPENABLE);
  5. getImage.setType(MIME_TYPE_IMAGE_JPEG);
  6. startActivityForResult(getImage, ACTIVITY_GET_IMAGE);





  
  1. Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
  2. time = Calendar.getInstance().getTimeInMillis();
  3. intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(Environment
  4. .getExternalStorageDirectory().getAbsolutePath()+"/tucue", time + ".jpg")));
  5. startActivityForResult(intent, ACTIVITY_GET_CAMERA_IMAGE);


文章来源: panda1234lee.blog.csdn.net,作者:panda1234lee,版权归原作者所有,如需转载,请联系作者。

原文链接:panda1234lee.blog.csdn.net/article/details/8792734

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。