文章 2014-02-22 来自:开发者社区

Android菜鸟的成长笔记(8)——Intent与Intent Filter(上)

原文: [置顶] Android菜鸟的成长笔记(8)——Intent与Intent Filter(上) Intent代表了Android应用的启动“意图”,Android应用将会根据Intent来启动指定组件,至于到底启动哪个组件,取决于Intent的各个属性。 一、显式的Intent 明确指定了要启动的组件的Intent我们称为显式的Intent 例如: package com.exampl.....

文章 2014-02-08 来自:开发者社区

在Android中使用native程序(非Java)来广播intent

http://blog.csdn.net/yzhang8703/article/details/18961731

文章 2013-11-27 来自:开发者社区

Android Intent 调用其他应用 setComponent

http://blog.csdn.net/muojie/article/details/7932024 只要利用adb logcat ,再搭配使用setComponet(),就可以輕易的呼叫第三方程式(不在自己的application內)。詳細用法參考原文:http://developer.android.com/reference/android/content/Intent.html#set....

文章 2012-12-07 来自:开发者社区

Android开发10——Activity的跳转与传值_显示意图(intent)的应用

Activity跳转与传值,主要是通过Intent类,Intent的作用是激活组件和附带数据。 intent可以激活Activity,服务,广播三类组件。 本博文讲的是显示意图激活Activity组件。所谓显示意图就是在activity的激活时,显示指出了需要激活的activity的名字。   一、Activity跳转 方法一 Intent intent = new Intent(A.t...

文章 2012-11-21 来自:开发者社区

android打开pdf ppt word excel chm html text 文件的intent

以下代码未经测试。但是有我想找的,先贴过来,慢慢了解~~ import android.app.Activity; import android.content.Intent; import android.net.Uri; import android.net.Uri.Builder; import java.io.File; import android.conten...

文章 2012-11-05 来自:开发者社区

Android Intent调用大全、系统自带Intent调用大全

原文:http://www.eoeandroid.com/thread-185954-1-1.html 1.从google搜索内容  Intent intent = new Intent();  intent.setAction(Intent.ACTION_WEB_SEARCH);  intent.putExtra(SearchManager.QUERY,"searc...

文章 2012-05-08 来自:开发者社区

Android Intent调用大全

//调用浏览器  Uri uri = Uri.parse("");  Intent it  = new Intent(Intent.ACTION_VIEW,uri);  startActivity(it);    //显示某个坐标在地图上    Uri uri = Uri.parse("geo:38.899533,-7...

文章 2012-04-25 来自:开发者社区

android中Intent的一些用法和总结

Data属性接受URI对象,通常包括两个部分,例如:content://com.android.contaccts/contacts/1 content代表数据类型,是联系人信息。 :...冒号后面代表的是数据,标明id为1的联系人数据 Type属性指定Data要操作的数据类型,但是一般Intent指定了Action,Data属性之后,android会自动指定数据类型 使用Intent的方法...

文章 2012-04-11 来自:开发者社区

【android基础】Android Intent 用法全面总结

[代码] 调用拨号程序    // 给移动客服10086拨打电话     Uri uri = Uri.parse("tel:10086");     Intent intent = new Intent(Intent.ACTION_DIAL, uri);     startActivity...

文章 2012-04-06 来自:开发者社区

【android中级】Android 系统应用调用,intent的使用总结

相当一部分来自文档,希望能有朋友继续完善此贴,以作搜藏。 显示网页:   1. Uri uri = Uri.parse("http://www.google.com");   2. Intent it = new Intent(Intent.ACTION_VIEW,uri);   3. startActivity(it); 显示地图:   1. Uri ur...

本页面内关键词为智能算法引擎基于机器学习所生成,如有任何问题,可在页面下方点击"联系我们"与我们沟通。

mPaaS 移动开发平台

mPaaS 源于蚂蚁集团金融科技,为 App 开发、测试、运营及运维提供云到端的一站式解决方案,致力于提供高效、灵活、稳定的移动研发、管理平台。 官网地址:https://www.aliyun.com/product/mobilepaas/mpaas

+关注