danger.app
Interface AppResources

All Known Implementing Classes:
ResourceDatabase


public interface AppResources

Resource ids for standard application resources.


Field Summary
static int ID_APP_CAPABILITIES
          String resource; a semicolon delimeted list of capabilities.
static int ID_APP_CLASS
          String resource id for the classname of the subclass of Application that should be instantiated to run this app
static int ID_APP_FLAGS
          String resource id for the launch flags string.
static int ID_APP_NAME
          String resource id for the user visible name of the application
static int ID_APP_VENDOR
          String resource id for the vendor string.
static int ID_CHOOSER_CATEGORY
          String resource; case insensitive; specifies the chooser category where this app should be placed.
static int ID_LARGE_ICON
          Bitmap resource id for the large icon displayed in the jump screen.
static int ID_LOCALE
          String resource id for the locale (e.g., "en_US").
static int ID_MIDLET_DEVICE_NAME
          String resource id for the default, emulated device.
static int ID_MIDLET_PACKED_DIMENSIONS
          Integer resource id for the default, emulated screen size as two packed shorts: (w << 16) | h.
static int ID_MIDLET_TWELVE_PAD
          Integer resource id for specifying whether the twelve-pad should be enabled by default.
static int ID_MINI_ICON
          Bitmap resource id for the icon displayed in the quick access window.
static int ID_SMALL_ICON
          Bitmap resource id for the small icon displayed in the jump screen.
static int ID_SPLASH_SCREEN
          Bitmap resource id for the default splash screen.
static int ID_SPLASH_SCREEN_RESOURCE
          Splash screen resource id for the default splash screen resource.
 

Field Detail

ID_APP_NAME

static final int ID_APP_NAME
String resource id for the user visible name of the application

See Also:
Constant Field Values

ID_APP_CLASS

static final int ID_APP_CLASS
String resource id for the classname of the subclass of Application that should be instantiated to run this app

See Also:
Constant Field Values

ID_APP_FLAGS

static final int ID_APP_FLAGS
String resource id for the launch flags string. 'L' = launch on boot.

See Also:
Constant Field Values

ID_LARGE_ICON

static final int ID_LARGE_ICON
Bitmap resource id for the large icon displayed in the jump screen.

See Also:
Constant Field Values

ID_SMALL_ICON

static final int ID_SMALL_ICON
Bitmap resource id for the small icon displayed in the jump screen.

See Also:
Constant Field Values

ID_SPLASH_SCREEN

static final int ID_SPLASH_SCREEN
Bitmap resource id for the default splash screen.

See Also:
Constant Field Values

ID_LOCALE

static final int ID_LOCALE
String resource id for the locale (e.g., "en_US").

See Also:
Constant Field Values

ID_SPLASH_SCREEN_RESOURCE

static final int ID_SPLASH_SCREEN_RESOURCE
Splash screen resource id for the default splash screen resource.

See Also:
Constant Field Values

ID_APP_VENDOR

static final int ID_APP_VENDOR
String resource id for the vendor string.

See Also:
Constant Field Values

ID_MIDLET_DEVICE_NAME

static final int ID_MIDLET_DEVICE_NAME
String resource id for the default, emulated device. Only valid for MIDlets.

See Also:
Constant Field Values

ID_MIDLET_PACKED_DIMENSIONS

static final int ID_MIDLET_PACKED_DIMENSIONS
Integer resource id for the default, emulated screen size as two packed shorts: (w << 16) | h. Only valid for MIDlets.

See Also:
Constant Field Values

ID_MIDLET_TWELVE_PAD

static final int ID_MIDLET_TWELVE_PAD
Integer resource id for specifying whether the twelve-pad should be enabled by default. Value is 0 or 1. Only valid for MIDlets.

See Also:
Constant Field Values

ID_APP_CAPABILITIES

static final int ID_APP_CAPABILITIES
String resource; a semicolon delimeted list of capabilities. A capability is a key value pair that specifies whether this application has a particular capability. Example: string ID_APP_CAPABILITIES "CooksSausage=true;WashesDishes=false" Capabilities are useful in determining whether an application will support a particular capability, *without* having to run the app. This feature currently isn't used for anything.

See Also:
Constant Field Values

ID_MINI_ICON

static final int ID_MINI_ICON
Bitmap resource id for the icon displayed in the quick access window.

See Also:
Constant Field Values

ID_CHOOSER_CATEGORY

static final int ID_CHOOSER_CATEGORY
String resource; case insensitive; specifies the chooser category where this app should be placed. An application may specify a preferred category in the the resource file, but this preferrence can be overridden by operator-specific policy configurations. Applications downloaded via the Catalog application will also have a category set by the the service, which will override this resource file hint. Valid category strings are:

See Also:
Constant Field Values