public class

Intent

extends Object
java.lang.Object
   ↳ cyanogenmod.content.Intent

Class Overview

CyanogenMod specific intent definition class.

Summary

Constants
String ACTION_PROTECTED Intent filter to update protected app component's settings
String ACTION_PROTECTED_CHANGED Intent filter to notify change in state of protected application.
String ACTION_THEME_INSTALLED Action sent from the provider when a theme has been fully installed.
String ACTION_THEME_REMOVED Action sent from the provider when a theme has been removed.
String ACTION_THEME_UPDATED Action sent from the provider when a theme has been updated.
String CATEGORY_THEME_PACKAGE_INSTALLED_STATE_CHANGE Used to indicate that a theme package has been installed or un-installed.
String EXTRA_PROTECTED_COMPONENTS This field is part of the intent ACTION_PROTECTED_CHANGED.
String EXTRA_PROTECTED_STATE This field is part of the intent ACTION_PROTECTED_CHANGED.
String URI_SCHEME_PACKAGE Uri scheme used to broadcast the theme's package name when broadcasting ACTION_THEME_INSTALLED or ACTION_THEME_REMOVED
Public Constructors
Intent()
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final String ACTION_PROTECTED

Added in API level 4

Intent filter to update protected app component's settings

Constant Value: "cyanogenmod.intent.action.PACKAGE_PROTECTED"

public static final String ACTION_PROTECTED_CHANGED

Added in API level 4

Intent filter to notify change in state of protected application.

Constant Value: "cyanogenmod.intent.action.PROTECTED_COMPONENT_UPDATE"

public static final String ACTION_THEME_INSTALLED

Added in API level 5

Action sent from the provider when a theme has been fully installed. Fully installed means that the apk was installed by PackageManager and the theme resources were processed and cached by ERROR(/org.cyanogenmod.platform.internal.ThemeManagerService) Requires the READ_THEMES permission to receive this broadcast.

Constant Value: "cyanogenmod.intent.action.THEME_INSTALLED"

public static final String ACTION_THEME_REMOVED

Added in API level 5

Action sent from the provider when a theme has been removed. Requires the READ_THEMES permission to receive this broadcast.

Constant Value: "cyanogenmod.intent.action.THEME_REMOVED"

public static final String ACTION_THEME_UPDATED

Added in API level 5

Action sent from the provider when a theme has been updated. Requires the READ_THEMES permission to receive this broadcast.

Constant Value: "cyanogenmod.intent.action.THEME_UPDATED"

public static final String CATEGORY_THEME_PACKAGE_INSTALLED_STATE_CHANGE

Added in API level 5

Used to indicate that a theme package has been installed or un-installed.

Constant Value: "cyanogenmod.intent.category.THEME_PACKAGE_INSTALL_STATE_CHANGE"

public static final String EXTRA_PROTECTED_COMPONENTS

Added in API level 4

This field is part of the intent ACTION_PROTECTED_CHANGED. Intent extra field to indicate protected component value

Constant Value: "cyanogenmod.intent.extra.PACKAGE_PROTECTED_COMPONENTS"

public static final String EXTRA_PROTECTED_STATE

Added in API level 4

This field is part of the intent ACTION_PROTECTED_CHANGED. Intent extra field for the state of protected application

Constant Value: "cyanogenmod.intent.extra.PACKAGE_PROTECTED_STATE"

public static final String URI_SCHEME_PACKAGE

Added in API level 5

Uri scheme used to broadcast the theme's package name when broadcasting ACTION_THEME_INSTALLED or ACTION_THEME_REMOVED

Constant Value: "package"

Public Constructors

public Intent ()

Added in API level 4