Android 基础知识

Android - 主页 Android - 概述 Android - 下载安装和设置 Android - Studio IDE Android - 架构 Android - 应用程序组件 Android - Hello World 示例 Android - 资源 Android - 活动 Android - 服务 Android - 广播接收器 Android - 内容提供者 Android - 片段 Android - Intents/Filters

Android - 用户界面

Android - UI 布局 Android - UI 控件 Android - 事件处理 Android - 样式和主题 Android - 自定义组件

Android 高级概念

Android - 拖放 Android - 通知 Android - 基于位置的服务 Android - 发送电子邮件 Android - 发送短信 Android - 拨打电话 Android - 发布应用程序

Android 实用示例

Android - 警报对话框 Android - 动画 Android - 音频捕捉 Android - 音频管理器 Android - 自动完成 Android - 最佳实践 Android - 蓝牙 Android - 相机 Android - 剪贴板 Android - 自定义字体 Android - 数据备份 Android - 开发者工具 Android - 模拟器 Android - Facebook 集成 Android - 手势 Android - 谷歌地图 Android - 图像效果 Android - 图像切换 Android - 内部存储 Android - JetPlayer Android - JSON 解析器 Android - Linkedin 集成 Android - 旋转加载器 Android - 本地化 Android - 登录应用 Android - 媒体播放器 Android - 多点触控 Android - 导航 Android - 网络连接 Android - NFC 指南 Android - PHP/MySQL Android - 进度圈 Android - 进度条 Android - 推送通知 Android - 渲染脚本 Android - RSS 阅读器 Android - 屏幕投射 Android - SDK 管理器 Android - 传感器 Android - 会话管理 Android - 共享首选项 Android - SIP 协议 Android - 拼写检查器 Android - SQLite 数据库 Android - 支持库 Android - 测试 Android - 文字转语音 Android - TextureView Android - Twitter 集成 Android - UI 设计 Android - UI 模式 Android - UI 测试 Android - WebView 布局 Android - Wi-Fi Android - Widgets Android - XML 解析器

Android 其他

Android - 面试问题 Android - 有用的资源 Android - 测验


Android - Intent Standard Actions

Following table lists down various important Android Intent Standard Actions. You can check Android Official Documentation for a complete list of Actions −

序号 Activity Action Intent & 描述
1

ACTION_ALL_APPS

List all the applications available on the device.

2

ACTION_ANSWER

Handle an incoming phone call.

3

ACTION_ATTACH_DATA

Used to indicate that some piece of data should be attached to some other place

4

ACTION_BATTERY_CHANGED

This is a sticky broadcast containing the charging state, level, and other information about the battery.

5

ACTION_BATTERY_LOW

This broadcast corresponds to the "Low battery warning" system dialog.

6

ACTION_BATTERY_OKAY

This will be sent after ACTION_BATTERY_LOW once the battery has gone back up to an okay state.

7

ACTION_BOOT_COMPLETED

This is broadcast once, after the system has finished booting.

8

ACTION_BUG_REPORT

Show activity for reporting a bug.

9

ACTION_CALL

Perform a call to someone specified by the data.

10

ACTION_CALL_BUTTON

The user pressed the "call" button to go to the dialer or other appropriate UI for placing a call.

11

ACTION_CAMERA_BUTTON

The "Camera Button" was pressed.

12

ACTION_CHOOSER

Display an activity chooser, allowing the user to pick what they want to before proceeding.

13

ACTION_CONFIGURATION_CHANGED

The current device Configuration (orientation, locale, etc) has changed.

14

ACTION_DATE_CHANGED

The date has changed.

15

ACTION_DEFAULT

A synonym for ACTION_VIEW, the "standard" action that is performed on a piece of data.

16

ACTION_DELETE

Delete the given data from its container.

17

ACTION_DEVICE_STORAGE_LOW

A sticky broadcast that indicates low memory condition on the device.

18

ACTION_DEVICE_STORAGE_OK

Indicates low memory condition on the device no longer exists.

19

ACTION_DIAL

Dial a number as specified by the data.

20

ACTION_DOCK_EVENT

A sticky broadcast for changes in the physical docking state of the device.

21

ACTION_DREAMING_STARTED

Sent after the system starts dreaming.

22

ACTION_DREAMING_STOPPED

Sent after the system stops dreaming.

23

ACTION_EDIT

Provide explicit editable access to the given data.

24

ACTION_FACTORY_TEST

Main entry point for factory tests.

25

ACTION_GET_CONTENT

Allow the user to select a particular kind of data and return it.

26

ACTION_GTALK_SERVICE_CONNECTED

A GTalk connection has been established.

27

ACTION_GTALK_SERVICE_DISCONNECTED

A GTalk connection has been disconnected.

28

ACTION_HEADSET_PLUG

Wired Headset plugged in or unplugged.

29

ACTION_INPUT_METHOD_CHANGED

An input method has been changed.

30

ACTION_INSERT

Insert an empty item into the given container.

31

ACTION_INSERT_OR_EDIT

Pick an existing item, or insert a new item, and then edit it.

32

ACTION_INSTALL_PACKAGE

Launch application installer.

33

ACTION_LOCALE_CHANGED

The current device's locale has changed.

34

ACTION_MAIN

Start as a main entry point, does not expect to receive data.

35

ACTION_MEDIA_BUTTON

The "Media Button" was pressed.

36

ACTION_MEDIA_CHECKING

External media is present, and being disk-checked.

37

ACTION_MEDIA_EJECT

User has expressed the desire to remove the external storage media.

38

ACTION_MEDIA_REMOVED

External media has been removed.

39

ACTION_NEW_OUTGOING_CALL

An outgoing call is about to be placed.

40

ACTION_PASTE

Create a new item in the given container, initializing it from the current contents of the clipboard.

41

ACTION_POWER_CONNECTED

External power has been connected to the device.

42

ACTION_REBOOT

Have the device reboot. This is only for use by system code.

43

ACTION_RUN

Run the data, whatever that means.

44

ACTION_SCREEN_OFF

Sent after the screen turns off.

45

ACTION_SCREEN_ON

Sent after the screen turns on.

46

ACTION_SEARCH

Perform a search.

47

ACTION_SEND

Deliver some data to someone else.

48

ACTION_SENDTO

Send a message to someone specified by the data.

49

ACTION_SEND_MULTIPLE

Deliver multiple data to someone else.

50

ACTION_SET_WALLPAPER

Show settings for choosing wallpaper.

51

ACTION_SHUTDOWN

Device is shutting down.

52

ACTION_SYNC

Perform a data synchronization.

53

ACTION_TIMEZONE_CHANGED

The timezone has changed.

54

ACTION_TIME_CHANGED

The time was set.

55

ACTION_VIEW

Display the data to the user.

56

ACTION_VOICE_COMMAND

Start Voice Command.

57

ACTION_WALLPAPER_CHANGED

The current system wallpaper has changed.

58

ACTION_WEB_SEARCH

Perform a web search.

❮Android 意图和过滤器