`

android 常用uri

 
阅读更多

显示网页: 
  1. Uri uri = Uri.parse("http://www.google.com"); 
  2. Intent it = new Intent(Intent.ACTION_VIEW,uri); 
  3. startActivity(it); 

显示地图: 
  1. Uri uri = Uri.parse("geo:38.899533,-77.036476"); 
  2. Intent it = new Intent(Intent.Action_VIEW,uri); 
  3. startActivity(it); 

路径规划: 
  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); 

拨打电话: 
调用拨号程序 
  1. Uri uri = Uri.parse("tel:xxxxxx"); 
  2. Intent it = new Intent(Intent.ACTION_DIAL, uri);   
  3. startActivity(it);   
  1. Uri uri = Uri.parse("tel.xxxxxx"); 
  2. Intent it =new Intent(Intent.ACTION_CALL,uri); 
  3. 要使用这个必须在配置文件中加入<uses-permission id="Android.permission.CALL_PHONE" /> 

发送SMS/MMS 
调用发送短信的程序 
  1. Intent it = new Intent(Intent.ACTION_VIEW); 
  2. it.putExtra("sms_body", "The SMS text"); 
  3. it.setType("vnd.android-dir/mms-sms"); 
  4. startActivity(it);   
发送短信 
  1. Uri uri = Uri.parse("smsto:0800000123"); 
  2. Intent it = new Intent(Intent.ACTION_SENDTO, uri); 
  3. it.putExtra("sms_body", "The SMS text"); 
  4. startActivity(it);   
发送彩信 
  1. Uri uri = Uri.parse("content://media/external/images/media/23"); 
  2. Intent it = new Intent(Intent.ACTION_SEND); 
  3. it.putExtra("sms_body", "some text"); 
  4. it.putExtra(Intent.EXTRA_STREAM, uri); 
  5. it.setType("image/png"); 
  6. startActivity(it); 

发送Email 
  1. 
  2. Uri uri = Uri.parse("mailto:xxx@abc.com"); 
  3. Intent it = new Intent(Intent.ACTION_SENDTO, uri); 
  4. startActivity(it); 
  1. Intent it = new Intent(Intent.ACTION_SEND); 
  2. it.putExtra(Intent.EXTRA_EMAIL, "me@abc.com"); 
  3. it.putExtra(Intent.EXTRA_TEXT, "The email body text"); 
  4. it.setType("text/plain"); 
  5. startActivity(Intent.createChooser(it, "Choose Email Client"));   
  1. Intent it=new Intent(Intent.ACTION_SEND);   
  2. String[] tos={"me@abc.com"};   
  3. String[] ccs={"you@abc.com"};   
  4. it.putExtra(Intent.EXTRA_EMAIL, tos);   
  5. it.putExtra(Intent.EXTRA_CC, ccs);   
  6. it.putExtra(Intent.EXTRA_TEXT, "The email body text");   
  7. it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");   
  8. it.setType("message/rfc822");   
  9. startActivity(Intent.createChooser(it, "Choose Email Client")); 

添加附件 
  1. Intent it = new Intent(Intent.ACTION_SEND); 
  2. it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text"); 
  3. it.putExtra(Intent.EXTRA_STREAM, "[url=]file:///sdcard/mysong.mp3[/url]"); 
  4. sendIntent.setType("audio/mp3"); 
  5. startActivity(Intent.createChooser(it, "Choose Email Client")); 

播放多媒体 
  1.   
  2. Intent it = new Intent(Intent.ACTION_VIEW); 
  3. Uri uri = Uri.parse("[url=]file:///sdcard/song.mp3[/url]"); 
  4. it.setDataAndType(uri, "audio/mp3"); 
  5. startActivity(it); 
  1. Uri uri = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI, "1"); 
  2. Intent it = new Intent(Intent.ACTION_VIEW, uri); 
  3. startActivity(it);   

Uninstall 程序 
  1. Uri uri = Uri.fromParts("package", strPackageName, null); 
  2. Intent it = new Intent(Intent.ACTION_DELETE, uri); 
  3. startActivity(it); 

//调用相册 
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); 

uninstall apk 
/**未测试 
Uri uninstallUri = Uri.fromParts("package", "xxx", null); 
returnIt = new Intent(Intent.ACTION_DELETE, uninstallUri); 
*/ 
Uri packageURI = Uri.parse("package:"+wistatmap);   
Intent uninstallIntent = new Intent(Intent.ACTION_DELETE, packageURI);   
startActivity(uninstallIntent); 

install apk 
Uri installUri = Uri.fromParts("package", "xxx", null); 
returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri); 
play audio 
Uri playUri = Uri.parse("[url=]file:///sdcard/download/everything.mp3[/url]"); 
returnIt = new Intent(Intent.ACTION_VIEW, playUri); 

//发送附件 
Intent it = new Intent(Intent.ACTION_SEND);   
it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");   
it.putExtra(Intent.EXTRA_STREAM, "[url=]file:///sdcard/eoe.mp3[/url]");   
sendIntent.setType("audio/mp3");   
startActivity(Intent.createChooser(it, "Choose Email Client")); 

//搜索应用 
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 

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

分享到:
评论

相关推荐

    Android 常用的Intent的URI及示例

    下面是 Android 中常用的 Intent 的 URI 及示例: 一、打开一个网页 Intent.ACTION_VIEW 是一种常用的 Intent 动作,用于打开一个网页。例如,下面的代码将打开一个网页: Uri uri = Uri.parse(...

    android常用的API接口调用

    Android 常用的 API 接口调用 Android 操作系统提供了许多有用的 API 接口,开发者可以通过这些接口调用来实现各种功能。本文将对 Android 常用的 API 接口调用进行归类和详细介绍。 显示网页 要在 Android 应用...

    URI.rar_android

    本压缩包"URI.rar_android"提供了一个常用的URI大全,对于深入理解Android应用中的URI使用具有很大的帮助。 在Android系统中,URI主要通过ContentProvider进行操作,ContentProvider是Android四大组件之一,负责...

    Android常用基本控件

    ### Android常用基本控件 #### 一、文本控件(TextView和EditText) **1.1 TextView控件** - **简介**:`TextView`是Android中最基础的文本显示控件,用于展示不可编辑的文字内容。 - **特点**: - 继承自`View`...

    android 常用的系统调用

    ### Android常用的系统调用知识点详解 在Android开发中,系统调用是实现应用程序与系统功能交互的重要手段之一。本文将详细介绍部分常见的系统调用方法及其应用场景。 #### 1. 从Google搜索内容 通过调用`Intent....

    android常用Intent

    在Android开发中,Intent作为应用程序组件之间通信的核心机制,扮演着至关重要的角色。它不仅可以启动新的活动(Activity),还可以启动服务(Service)、广播接收器(BroadcastReceiver)以及与内容提供者...

    Android 常用开发术语

    ### Android常用开发术语详解 #### 1. APK扩展名 APK,即Android Package Kit,是Android应用的主要分发格式。一个APK文件包含了与特定Android应用相关的所有文件,包括但不限于`AndroidManifest.xml`(应用配置...

    Android常用代码集合.pdf

    【Android常用代码集合】 在Android开发中,常常需要利用各种代码片段来实现特定的功能。以下是一些常用的Android代码示例: 1. **调用浏览器打开指定网址** ```java Uri uri = Uri.parse(...

    android常用意图

    以下是对Android常用Intent的详细解释和示例: 1. 打开网页: 使用`Intent.ACTION_VIEW`类别,配合`Uri.parse()`方法,可以打开浏览器并加载指定URL。例如: ```java Uri uri = Uri.parse(...

    android的五大类各种常用类的资料整理

    在Android开发中,掌握核心的五大类常用类是至关重要的,它们构成了Android应用程序的基础框架,为开发者提供了丰富的功能。这五大类包括:Activity、Intent、BroadcastReceiver、Service以及ContentProvider。接...

    教案Android常用代码集合.pdf

    下面将对上述提供的Android常用代码集合进行详细的解释和扩展。 1. **调用浏览器打开指定网址** 这段代码用于启动设备上的默认浏览器并加载指定的URL。`Uri.parse()`方法用于创建一个URI对象,它代表了...

    android 常用类解说

    每个Content Provider都必须有一个唯一的URI(Uniform Resource Identifier)来标识其数据。 ### Activity 之间的通信 #### Intent 的作用 - **Component Name**:指定目标组件的名称。 - **Action**:表示Intent...

    Android常用实例——实现修改用户头像功能

    在Android应用开发中,用户头像是用户个性化表达的一部分,经常在社交、个人信息设置等场景中出现。本实例将深入探讨如何实现一个简单的“修改用户头像”功能,这对于任何涉及用户个人信息的应用都是至关重要的。 ...

    Android常用知识点汇总

    【Android常用知识点汇总】 在Android开发中,经常会遇到各种各样的问题,以下是一些关键知识点的总结,旨在帮助开发者快速解决常见问题。 1. **去除GridView、ListView的默认背景**:可以通过自定义Item布局,...

    android常用图片特效处理.rar

    ContentProvider:用于在应用间共享数据,可以通过URI来访问应用的数据。 版本演进: Android每年发布一个新的版本,每个版本都有一个代码名(通常是甜点名称),并带来一系列的功能改进和性能优化。例如: Android...

    android常用代码.pdf

    在Android开发中,Intent是一种非常重要的组件,用于在应用程序的不同组件之间传递消息和启动操作。在上述内容中,提到了Intent的几个关键用法,主要包括启动新的Activity、传递数据、返回结果以及显示网页和地图等...

    Android_常用代码集合

    ### Android 常用代码集合知识点详解 #### 一、调用浏览器载入某网址 在Android开发过程中,经常需要让应用打开一个网页链接。这可以通过`Intent`对象实现。 **代码示例:** ```java Uri uri = Uri.parse(...

Global site tag (gtag.js) - Google Analytics