
- Android Basics
- Android - Home
- Android - Overview
- Android - Environment Setup
- Android - Architecture
- Android - Application Components
- Android - Hello World Example
- Android - Resources
- Android - Activities
- Android - Services
- Android - Broadcast Receivers
- Android - Content Providers
- Android - Fragments
- Android - Intents/Filters
- Android - User Interface
- Android - UI Layouts
- Android - UI Controls
- Android - Event Handling
- Android - Styles and Themes
- Android - Custom Components
- Android Advanced Concepts
- Android - Drag and Drop
- Android - Notifications
- Location Based Services
- Android - Sending Email
- Android - Sending SMS
- Android - Phone Calls
- Publishing Android Application
- Android Useful Examples
- Android - Alert Dialoges
- Android - Animations
- Android - Audio Capture
- Android - AudioManager
- Android - Auto Complete
- Android - Best Practices
- Android - Bluetooth
- Android - Camera
- Android - Clipboard
- Android - Custom Fonts
- Android - Data Backup
- Android - Developer Tools
- Android - Emulator
- Android - Facebook Integration
- Android - Gestures
- Android - Google Maps
- Android - Image Effects
- Android - ImageSwitcher
- Android - Internal Storage
- Android - JetPlayer
- Android - JSON Parser
- Android - Linkedin Integration
- Android - Loading Spinner
- Android - Localization
- Android - Login Screen
- Android - MediaPlayer
- Android - Multitouch
- Android - Navigation
- Android - Network Connection
- Android - NFC Guide
- Android - PHP/MySQL
- Android - Progress Circle
- Android - ProgressBar
- Android - Push Notification
- Android - RenderScript
- Android - RSS Reader
- Android - Screen Cast
- Android - SDK Manager
- Android - Sensors
- Android - Session Management
- Android - Shared Preferences
- Android - SIP Protocol
- Android - Spelling Checker
- Android - SQLite Database
- Android - Support Library
- Android - Testing
- Android - Text to Speech
- Android - TextureView
- Android - Twitter Integration
- Android - UI Design
- Android - UI Patterns
- Android - UI Testing
- Android - WebView Layout
- Android - Wi-Fi
- Android - Widgets
- Android - XML Parsers
- Android Useful Resources
- Android - Questions and Answers
- Android - Useful Resources
- Android - Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Android - Intent Standard Categories
Following table lists down various important Android Intent Standard Categories. You can check Android Official Documentation for a complete list of Categories:
Sr.No | Categories & Description |
---|---|
1 | CATEGORY_APP_BROWSER Used with ACTION_MAIN to launch the browser application. |
2 | CATEGORY_APP_CALCULATOR Used with ACTION_MAIN to launch the calculator application. |
3 | CATEGORY_APP_CALENDAR Used with ACTION_MAIN to launch the calendar application. |
4 | CATEGORY_APP_CONTACTS Used with ACTION_MAIN to launch the contacts application. |
5 | CATEGORY_APP_EMAIL Used with ACTION_MAIN to launch the email application. |
6 | CATEGORY_APP_GALLERY Used with ACTION_MAIN to launch the gallery application. |
7 | CATEGORY_APP_MAPS Used with ACTION_MAIN to launch the maps application. |
8 | CATEGORY_APP_MARKET This activity allows the user to browse and download new applications. |
9 | CATEGORY_APP_MESSAGING Used with ACTION_MAIN to launch the messaging application. |
10 | CATEGORY_APP_MUSIC Used with ACTION_MAIN to launch the music application. |
11 | CATEGORY_BROWSABLE Activities that can be safely invoked from a browser must support this category. |
12 | CATEGORY_CAR_DOCK An activity to run when device is inserted into a car dock. |
13 | CATEGORY_CAR_MODE Used to indicate that the activity can be used in a car environment. |
14 | CATEGORY_DEFAULT Set if the activity should be an option for the default action (center press) to perform on a piece of data. |
15 | CATEGORY_DESK_DOCK An activity to run when device is inserted into a car dock. |
16 | CATEGORY_DEVELOPMENT_PREFERENCE This activity is a development preference panel. |
17 | CATEGORY_EMBED Capable of running inside a parent activity container. |
18 | CATEGORY_FRAMEWORK_INSTRUMENTATION_TEST To be used as code under test for framework instrumentation tests. |
19 | CATEGORY_HE_DESK_DOCK An activity to run when device is inserted into a digital (high end) dock. |
20 | CATEGORY_HOME This is the home activity, that is the first activity that is displayed when the device boots. |
21 | CATEGORY_INFO Provides information about the package it is in. |
22 | CATEGORY_LAUNCHER Should be displayed in the top-level launcher. |
23 | CATEGORY_LE_DESK_DOCK An activity to run when device is inserted into a analog (low end) dock. |
24 | CATEGORY_MONKEY This activity may be exercised by the monkey or other automated test tools. |
25 |
CATEGORY_OPENABLE
Used to indicate that a GET_CONTENT intent only wants URIs that can be opened with ContentResolver.openInputStream. |
26 | CATEGORY_PREFERENCE This activity is a preference panel. |
27 | CATEGORY_TAB Intended to be used as a tab inside of a containing TabActivity. |
28 | CATEGORY_TEST To be used as a test (not part of the normal user experience). |
29 | CATEGORY_UNIT_TEST To be used as a unit test (run through the Test Harness). |