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. Unity3d - 初学篇 Event Functions 的 继承 机制

    我们知道Start() Update() 等之类的 事件函数 在Unity 主线程中是依次调用的.至于调用的顺序可以查手册. 由此继承机制也会发生一些改变. 测试一: public class MyT ...

  2. 一个碉堡的swing类

    今天遇到一个掉了一笔的swing类.可以完美的解决JFrame下设置背景的问题.任意size.太掉了.特记于此 import java.awt.*; import java.awt.image.Buf ...

  3. linux下cat命令详解

    简略版: cat主要有三大功能:1.一次显示整个文件.$ cat filename2.从键盘创建一个文件.$ cat > filename     只能创建新文件,不能编辑已有文件.3.将几个文 ...

  4. lintcode:Recover Rotated Sorted Array恢复旋转排序数组

    题目: 恢复旋转排序数组 给定一个旋转排序数组,在原地恢复其排序. 样例 [4, 5, 1, 2, 3] -> [1, 2, 3, 4, 5] 挑战 使用O(1)的额外空间和O(n)时间复杂度 ...

  5. scanf()函数用法小结

    scanf()函数是格式化输入函数,它从标准输入设备(键盘) 读取输入的信息. 其调用格式为:      scanf("<格式化字符串>",<地址表>); ...

  6. vimrc示例

     1 "===============================================================================  2 "   ...

  7. poj2454

    我不会告诉你我对我自己的想法笑了一下午的.. #include <iostream> #include <algorithm> #include <time.h> ...

  8. Support Library官方教程(3)android studio中导入支援包

    Support Library Setup How you setup the Android Support Libraries in your development project depend ...

  9. ProgressBar 示例及自定义样式

    在layout中使用ProgerssBar,其中使用了自定义的样式 <ProgressBar android:id="@+id/footer_refresh_prgs" st ...

  10. 自定义View(1)简单流程及示例模板

    1,继承View , ViewGroup,或TextView等等 2,绘制相关的api, canvas 画布, paint 画笔 2,重写重要的函数(注意这个顺序) onMeasure 属于View的 ...