Android常用URI收藏
【摘要】
以下是常用到的Intent的URI及其示例,包含了大部分应用中用到的共用Intent
一、打开一个网页,类别是Intent.ACTION_VIEW
Uri uri = Uri.parse("http://www.android-study.com/");Intent intent = new Intent(Intent.AC...
一、打开一个网页,类别是Intent.ACTION_VIEW
-
Uri uri = Uri.parse("http://www.android-study.com/");
-
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
-
Uri uri = Uri.parse("geo:52.76,-79.0342");
-
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
-
Uri uri = Uri.parse("tel:10086");
-
Intent intent = new Intent(Intent.ACTION_DIAL, uri);
-
Uri uri = Uri.parse("tel:10086");
-
Intent intent = new Intent(Intent.ACTION_CALL, uri);
-
Uri uri = Uri.fromParts("package", "xxx", null);
-
Intent intent = new Intent(Intent.ACTION_DELETE, uri);
-
Uri uri = Uri.fromParts("package", "xxx", null);
-
Intent intent = new Intent(Intent.ACTION_PACKAGE_ADDED, uri);
-
Uri uri = Uri.parse("file:///sdcard/download/everything.mp3");
-
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
-
intent.setType("audio/mp3");
-
Uri uri= Uri.parse("mailto:admin@android-study.com");
-
Intent intent = new Intent(Intent.ACTION_SENDTO, uri);
-
Intent intent = new Intent(Intent.ACTION_SEND);
-
String[] tos = { "admin@android-study.com" };
-
String[] ccs = { "webmaster@android-study.com" };
-
intent.putExtra(Intent.EXTRA_EMAIL, tos);
-
intent.putExtra(Intent.EXTRA_CC, ccs);
-
intent.putExtra(Intent.EXTRA_TEXT, "I come from http://www.android-study.com");
-
intent.putExtra(Intent.EXTRA_SUBJECT, "http://www.android-study.com");intent.setType("message/rfc882");
-
Intent.createChooser(intent, "Choose Email Client");
-
//发送带附件的邮件
-
Intent intent = new Intent(Intent.ACTION_SEND);
-
intent.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");
-
intent.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/mysong.mp3");
-
intent.setType("audio/mp3");
-
startActivity(Intent.createChooser(intent, "Choose Email Client"));
十、发短信
-
Uri uri= Uri.parse("tel:10086");
-
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
-
intent.putExtra("sms_body", "I come from http://www.android-study.com");
-
intent.setType("vnd.Android-dir/mms-sms");
-
Uri uri= Uri.parse("smsto://100861");
-
Intent intent = new Intent(Intent.ACTION_SENDTO, uri);
-
intent.putExtra("sms_body", "3g android http://www.android-study.com");
十二、发彩信
-
Uri uri= Uri.parse("content://media/external/images/media/23");
-
Intent intent = new Intent(Intent.ACTION_SEND);
-
intent.putExtra("sms_body", "3g android http://www.android-study.com");
-
intent.putExtra(Intent.EXTRA_STREAM, uri);
-
intent.setType("image/png");
-
Uri uri = Uri.parse("market://search?q=pname:pkg_name");
-
Intent it = new Intent(Intent.ACTION_VIEW, uri);
-
startActivity(it);
-
//where pkg_name is the full package path for an application
-
Uri uri = Uri.parse("market://details?id=app_id");
-
Intent it = new Intent(Intent.ACTION_VIEW, uri);
-
startActivity(it);
-
//where app_id is the application ID, find the ID
-
//by clicking on your application on Market home
-
//page, and notice the ID from the address bar
-
Uri uri = Uri.parse("http://maps.google.com/maps?f=d&saddr=startLat%20startLng&daddr=endLat%20endLng&hl=en");
-
Intent it = new Intent(Intent.ACTION_VIEW, uri);
-
startActivity(it);
-
//where startLat, startLng, endLat, endLng are a long with 6 decimals like: 50.123456
-
public void setupAPK(String apkname){
-
String fileName = Environment.getExternalStorageDirectory() + "/" + apkname;
-
Intent intent = new Intent(Intent.ACTION_VIEW);
-
intent.setDataAndType(Uri.fromFile(new File(fileName)), "application/vnd.android.package-archive");
-
mService.startActivity(intent);
-
}
-
Intent intent = new Intent();
-
intent.setAction(Intent.ACTION_VIEW);
-
intent.setData(People.CONTENT_URI);
-
startActivity(intent);
-
Uri personUri = ContentUris.withAppendedId(People.CONTENT_URI, info.id);// info.id联系人ID
-
Intent intent = new Intent();
-
intent.setAction(Intent.ACTION_VIEW);
-
intent.setData(personUri);
-
startActivity(intent);
-
public static final String MIME_TYPE_IMAGE_JPEG = "image/*";
-
public static final int ACTIVITY_GET_IMAGE = 0;
-
Intent getImage = new Intent(Intent.ACTION_GET_CONTENT);
-
getImage.addCategory(Intent.CATEGORY_OPENABLE);
-
getImage.setType(MIME_TYPE_IMAGE_JPEG);
-
startActivityForResult(getImage, ACTIVITY_GET_IMAGE);
-
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
-
time = Calendar.getInstance().getTimeInMillis();
-
intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(Environment
-
.getExternalStorageDirectory().getAbsolutePath()+"/tucue", time + ".jpg")));
-
startActivityForResult(intent, ACTIVITY_GET_CAMERA_IMAGE);
文章来源: panda1234lee.blog.csdn.net,作者:panda1234lee,版权归原作者所有,如需转载,请联系作者。
原文链接:panda1234lee.blog.csdn.net/article/details/8792734
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)