Android中Activity的Intent大全

Api Level 3: (SDK 1.5)

  1. android.intent.action.ALL_APPS
  2. android.intent.action.ANSWER
  3. android.intent.action.ATTACH_DATA
  4. android.intent.action.BUG_REPORT
  5. android.intent.action.CALL
  6. android.intent.action.CALL_BUTTON
  7. android.intent.action.CHOOSER
  8. android.intent.action.CREATE_LIVE_FOLDER
  9. android.intent.action.CREATE_SHORTCUT
  10. android.intent.action.DELETE
  11. android.intent.action.DIAL
  12. android.intent.action.EDIT
  13. android.intent.action.GET_CONTENT
  14. android.intent.action.INSERT
  15. android.intent.action.INSERT_OR_EDIT
  16. android.intent.action.MAIN
  17. android.intent.action.MEDIA_SEARCH
  18. android.intent.action.PICK
  19. android.intent.action.PICK_ACTIVITY
  20. android.intent.action.RINGTONE_PICKER
  21. android.intent.action.RUN
  22. android.intent.action.SEARCH
  23. android.intent.action.SEARCH_LONG_PRESS
  24. android.intent.action.SEND
  25. android.intent.action.SENDTO
  26. android.intent.action.SET_WALLPAPER
  27. android.intent.action.SYNC
  28. android.intent.action.SYSTEM_TUTORIAL
  29. android.intent.action.VIEW
  30. android.intent.action.VOICE_COMMAND
  31. android.intent.action.WEB_SEARCH
  32. android.net.wifi.PICK_WIFI_NETWORK
  33. android.settings.AIRPLANE_MODE_SETTINGS
  34. android.settings.APN_SETTINGS
  35. android.settings.APPLICATION_DEVELOPMENT_SETTINGS
  36. android.settings.APPLICATION_SETTINGS
  37. android.settings.BLUETOOTH_SETTINGS
  38. android.settings.DATA_ROAMING_SETTINGS
  39. android.settings.DATE_SETTINGS
  40. android.settings.DISPLAY_SETTINGS
  41. android.settings.INPUT_METHOD_SETTINGS
  42. android.settings.INTERNAL_STORAGE_SETTINGS
  43. android.settings.LOCALE_SETTINGS
  44. android.settings.LOCATION_SOURCE_SETTINGS
  45. android.settings.MANAGE_APPLICATIONS_SETTINGS
  46. android.settings.MEMORY_CARD_SETTINGS
  47. android.settings.NETWORK_OPERATOR_SETTINGS
  48. android.settings.QUICK_LAUNCH_SETTINGS
  49. android.settings.SECURITY_SETTINGS
  50. android.settings.SETTINGS
  51. android.settings.SOUND_SETTINGS
  52. android.settings.SYNC_SETTINGS
  53. android.settings.USER_DICTIONARY_SETTINGS
  54. android.settings.WIFI_IP_SETTINGS
  55. android.settings.WIFI_SETTINGS
  56. android.settings.WIRELESS_SETTINGS

Api Level 4 增加的:(SDK 1.6)

  1. android.intent.action.POWER_USAGE_SUMMARY
  2. android.intent.action.SEND_MULTIPLE
  3. android.speech.tts.engine.CHECK_TTS_DATA
  4. android.speech.tts.engine.INSTALL_TTS_DATA

Api Level 5 增加的:(SDK 2.0)

  1. android.bluetooth.adapter.action.REQUEST_DISCOVERABLE
  2. android.bluetooth.adapter.action.REQUEST_ENABLE
  3. android.settings.ACCESSIBILITY_SETTINGS
  4. android.settings.PRIVACY_SETTINGS

