`
trygood
  • 浏览: 78056 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Intent Uri

阅读更多

进入联系人页面
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);


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

Uri uri = Uri.parse(“http://blog.3gstdy.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); 

三、打开拨号界面 ,类型是Intent.ACTION_DIAL 

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); 

五、卸载一个应用,Intent的类别是Intent.ACTION_DELETE 

Uri uri = Uri.fromParts(“package”, “xxx”, null); 

Intent intent = new Intent(Intent.ACTION_DELETE, uri); 

六、安装应用程序,Intent的类别是Intent.ACTION_PACKAGE_ADDED 

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@3gstdy.com”); 

Intent intent = new Intent(Intent.ACTION_SENDTO, uri); 

九、发邮件,与八不同这里是将邮件发送出去, 

Intent intent = new Intent(Intent.ACTION_SEND); 

String[] tos = { “admin@3gstdy.com” }; 

String[] ccs = { “webmaster@3gstdy.com” }; 

intent.putExtra(Intent.EXTRA_EMAIL, tos); 

intent.putExtra(Intent.EXTRA_CC, ccs); 

intent.putExtra(Intent.EXTRA_TEXT, “I come from http://blog.3gstdy.com”); 

intent.putExtra(Intent.EXTRA_SUBJECT, “http://blog.3gstdy.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://blog.3gstdy.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://blog.3gstdy.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://blog.3gstdy.com”); 

intent.putExtra(Intent.EXTRA_STREAM, uri); 

intent.setType(“image/png”); 

十三、# Market 相关 

1 //寻找某个应用 

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 

2 //显示某个应用的相关信息 

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); 
分享到:
评论

相关推荐

    Android 常用的Intent的URI及示例

    Android Intent 的 URI 及示例 Android 操作系统中,Intent 是一个非常重要的组件,它允许不同的应用程序之间进行通信和交互。在 Android 中,Intent 是一个消息对象,它可以用来请求其他应用程序执行某些操作。...

    Android中Intent的Uri使用

    ### Android中Intent的Uri使用详解 #### 概述 在Android开发中,`Intent`是进行组件间通信的重要工具之一,它可以启动一个Activity、BroadcastReceiver或Service,也可以用来向服务发送数据请求。其中,`Intent`的...

    APKManager:显示手机上的APK;显示进入应用的Intent uri;仿QQ左滑删除功能

    这款工具集成了多种实用功能,如显示已安装的APK信息、提供进入应用的Intent URI以及模仿QQ的左滑删除操作,使得用户在Android设备上可以更加便捷地管理和操作应用程序。 首先,我们来详细了解APKManager的核心特性...

    常用到的Intent的URI及其示例

    常用到的Intent的URI及其示例,包含了大部分应用中用到的共用Intent

    URI.rar_android

    6. **intent URI**:Android Intent可以携带URI,用于启动其他应用组件,如`intent://scan/#Intent;package=com.google.zxing.client.android;scheme=zxing;end`,这种URI用于启动二维码扫描器。 7. **数据URI**:...

    Android学习笔记(三五):再谈Intent(下)-一些实践.doc

    1. 创建Intent:Intent可以携带数据,如Uri,通过`Intent.ACTION_VIEW, uri`启动能处理该Uri的Activity。若需传递自定义数据,可以使用`putExtra()`方法添加额外信息。 2. 启动Activity:使用`startActivity(Intent...

    Android Intent调用 Uri的方法总结

    本篇文章将深入探讨如何使用Intent与Uri相结合来实现各种功能。 首先,调用浏览器是一个常见的操作。通过以下代码,你可以打开指定的网页: ```java Uri uri = Uri.parse("http://www.example.com"); Intent it = ...

    Android如何通过URI获取文件路径示例代码

    最近在工作的过程中,遇到不同 Android 版本下 URI 采用不同方式来获取文件路径的问题。 因为需求的原因,要求拍照上传或者从相册中选择图片上传,而且图片是需要经过压缩的,大小不能超过2M。 很快,拍照的这部分...

    获取android相册相机图片

    Intent intent = new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI); startActivityForResult(intent, REQUEST_CODE_GET_IMAGE); ``` 这里的`REQUEST_CODE_GET_IMAGE`是一个自定义...

    调用系统相机和系统相册,更改图片的保存路径,点击看大图

    Intent galleryIntent = new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI); startActivityForResult(galleryIntent, SELECT_IMAGE_FROM_GALLERY); ``` 在`onActivityResult()`方法中...

    intent的常用方法

    Intent intent = new Intent("android.intent.action.SIMEDIT", uri); startActivity(intent); ``` 2. **自定义Type**:也可以显式设置Type,但需使用`setDataAndType()`方法。 ```java Uri uri = Uri.parse...

    android用于打开各种文件的intent.pdf

    显式 Intent 是明确指定了要启动的组件,而隐式 Intent 则是根据 Intent 的动作、URI 和类型来确定要启动的组件。 要打开各种文件类型,需要使用隐式 Intent,并指定正确的动作、URI 和类型。例如,要打开一个 PDF ...

    Android的Intent实验

    过滤器包含动作、数据URI、类别等元素,系统会对比Intent和过滤器来决定Intent应由哪个组件处理。 9. **Intent的生命周期** 在Activity中,Intent可以通过`onNewIntent(Intent intent)`方法获取,而在Service中,...

    android拍照

    // 构建Uri并设置到Intent Uri photoURI = FileProvider.getUriForFile(this, "com.example.app.fileprovider", photoFile); takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI); ...

    Android解析Intent Filter的方法

    - 这一步涉及Intent的URI(Uniform Resource Identifier),包括scheme、host/authority、path和mimetype。 - mimetype匹配:Intent Filter指定的数据类型(如image/jpeg)必须与Intent的mimetype相匹配,或者使用...

    动态更换头像

    这通常涉及到创建一个Intent,使用`Intent.ACTION_IMAGE_CAPTURE`来请求系统相机应用。当用户完成拍照后,系统会返回一个包含所拍照片的URI。代码示例如下: ```java Intent takePictureIntent = new Intent...

    Android Intent的几种用法全面总结

    Intent it = new Intent(Intent.ACTION_VIEW, uri); startActivity(it); ``` 这会启动默认的浏览器应用来显示给定的网页。 2. 显示地图: 通过设置地理坐标,Intent可以启动地图应用展示特定位置。如: ```java Uri...

Global site tag (gtag.js) - Google Analytics