`
夏文权
  • 浏览: 243037 次
  • 性别: Icon_minigender_1
  • 来自: 贵州
社区版块
存档分类
最新评论

android intent的常用方法

 
阅读更多
Android的Intent用法
如果是从BroadcastReceiver 启动一个新的Activity , 不要忘记i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
public class MyReceiver extends BroadcastReceiver{
	public static final String action="acc";
	public void onReceive(Context context, Intent intent) {
		Intent i=new Intent(context,Receivered.class);
		i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
		context.startActivity(i);
	}
}
1. 指定action和type
// SIM import
Intent importIntent = new Intent(Intent.ACTION_VIEW);
importIntent.setType("vnd.android.cursor.item/sim-contact");
importIntent.setClassName("com.android.phone", "com.android.phone.SimContacts");
menu.add(0, 0, 0, R.string.importFromSim)
.setIcon(R.drawable.ic_menu_import_contact)
.setIntent(importIntent);
2. 指定act ion, da ta和type
(1)隐式查找type
示例代码:
uri: content://simcontacts/simPeople/(id)
intent = new Intent("android.intent.action.SIMEDIT",uri);
startActivity(intent);
程序会很据data中的uri去查找匹配的type(必须的)
provider中的getType()
case SIM_PEOPLE_ID:
return "vnd.android.cursor.item/sim-contact";
配置文件中的filter设定
AndroidManifest.xml
<intent-filter>
<action android:name="android.intent.action.SIMEDIT" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.item/sim-contact" />
</intent-filter>
也可以自己设定type,但只能使用 setDataAndType()
3. 其他设定intent的属性方式
Intent setComponent(ComponentName component)
Intent setClassName(Context packageContext, String className)
Intent setClassName(String packageName, String className)
Intent setClass(Context packageContext, Class<?> cls)
Intent 应该算是Android中特有的东西。你可以在Intent中指定程序 要执行的动作(比如:view,edit,dial),以及程序执行到该动作时所需要的资料 。都指定好后,只要调用startActivity(),Android系统 会自动寻找最符合你指定要求的应用 程序,并执行该程序。




显示网页: 
   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, "file:///sdcard/mysong.mp3"); 
   4. sendIntent.setType("audio/mp3"); 
   5. startActivity(Intent.createChooser(it, "Choose Email Client"));


播放多媒体 
    1、本地播放:
   
    Intent it = new Intent(Intent.ACTION_VIEW); 
    Uri uri = Uri.parse("file:///sdcard/song.mp3"); 
    it.setDataAndType(uri, "audio/mp3"); 
    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); 

   2、网络播放

     Intent intent = new Intent(Intent.ACTION_VIEW);
     String type = "video/* ";
     Uri uri = Uri.parse("http://forum.ea3w.com/coll_ea3w/attach/2008_10/12237832415.3gp");
     intent.setDataAndType(uri, type);
     startActivity(intent);

      如果不设置type的话,这样写:
      Intent intent = new Intent(Intent.ACTION_VIEW);
      Uri uri = Uri.parse("http://forum.ea3w.com/coll_ea3w/attach/2008_10/12237832415.3gp");
      intent.setData (uri);
      startActivity(intent);  
      默认用浏览器打开这个URL!
//卸载apk 2 
Uri uninstallUri = Uri.fromParts("package", "xxx", null); 
returnIt = new Intent(Intent.ACTION_DELETE, uninstallUri);

//安装APK 
Uri installUri = Uri.fromParts("package", "xxx", null); 
returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri);

//调用搜索 
Intent intent = new Intent(); 
intent.setAction(Intent.ACTION_WEB_SEARCH); 
intent.putExtra(SearchManager.QUERY,"android123") 
startActivity(intent);

//market上某个应用信息,app_id可以通过www网站看下, app_id也可以换成packageName 
Uri uri = Uri.parse("market://details?id=app_id");   
Intent it = new Intent(Intent.ACTION_VIEW, uri);   
startActivity(it);

//market上某个应用信,pkg_name就是应用的packageName 
Uri uri = Uri.parse("market://search?q=pname:pkg_name");   
Intent it = new Intent(Intent.ACTION_VIEW, uri);   
startActivity(it);








 

分享到:
评论

相关推荐

    android常用Intent

    通过`putExtra()`方法将短信文本添加到Intent中,并设置类型为`vnd.android-dir/mms-sms`,然后启动一个活动来展示预填充的短信界面,用户可以在其中进行编辑和发送。 ### 5. 拨打电话 #### 示例代码: ```java ...

    Android利用Intent启动和关闭Activity

    一些常用的Intent动作常量包括: - ACTION_CALL:拨打电话 - ACTION_VIEW:查看内容,如浏览网页 - ACTION_SEND:发送内容,如邮件、短信 - ACTION_MAIN:作为应用的起点 使用时,可以直接在Intent构造函数中指定,...

    Android 常用的Intent的URI及示例

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

    android intent跳转

    #### 三、Intent常用属性及方法 - **putExtra()方法**:用于向Intent中添加额外的数据。 ```java intent.putExtra("key", "value"); ``` - **getExtras()方法**:获取Intent中的额外数据。 ```java Bundle ...

    android intent源码学习

    Intent.getExtras()和putExtras(Bundle extras)是常用的API,用于获取和设置Intent中的附加数据。 6. Intent flags:Intent还有许多标志位,如FLAG_ACTIVITY_NEW_TASK、FLAG_ACTIVITY_CLEAR_TOP等,这些标志可以...

    Android中Intent的常用方法一览.pdf

    下面将详细介绍Intent的一些常用方法。 1. **Intent类的构造方法** - `public Intent()`:创建一个空的Intent对象,通常需要后续设置Action或Component来确定其目标。 - `public Intent(Intent i)`:复制一个已...

    intent的常用方法

    ### Intent的常用方法 在Android开发中,`Intent`是一个非常重要的类,它主要用于应用程序组件间的通信。通过`Intent`可以启动新的Activity、Service或发送Broadcast等操作。本文将详细介绍`Intent`的一些常见用法...

    Intent传递

    常用的方法有putExtra()和getExtra(),用于在Intent中添加和获取键值对数据,数据类型可以是基本类型、字符串、Parcelable对象等。例如: ```java intent.putExtra("key", value); // 添加数据 String receivedValue...

    Android之Intent通过startActivityForResult方法启动新Activity

    在Android应用开发中,`startActivityForResult()`是一个常用且重要的功能,熟练掌握其使用能有效提高用户体验和应用的可维护性。在实际项目中,结合具体的业务场景灵活运用,可以使应用的交互更加顺畅。

    android intent

    ### Android Intent 基础知识点解析 ...通过以上对Intent的基本概念、类型、创建及使用方法、属性等方面的详细介绍,相信初学者能够更好地理解和掌握Intent的使用技巧,从而更加高效地进行Android应用程序的开发。

    android用Intent调用常用的系统组件

    在Android开发中,Intent是一种非常重要的机制,它用于在组件之间传递消息,实现应用程序内部或应用程序之间的交互。本文主要探讨如何使用Intent调用常见的系统组件,涵盖了搜索、浏览网页、地图导航、拨打电话、...

    android-GridView-事件-Intent-传递参数1.rar

    在Android开发中,GridView是一个非常常用的布局组件,它允许我们以网格的形式展示数据,通常用于创建类似九宫格的效果。GridView通常与Adapter一起工作,Adapter是连接数据源和视图的关键,它可以动态地填充和更新...

    Android中Intent习惯用法

    在本文中,我们将深入探讨一些Intent的常用习惯用法,如发送短信、发送邮件、调用相机拍照和录制视频等。 1. 发送短信: 当需要通过Intent发送短信时,应使用`Intent.ACTION_SENDTO`作为动作,并设置URI为`smsto:`...

    Android开发中Intent的四种数据传递方式

    4种最常用的Intent传递方式,这4种方式如下: 1、通过Intent传递数据 2、通过静态变量传递数据 3、通过剪切板传递数据 4、通过全局变量传递数据

    android的小东西 intent

    在Android应用中,我们常用Intent来启动一个新的Activity。例如,当我们点击一个按钮时,可能会启动一个新的Activity来显示详细信息。这可以通过创建Intent,设置其ACTION为ACTION_VIEW,然后调用startActivity()...

    Android使用Intent.ACTION_SEND分享图片和文字内容的示例代码

    Android mobile 操作系统中,Intent.ACTION_SEND 是一个非常常用的 Action,主要用于实现分享功能,例如分享图片、文字内容等。在本文中,我们将详细介绍如何使用 Intent.ACTION_SEND 分享图片和文字内容,并提供一...

    Android常用的intent action汇总

    10. Intent.ACTION_DATE_CHANGEDString: android.intent.action.DATE_CHANGED日期改变时发出的广播,例如年、月、日改变。11. Intent.ACTION_EDITString: android.intent.action.EDIT编辑数据,例如联系人、日历事件...

    Android Activity 的四种启动模式 lunchMode 和 Intent.setFlags()

    `Intent.setFlags()` 方法允许开发者为 Intent 设置标志位,其中最常用的是 `Intent.FLAG_ACTIVITY_NEW_TASK`。此标志位用于指示系统将 Intent 发送到一个新的任务栈或现有的任务栈顶部。 - **描述**:当设置 `...

Global site tag (gtag.js) - Google Analytics