Api Level 6 (SDK 2.0.1)、Api Level 7 (SDK 2.1和Api Level 5 (SDK 2.0)一样,没有增加。

Api Level 8 增加的:(SDK 2.2)

  1. android.app.action.ADD_DEVICE_ADMIN
  2. android.app.action.SET_NEW_PASSWORD
  3. android.intent.action.MUSIC_PLAYER
  4. android.search.action.SEARCH_SETTINGS
  5. android.settings.ADD_ACCOUNT_SETTINGS
  6. android.settings.DEVICE_INFO_SETTINGS

后面会把broadcast、categories、service、widgets 这些intent都列出来。

android学习笔记六的更多相关文章

  1. android学习笔记六——Spinner

    注:参考http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2015/0105/2264.html Spinner ==> Spinner ...

  2. Android学习笔记六:六大布局

    六大界面布局方式包括: 线性布局(LinearLayout).帧布局(FrameLayout).表格布局(TableLayout).相对布局(RelativeLayout).绝对布局(Absolute ...

  3. 【转】 Pro Android学习笔记(七六):服务(1):local和remote

    文章转载只能用于非商业性质,且不能带有虚拟货币.积分.注册等附加条件.转载须注明出处:http://blog.csdn.net/flowingflying/ Android提供服务,服务是运行在后台的 ...

  4. 【转】 Pro Android学习笔记(六九):HTTP服务(3):HTTP POST MultiPart

    目录(?)[-] 建立测试环境 开发环境导入第三方JAR HTTP Post Multipart小例子 HTTP POST不仅可以通过键值对传递参数,还可以携带更为复杂的参数,例如文件.HTTP Po ...

  5. 【转】 Pro Android学习笔记(六七):HTTP服务(1):HTTP GET

    目录(?)[-] HTTP GET小例子 简单小例子 出现异常NetworkOnMainThreadException 通过StrictMode进行处理 URL带键值对 Andriod应用可利用ser ...

  6. 【转】 Pro Android学习笔记(五六):配置变化

    目录(?)[-] Activity的destorycreate过程 Fragment的destorycreate过程 onSaveInstanceState saveFragmentInstanceS ...

  7. android学习笔记12——ListView、ListActivity

    ListView.ListActivity ==> ListView以垂直列表的形式显示所有列表项. 创建ListView的方式: 1.直接使用ListView创建 2.Activity继承Li ...

  8. 【转】 Pro Android学习笔记(八二):了解Package(1):包和进程

    文章转载只能用于非商业性质,且不能带有虚拟货币.积分.注册等附加条件.转载须注明出处:http://blog.csdn.net/flowingflying/ 在之前,我们已经学习了如何签发apk,见P ...

  9. 【转】Pro Android学习笔记(二三):用户界面和控制(11):其他控件

    目录(?)[-] Chronometer计时器控件 倒计时CountDownTimer Switch控件 Space控件 其他控件 Android提供了很多控件,基本上都是view的扩展. Chron ...

随机推荐

  1. oracle 笔记

    1.Oracle认证,与其它数据库比较,安装 Oracle安装会自动的生成sys用户和system用户: (1)sys用户是超级用户,具有最高权限,具有sysdba角色,有create databas ...

  2. Java中super的用法并与this的区别(转载)

    一.子类中如果需要调用父类中的构造函数,则需要使用super(),且必须在构造函数中的第一行 public class Demo1 { public static void main(String[] ...

  3. hdoj 2202 最大三角形

    题目大意:给定n(3<=n<=50000)个点,求其中任意三个点组成的三角形面积最大,输出该面积. 题目传送:http://acm.hdu.edu.cn/showproblem.php?p ...

  4. 暑假集训单切赛第一场 CF 191A Dynasty Puzzles

    题意不说了,看原题吧,思路见代码: #include <iostream> #include <stdio.h> #include <string.h> #incl ...

  5. Javascript 绝对定位和相对定位

    <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <m ...

  6. POJ 2029 Get Many Persimmon Trees(DP||二维树状数组)

    题目链接 题意 : 给你每个柿子树的位置,给你已知长宽的矩形,让这个矩形包含最多的柿子树.输出数目 思路 :数据不是很大,暴力一下就行,也可以用二维树状数组来做. #include <stdio ...

  7. lintcode 中等题:permutations 全排列

    题目 全排列 给定一个数字列表,返回其所有可能的排列. 您在真实的面试中是否遇到过这个题? Yes 样例 给出一个列表[1,2,3],其全排列为: [ [1,2,3], [1,3,2], [2,1,3 ...

  8. Shell脚本的编写

    筛选后统计总数 cat logs | grep IconsendRedirect | wc -l >> bb.log 筛选后分类统计并且排序 cat logs | grep Iconsen ...

  9. IT讲师韩顺平:我为什么辞去百万年薪,自己创业?

    先自我介绍一下,我叫韩顺平,是一名IT讲师.国内很多自学PHP和Java的朋友都看过我的视频课程,算是有些知名度. 15年8月从传智辞职后,很多朋友非常关心我的去向,网上也流传各种说法,有的说我和某某 ...

  10. Unified Emoji表情for Android

    这个是我做Android以来碰到的最烦的东西,该死的emoji表情,恨之入骨..无奈这个问题分配给我了.我也只能硬着头皮做. 0.吐个槽先 首先,你要明白什么是emoji表情,不知道的google,不 ...