最新文章列表

ACTION_VIEW动作所有使用的URI示例

android.content.Intent.ACTION_VIEW动作所有使用的URI示例: 用于查找联系人 content://constracts/people/123 用户获取联系人列表 content;//constracts/people 提取联系人记录 Intent myIntent = new Intent(Intent.ACTION_PICK,Uri.parse( ...
zhtch_123 评论(0) 有1001人浏览 2012-08-15 12:44

android Intents和Intent Filters - 开发文档翻译 - 1

由于本人英文能力实在有限,不足之初敬请谅解 本博客只要没有注明“转”,那么均为原创,转贴请注明本博客链接链接   android 进程与线程 - 开发文档翻译 - 进程 android 进程与线程 - 开发文档翻译 - 线程   其他系列的翻译 android activity开发文档翻译 - 1 - 基础篇 android activity开发文档翻译 - 2 - 生命周期篇
su1216 评论(0) 有2184人浏览 2012-07-27 14:08

android的action

[b][/b][b]android intent和intent action大全 android 中intent是经常要用到的。不管是页面牵转,还是传递数据,或是调用外部程序,系统功能都要用到intent。在做了一些intent的例子之后,整理了一下intent,希望对大家有用。由于intent内容太多,不可能真的写全,难免会有遗落,以后我会随时更新。如果你们有疑问或新的intent内容,希望交流 ...
uz31415926 评论(0) 有785人浏览 2012-07-22 17:10

Andriod学习之Activity

一:概述 1.Activity是一个控件的容器,控件需要在布局文件中声明,在Activity中利用控件的ID使用。 2.Activity是一个类,需要继承自类Activity。 3.Activity需要重写onCreate()方法。 4.Activity需要在Manifest中注册。 5.多个Activity之间的关系:startActivity(Intent intent) 6.intent:是一 ...
summerworm 评论(0) 有1508人浏览 2012-07-19 08:53

android intent activity参数传递

1.java Intent intent=new Intent(MainActivity.this,SecondActivity.class); Bundle bundle=new Bundle(); bundle.putString("mainstr", "第一个activity的内容"); ...
修博龙泉 评论(0) 有1161人浏览 2012-07-14 16:19

Android中一个Activity多个intent-filter的调用方法

在Android中,Activity允许有很多种调用方式,其中一个方法是使用 <intent-filter>。 比如: <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name=&q ...
海安邓斌 评论(1) 有2010人浏览 2012-07-03 06:34

android task与back stack 开发文档翻译 - 3

由于本人英文能力实在有限,不足之初敬请谅解 本博客只要没有注明“转”,那么均为原创,转贴请注明链接 android task与back stack 开发文档翻译 - 1 android task与back stack 开发文档翻译 - 2 android task与back stack 开发文档翻译 - 3   andling affinities 处理affini ...
su1216 评论(0) 有2694人浏览 2012-06-29 13:42

android task与back stack 开发文档翻译 - 2

由于本人英文能力实在有限,不足之初敬请谅解 本博客只要没有注明“转”,那么均为原创,转贴请注明链接 android task与back stack 开发文档翻译 - 1 android task与back stack 开发文档翻译 - 2 android task与back stack 开发文档翻译 - 3   Managing Tasks 管理task ...
su1216 评论(1) 有3086人浏览 2012-06-29 11:45

退出整个程序(有多个activity)

如果一个app中 你已经启动了多个, 但是在当前这个activity想关掉这个app所有的activity的话 Intent intent=new Intent(Intent.ACTION_MAIN); intent.addCategory(Intent.CATEGORY_HOME); ...
dengyin2000 评论(1) 有989人浏览 2012-06-26 18:27

android task与back stack 开发文档翻译 - 1

由于本人英文能力实在有限,不足之初敬请谅解 本博客只要没有注明“转”,那么均为原创,转贴请注明链接 android task与back stack 开发文档翻译 - 1 android task与back stack 开发文档翻译 - 2 android task与back stack 开发文档翻译 - 3   Task和Back Stack   An application ...
su1216 评论(3) 有3295人浏览 2012-06-26 11:13

通过Intent action 跳转到系统页面

1.调用系统的拨打号界面 Intent intent = new Intent(); intent.setAction(Intent.ACTION_NEW_OUTGOING_CALL); startActivity(intent); 2.拨打紧急电话 Intent intent = new Intent(); intent.setAc ...
yuanjian19900610 评论(0) 有1125人浏览 2012-06-25 18:32

Android之intents and intentFilters

Intent: 在Android系统中,Intent是非常重要的一个概念,它是启动activity、service、broadcast这三大组件关键信息。那什么是Intent呢?SDK doc中是这样定义的:引用An Intent object is a bundle of information. It contains information of interest to the compon ...
shenghuadun 评论(0) 有790人浏览 2012-06-22 17:29

Android 关闭所有Activity完全退出程序方法

    Intent startMain = new Intent(Intent.ACTION_MAIN);      startMain.addCategory(Intent.CATEGORY_HOME);                      startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);                   st ...
hack_zhang 评论(0) 有1609人浏览 2012-05-22 17:45

Intent和Broadcast面对面

  第4 章  Intent 和Broadcast 面对面 在第 3 章介绍了 Android 应用的核心组件: Activity, Service 和 Broadcast receiver ,这些组件通过消息的机制联系起来,承载这个消息的组件是 Intent , Broadcast 也可以完成这个通信的任务。不过 B ...
hechel 评论(0) 有2342人浏览 2012-05-03 15:01

转载《Intent的一些用法(不断更新)》

Intent用法实例 1.无参数Activity跳转  Java代码  
jinzhu117 评论(0) 有2523人浏览 2012-04-26 20:30

Intent小应用:打电话

Intent小应用:打电话 MainActivity: package com.amaker.call; import android.app.Activity; import android.content.Intent; import android.database.Cursor; import android.net.Uri; import android.os.Bundl ...
android_zhang 评论(0) 有1154人浏览 2012-04-20 21:53

Intent 直接法、间接法实现界面的跳转

一、Intent的组成部分: action 动作 data  数据 category 分类 type  类型 component 组件 Extra  扩展信息 二、Intent 寻找目标组件的方法: 1,通过组件名直接指定 2,通过intent-filter过滤指定 Demo: package com.amaker.intent; import android.app.Activity; ...
android_zhang 评论(0) 有1526人浏览 2012-04-20 20:23

Intent

Intent 的基本作用 一个Intent对象包含了一组信息 1.Component name 指定我要启动哪一个Activity 2.Action Data 启动另一个Activity后要干什么 3.Data 我从一个Activity想向另外一个Activity传送什么样的数据 4.Category 5.Extras 额外的信息,键值对,从一个Activity中通过Intent传送到另一个 ...
huahua09 评论(0) 有764人浏览 2012-04-18 14:59

【转】Intent传值

Intent intent = new Intent(); intent.setClass(helloworld.this,android2.class);//helloworld.class为Activity,android2.class为Activity。 intent.putExtra("name", "传值测试!");//设置传递内容。 s ...
shirlly 评论(0) 有1381人浏览 2012-04-09 11:47

最近博客热门TAG

Java(141747) C(73651) C++(68608) SQL(64571) C#(59609) XML(59133) HTML(59043) JavaScript(54918) .net(54785) Web(54513) 工作(54116) Linux(50906) Oracle(49876) 应用服务器(43288) Spring(40812) 编程(39454) Windows(39381) JSP(37542) MySQL(37268) 数据结构(36423)

博客人气排行榜

    博客电子书下载排行

      >>浏览更多下载

      相关资讯

      相关讨论

      Global site tag (gtag.js) - Google Analytics