From 1d0ad8132d2cfe00ae0c2976444e7e2f433d5c1d Mon Sep 17 00:00:00 2001 From: Julian Winkler Date: Sun, 10 Mar 2024 07:18:45 +0100 Subject: [PATCH] regenerate R.java and Manifest.java to match framework-res.apk --- res/meson.build | 2 +- .../android/annotation/SystemApi.java | 5 + .../android/content/pm/PackageParser.java | 8 +- .../com/android/internal/Manifest.java | 3226 +- src/api-impl/com/android/internal/R.java | 121400 ++++++++------- 5 files changed, 67405 insertions(+), 57236 deletions(-) create mode 100644 src/api-impl/android/annotation/SystemApi.java diff --git a/res/meson.build b/res/meson.build index a317d452..cb98fdb9 100644 --- a/res/meson.build +++ b/res/meson.build @@ -1,7 +1,7 @@ aapt = find_program('aapt', required: false) if aapt.found() - aapt_command = [aapt, 'package', '-x', '-f', '-S', join_paths(dir_base, 'res/res'), '-A', join_paths(dir_base, 'res/assets'), '-M', join_paths(dir_base, 'res/AndroidManifest.xml'), '-F', '@OUTPUT@'] + aapt_command = [aapt, 'package', '-x', '-f', '-S', join_paths(dir_base, 'res/res'), '-A', join_paths(dir_base, 'res/assets'), '-M', join_paths(dir_base, 'res/AndroidManifest.xml'), '-J', join_paths(dir_base, 'src/api-impl/com/android/internal'), '-F', '@OUTPUT@'] else # fallback to prebuilt APK aapt_command = ['cp', join_paths(dir_base, 'res/framework-res.apk'), '@OUTPUT@'] endif diff --git a/src/api-impl/android/annotation/SystemApi.java b/src/api-impl/android/annotation/SystemApi.java new file mode 100644 index 00000000..a01e4c50 --- /dev/null +++ b/src/api-impl/android/annotation/SystemApi.java @@ -0,0 +1,5 @@ +package android.annotation; + +public @interface SystemApi { + +} diff --git a/src/api-impl/android/content/pm/PackageParser.java b/src/api-impl/android/content/pm/PackageParser.java index e0fc3b06..6b56d0bb 100644 --- a/src/api-impl/android/content/pm/PackageParser.java +++ b/src/api-impl/android/content/pm/PackageParser.java @@ -1545,9 +1545,9 @@ public class PackageParser { String tagname = parser.getName(); if (tagname.equals("publicKey")) { final TypedArray sa = res.obtainAttributes(attrs, - com.android.internal.R.styleable.PublicKey); + com.android.internal.R.styleable.AndroidManifestPublicKey); final String encodedKey = sa.getNonResourceString( - com.android.internal.R.styleable.PublicKey_value); + com.android.internal.R.styleable.AndroidManifestPublicKey_value); currentKey = parsePublicKey(encodedKey); if (currentKey == null) { Slog.w(TAG, "No valid key in 'publicKey' tag at " + parser.getPositionDescription()); @@ -1563,9 +1563,9 @@ public class PackageParser { continue; } final TypedArray sa = res.obtainAttributes(attrs, - com.android.internal.R.styleable.KeySet); + com.android.internal.R.styleable.AndroidManifestKeySet); final String name = sa.getNonResourceString( - com.android.internal.R.styleable.KeySet_name); + com.android.internal.R.styleable.AndroidManifestKeySet_name); definedKeySets.get(currentKey).add(name); sa.recycle(); } else if (RIGID_PARSER) { diff --git a/src/api-impl/com/android/internal/Manifest.java b/src/api-impl/com/android/internal/Manifest.java index cf8174f7..af160ef3 100644 --- a/src/api-impl/com/android/internal/Manifest.java +++ b/src/api-impl/com/android/internal/Manifest.java @@ -8,1435 +8,1799 @@ package com.android.internal; public final class Manifest { - public static final class permission { - /** - * Allows an application to access all multi-user external storage @hide - */ - public static final String ACCESS_ALL_EXTERNAL_STORAGE = "android.permission.ACCESS_ALL_EXTERNAL_STORAGE"; - /** - Allow an application to read and write the cache partition. - @hide - */ - public static final String ACCESS_CACHE_FILESYSTEM = "android.permission.ACCESS_CACHE_FILESYSTEM"; - /** - Allows read/write access to the "properties" table in the checkin - database, to change values that get uploaded. -

Not for use by third-party applications. - */ - public static final String ACCESS_CHECKIN_PROPERTIES = "android.permission.ACCESS_CHECKIN_PROPERTIES"; - /** - Allows an app to access approximate location derived from network location - sources such as cell towers and Wi-Fi. - */ - public static final String ACCESS_COARSE_LOCATION = "android.permission.ACCESS_COARSE_LOCATION"; - /** - Allows the holder to access content providers from outside an ApplicationThread. - This permission is enforced by the ActivityManagerService on the corresponding APIs, - in particular ActivityManagerService#getContentProviderExternal(String) and - ActivityManagerService#removeContentProviderExternal(String). - @hide - - */ - public static final String ACCESS_CONTENT_PROVIDERS_EXTERNALLY = "android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY"; - /** - Allows an app to access precise location from location sources such - as GPS, cell towers, and Wi-Fi. - */ - public static final String ACCESS_FINE_LOCATION = "android.permission.ACCESS_FINE_LOCATION"; - /** - Allows access to keyguard secure storage. Only allowed for system processes. - @hide - */ - public static final String ACCESS_KEYGUARD_SECURE_STORAGE = "android.permission.ACCESS_KEYGUARD_SECURE_STORAGE"; - /** - * Allows an application to access extra location provider commands - */ - public static final String ACCESS_LOCATION_EXTRA_COMMANDS = "android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"; - /** - * Allows an application to create mock location providers for testing - */ - public static final String ACCESS_MOCK_LOCATION = "android.permission.ACCESS_MOCK_LOCATION"; - /** - Allows an application to access the MTP USB kernel driver. - For use only by the device side MTP implementation. - @hide - */ - public static final String ACCESS_MTP = "android.permission.ACCESS_MTP"; - /** - Allows an application to listen for network condition observations. - @hide This is not a third-party API (intended for system apps). - */ - public static final String ACCESS_NETWORK_CONDITIONS = "android.permission.ACCESS_NETWORK_CONDITIONS"; - /** - * Allows applications to access information about networks - */ - public static final String ACCESS_NETWORK_STATE = "android.permission.ACCESS_NETWORK_STATE"; - /** - Allows an application to read the current set of notifications, including - any metadata and intents attached. - @hide - */ - public static final String ACCESS_NOTIFICATIONS = "android.permission.ACCESS_NOTIFICATIONS"; - /** - Allows an application to use SurfaceFlinger's low level features. -

Not for use by third-party applications. - */ - public static final String ACCESS_SURFACE_FLINGER = "android.permission.ACCESS_SURFACE_FLINGER"; - /** - * Allows applications to access information about Wi-Fi networks - */ - public static final String ACCESS_WIFI_STATE = "android.permission.ACCESS_WIFI_STATE"; - /** - * @hide - */ - public static final String ACCESS_WIMAX_STATE = "android.permission.ACCESS_WIMAX_STATE"; - /** - Allows applications to call into AccountAuthenticators. -

Not for use by third-party applications. - */ - public static final String ACCOUNT_MANAGER = "android.permission.ACCOUNT_MANAGER"; - /** - * Allows an application to add voicemails into the system. - */ - public static final String ADD_VOICEMAIL = "com.android.voicemail.permission.ADD_VOICEMAIL"; - /** - Allows an application to use any media decoder when decoding for playback - @hide - */ - public static final String ALLOW_ANY_CODEC_FOR_PLAYBACK = "android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK"; - /** - Allows access to ASEC non-destructive API calls - @hide - */ - public static final String ASEC_ACCESS = "android.permission.ASEC_ACCESS"; - /** - Allows creation of ASEC volumes - @hide - */ - public static final String ASEC_CREATE = "android.permission.ASEC_CREATE"; - /** - Allows destruction of ASEC volumes - @hide - */ - public static final String ASEC_DESTROY = "android.permission.ASEC_DESTROY"; - /** - Allows mount / unmount of ASEC volumes - @hide - */ - public static final String ASEC_MOUNT_UNMOUNT = "android.permission.ASEC_MOUNT_UNMOUNT"; - /** - Allows rename of ASEC volumes - @hide - */ - public static final String ASEC_RENAME = "android.permission.ASEC_RENAME"; - /** - Allows an application to act as an AccountAuthenticator for - the AccountManager - */ - public static final String AUTHENTICATE_ACCOUNTS = "android.permission.AUTHENTICATE_ACCOUNTS"; - /** - Allows an application to control the backup and restore process. -

Not for use by third-party applications. - @hide pending API council - */ - public static final String BACKUP = "android.permission.BACKUP"; - /** - * Allows an application to collect battery statistics - */ - public static final String BATTERY_STATS = "android.permission.BATTERY_STATS"; - /** - Must be required by an {@link android.accessibilityservice.AccessibilityService}, - to ensure that only the system can bind to it. - */ - public static final String BIND_ACCESSIBILITY_SERVICE = "android.permission.BIND_ACCESSIBILITY_SERVICE"; - /** - Allows an application to tell the AppWidget service which application - can access AppWidget's data. The normal user flow is that a user - picks an AppWidget to go into a particular host, thereby giving that - host application access to the private data from the AppWidget app. - An application that has this permission should honor that contract. -

Not for use by third-party applications. - */ - public static final String BIND_APPWIDGET = "android.permission.BIND_APPWIDGET"; - /** - Allows an application to request CallHandlerService implementations. - @hide - */ - public static final String BIND_CALL_SERVICE = "android.permission.BIND_CALL_SERVICE"; - /** - Must be required by device administration receiver, to ensure that only the - system can interact with it. - */ - public static final String BIND_DEVICE_ADMIN = "android.permission.BIND_DEVICE_ADMIN"; - /** - Allows an application to execute contacts directory search. - This should only be used by ContactsProvider. -

Not for use by third-party applications. - @hide - */ - public static final String BIND_DIRECTORY_SEARCH = "android.permission.BIND_DIRECTORY_SEARCH"; - /** - Must be required by an {@link android.inputmethodservice.InputMethodService}, - to ensure that only the system can bind to it. - */ - public static final String BIND_INPUT_METHOD = "android.permission.BIND_INPUT_METHOD"; - /** - Private permission, to restrict who can bring up a dialog to add a new - keyguard widget - @hide - */ - public static final String BIND_KEYGUARD_APPWIDGET = "android.permission.BIND_KEYGUARD_APPWIDGET"; - /** - Must be required by a {@link android.nfc.cardemulation.HostApduService} - or {@link android.nfc.cardemulation.OffHostApduService} to ensure that only - the system can bind to it. - */ - public static final String BIND_NFC_SERVICE = "android.permission.BIND_NFC_SERVICE"; - /** - Must be required by an {@link - android.service.notification.NotificationListenerService}, - to ensure that only the system can bind to it. - */ - public static final String BIND_NOTIFICATION_LISTENER_SERVICE = "android.permission.BIND_NOTIFICATION_LISTENER_SERVICE"; - /** - Must be required by package verifier receiver, to ensure that only the - system can interact with it. - @hide - - */ - public static final String BIND_PACKAGE_VERIFIER = "android.permission.BIND_PACKAGE_VERIFIER"; - /** - Must be required by a {@link android.printservice.PrintService}, - to ensure that only the system can bind to it. - */ - public static final String BIND_PRINT_SERVICE = "android.permission.BIND_PRINT_SERVICE"; - /** - Must be required by the PrintSpooler to ensure that only the system can bind to it. - @hide - */ - public static final String BIND_PRINT_SPOOLER_SERVICE = "android.permission.BIND_PRINT_SPOOLER_SERVICE"; - /** - Must be required by a {@link android.widget.RemoteViewsService}, - to ensure that only the system can bind to it. - */ - public static final String BIND_REMOTEVIEWS = "android.permission.BIND_REMOTEVIEWS"; - /** - Must be required by a {@link com.android.media.remotedisplay.RemoteDisplayProvider}, - to ensure that only the system can bind to it. - @hide - */ - public static final String BIND_REMOTE_DISPLAY = "android.permission.BIND_REMOTE_DISPLAY"; - /** - Must be required by a TextService (e.g. SpellCheckerService) - to ensure that only the system can bind to it. - */ - public static final String BIND_TEXT_SERVICE = "android.permission.BIND_TEXT_SERVICE"; - /** - Must be required by a {@link android.net.VpnService}, - to ensure that only the system can bind to it. - */ - public static final String BIND_VPN_SERVICE = "android.permission.BIND_VPN_SERVICE"; - /** - Must be required by a {@link android.service.wallpaper.WallpaperService}, - to ensure that only the system can bind to it. - */ - public static final String BIND_WALLPAPER = "android.permission.BIND_WALLPAPER"; - /** - * Allows applications to connect to paired bluetooth devices - */ - public static final String BLUETOOTH = "android.permission.BLUETOOTH"; - /** - * Allows applications to discover and pair bluetooth devices - */ - public static final String BLUETOOTH_ADMIN = "android.permission.BLUETOOTH_ADMIN"; - /** - Allows applications to pair bluetooth devices without user interaction. - This is not available to third party applications. - */ - public static final String BLUETOOTH_PRIVILEGED = "android.permission.BLUETOOTH_PRIVILEGED"; - /** - Allows bluetooth stack to access files - @hide This should only be used by Bluetooth apk. - - */ - public static final String BLUETOOTH_STACK = "android.permission.BLUETOOTH_STACK"; - /** - Required to be able to disable the device (very dangerous!). -

Not for use by third-party applications.. - */ - public static final String BRICK = "android.permission.BRICK"; - /** - Allows an application to broadcast a notification that an application - package has been removed. -

Not for use by third-party applications. - */ - public static final String BROADCAST_PACKAGE_REMOVED = "android.permission.BROADCAST_PACKAGE_REMOVED"; - /** - Allows an application to broadcast an SMS receipt notification. -

Not for use by third-party applications. - */ - public static final String BROADCAST_SMS = "android.permission.BROADCAST_SMS"; - /** - Allows an application to broadcast sticky intents. These are - broadcasts whose data is held by the system after being finished, - so that clients can quickly retrieve that data without having - to wait for the next broadcast. - */ - public static final String BROADCAST_STICKY = "android.permission.BROADCAST_STICKY"; - /** - Allows an application to broadcast a WAP PUSH receipt notification. -

Not for use by third-party applications. - */ - public static final String BROADCAST_WAP_PUSH = "android.permission.BROADCAST_WAP_PUSH"; - /** - C2DM permission. - @hide Used internally. - - */ - public static final String C2D_MESSAGE = "android.intent.category.MASTER_CLEAR.permission.C2D_MESSAGE"; - /** - Allows an application to initiate a phone call without going through - the Dialer user interface for the user to confirm the call - being placed. - */ - public static final String CALL_PHONE = "android.permission.CALL_PHONE"; - /** - Allows an application to call any phone number, including emergency - numbers, without going through the Dialer user interface for the user - to confirm the call being placed. -

Not for use by third-party applications. - */ - public static final String CALL_PRIVILEGED = "android.permission.CALL_PRIVILEGED"; - /** - Required to be able to access the camera device. -

This will automatically enforce the {@code - <uses-feature>} manifest element for all camera features. - If you do not require all camera features or can properly operate if a camera - is not available, then you must modify your manifest as appropriate in order to - install on devices that don't support all camera features.

- */ - public static final String CAMERA = "android.permission.CAMERA"; - /** - Allows disabling the transmit-indicator LED that is normally on when - a camera is in use by an application. - @hide - */ - public static final String CAMERA_DISABLE_TRANSMIT_LED = "android.permission.CAMERA_DISABLE_TRANSMIT_LED"; - /** - Allows an application to capture audio for hotword detection. -

Not for use by third-party applications.

- @hide - */ - public static final String CAPTURE_AUDIO_HOTWORD = "android.permission.CAPTURE_AUDIO_HOTWORD"; - /** - Allows an application to capture audio output. -

Not for use by third-party applications.

- */ - public static final String CAPTURE_AUDIO_OUTPUT = "android.permission.CAPTURE_AUDIO_OUTPUT"; - /** - Allows an application to capture secure video output. -

Not for use by third-party applications.

- */ - public static final String CAPTURE_SECURE_VIDEO_OUTPUT = "android.permission.CAPTURE_SECURE_VIDEO_OUTPUT"; - /** - Allows an application to capture video output. -

Not for use by third-party applications.

- */ - public static final String CAPTURE_VIDEO_OUTPUT = "android.permission.CAPTURE_VIDEO_OUTPUT"; - /** - Allows applications to change the background data setting. -

Not for use by third-party applications. - @hide pending API council - */ - public static final String CHANGE_BACKGROUND_DATA_SETTING = "android.permission.CHANGE_BACKGROUND_DATA_SETTING"; - /** - Allows an application to change whether an application component (other than its own) is - enabled or not. -

Not for use by third-party applications. - */ - public static final String CHANGE_COMPONENT_ENABLED_STATE = "android.permission.CHANGE_COMPONENT_ENABLED_STATE"; - /** - Allows an application to modify the current configuration, such - as locale. - */ - public static final String CHANGE_CONFIGURATION = "android.permission.CHANGE_CONFIGURATION"; - /** - * Allows applications to change network connectivity state - */ - public static final String CHANGE_NETWORK_STATE = "android.permission.CHANGE_NETWORK_STATE"; - /** - * Allows applications to enter Wi-Fi Multicast mode - */ - public static final String CHANGE_WIFI_MULTICAST_STATE = "android.permission.CHANGE_WIFI_MULTICAST_STATE"; - /** - * Allows applications to change Wi-Fi connectivity state - */ - public static final String CHANGE_WIFI_STATE = "android.permission.CHANGE_WIFI_STATE"; - /** - * @hide - */ - public static final String CHANGE_WIMAX_STATE = "android.permission.CHANGE_WIMAX_STATE"; - /** - Allows an application to clear the caches of all installed - applications on the device. - */ - public static final String CLEAR_APP_CACHE = "android.permission.CLEAR_APP_CACHE"; - /** - Allows an application to clear user data. -

Not for use by third-party applications. - */ - public static final String CLEAR_APP_USER_DATA = "android.permission.CLEAR_APP_USER_DATA"; - /** - Allows an application to configure and connect to Wifi displays - @hide - */ - public static final String CONFIGURE_WIFI_DISPLAY = "android.permission.CONFIGURE_WIFI_DISPLAY"; - /** - Allows a package to launch the secure full-backup confirmation UI. - ONLY the system process may hold this permission. - @hide - */ - public static final String CONFIRM_FULL_BACKUP = "android.permission.CONFIRM_FULL_BACKUP"; - /** - Allows an internal user to use privileged ConnectivityManager APIs. - @hide - */ - public static final String CONNECTIVITY_INTERNAL = "android.permission.CONNECTIVITY_INTERNAL"; - /** - Allows an application to control keyguard. Only allowed for system processes. - @hide - */ - public static final String CONTROL_KEYGUARD = "android.permission.CONTROL_KEYGUARD"; - /** - Allows enabling/disabling location update notifications from - the radio. -

Not for use by third-party applications. - */ - public static final String CONTROL_LOCATION_UPDATES = "android.permission.CONTROL_LOCATION_UPDATES"; - /** - Allows an application to control low-level features of Wifi displays - such as opening an RTSP socket. This permission should only be used - by the display manager. - @hide - */ - public static final String CONTROL_WIFI_DISPLAY = "android.permission.CONTROL_WIFI_DISPLAY"; - /** - Must be required by default container service so that only - the system can bind to it and use it to copy - protected data to secure containers or files - accessible to the system. - @hide - */ - public static final String COPY_PROTECTED_DATA = "android.permission.COPY_PROTECTED_DATA"; - /** - Internal permission protecting access to the encryption methods - @hide - - */ - public static final String CRYPT_KEEPER = "android.permission.CRYPT_KEEPER"; - /** - Allows an application to delete cache files. -

Not for use by third-party applications. - */ - public static final String DELETE_CACHE_FILES = "android.permission.DELETE_CACHE_FILES"; - /** - Allows an application to delete packages. -

Not for use by third-party applications. - */ - public static final String DELETE_PACKAGES = "android.permission.DELETE_PACKAGES"; - /** - Allows low-level access to power management. -

Not for use by third-party applications. - */ - public static final String DEVICE_POWER = "android.permission.DEVICE_POWER"; - /** - Allows applications to RW to diagnostic resources. -

Not for use by third-party applications. - */ - public static final String DIAGNOSTIC = "android.permission.DIAGNOSTIC"; - /** - * Allows applications to disable the keyguard - */ - public static final String DISABLE_KEYGUARD = "android.permission.DISABLE_KEYGUARD"; - /** - Allows an application to retrieve state dump information from system services. -

Not for use by third-party applications. - */ - public static final String DUMP = "android.permission.DUMP"; - /** - * Allows an application to expand or collapse the status bar. - */ - public static final String EXPAND_STATUS_BAR = "android.permission.EXPAND_STATUS_BAR"; - /** - Run as a manufacturer test application, running as the root user. - Only available when the device is running in manufacturer test mode. -

Not for use by third-party applications. - */ - public static final String FACTORY_TEST = "android.permission.FACTORY_TEST"; - /** - @hide Allows an application to register an input filter which filters the stream - of user events (keys, touch, trackball) before they are dispatched to any window. - */ - public static final String FILTER_EVENTS = "android.permission.FILTER_EVENTS"; - /** - * Allows access to the flashlight - */ - public static final String FLASHLIGHT = "android.permission.FLASHLIGHT"; - /** - Allows an application to force a BACK operation on whatever is the - top activity. -

Not for use by third-party applications. - */ - public static final String FORCE_BACK = "android.permission.FORCE_BACK"; - /** - Allows an application to call - {@link android.app.ActivityManager#forceStopPackage}. - @hide - */ - public static final String FORCE_STOP_PACKAGES = "android.permission.FORCE_STOP_PACKAGES"; - /** - @hide Allows the application to temporarily freeze the screen for a - full-screen transition. - */ - public static final String FREEZE_SCREEN = "android.permission.FREEZE_SCREEN"; - /** - * Allows access to the list of accounts in the Accounts Service - */ - public static final String GET_ACCOUNTS = "android.permission.GET_ACCOUNTS"; - /** - * @hide Allows an application to collect battery statistics - */ - public static final String GET_APP_OPS_STATS = "android.permission.GET_APP_OPS_STATS"; - /** - Allows an application to get full detailed information about - recently running tasks, with full fidelity to the real state. - @hide - */ - public static final String GET_DETAILED_TASKS = "android.permission.GET_DETAILED_TASKS"; - /** - * Allows an application to find out the space used by any package. - */ - public static final String GET_PACKAGE_SIZE = "android.permission.GET_PACKAGE_SIZE"; - /** - Allows an application to get information about the currently - or recently running tasks. - */ - public static final String GET_TASKS = "android.permission.GET_TASKS"; - /** - Allows an application to retrieve private information about - the current top activity, such as any assist context it can provide. -

Not for use by third-party applications. - */ - public static final String GET_TOP_ACTIVITY_INFO = "android.permission.GET_TOP_ACTIVITY_INFO"; - /** - This permission can be used on content providers to allow the global - search system to access their data. Typically it used when the - provider has some permissions protecting it (which global search - would not be expected to hold), and added as a read-only permission - to the path in the provider where global search queries are - performed. This permission can not be held by regular applications; - it is used by applications to protect themselves from everyone else - besides global search. - */ - public static final String GLOBAL_SEARCH = "android.permission.GLOBAL_SEARCH"; - /** - Internal permission protecting access to the global search - system: ensures that only the system can access the provider - to perform queries (since this otherwise provides unrestricted - access to a variety of content providers), and to write the - search statistics (to keep applications from gaming the source - ranking). - @hide - */ - public static final String GLOBAL_SEARCH_CONTROL = "android.permission.GLOBAL_SEARCH_CONTROL"; - /** - * @hide Allows an application to grant or revoke specific permissions. - */ - public static final String GRANT_REVOKE_PERMISSIONS = "android.permission.GRANT_REVOKE_PERMISSIONS"; - /** - Allows access to hardware peripherals. Intended only for hardware testing. -

Not for use by third-party applications. - */ - public static final String HARDWARE_TEST = "android.permission.HARDWARE_TEST"; - /** - Allows an application to inject user events (keys, touch, trackball) - into the event stream and deliver them to ANY window. Without this - permission, you can only deliver events to windows in your own process. -

Not for use by third-party applications. - */ - public static final String INJECT_EVENTS = "android.permission.INJECT_EVENTS"; - /** - Allows an application to install a location provider into the Location Manager. -

Not for use by third-party applications. - */ - public static final String INSTALL_LOCATION_PROVIDER = "android.permission.INSTALL_LOCATION_PROVIDER"; - /** - Allows an application to install packages. -

Not for use by third-party applications. - */ - public static final String INSTALL_PACKAGES = "android.permission.INSTALL_PACKAGES"; - /** - * Allows an application to install a shortcut in Launcher - */ - public static final String INSTALL_SHORTCUT = "com.android.launcher.permission.INSTALL_SHORTCUT"; - /** - @hide Allows an application to call APIs that allow it to do interactions - across the users on the device, using singleton services and - user-targeted broadcasts. This permission is not available to - third party applications. - */ - public static final String INTERACT_ACROSS_USERS = "android.permission.INTERACT_ACROSS_USERS"; - /** - @hide Fuller form of {@link android.Manifest.permission#INTERACT_ACROSS_USERS} - that removes restrictions on where broadcasts can be sent and allows other - types of interactions. - */ - public static final String INTERACT_ACROSS_USERS_FULL = "android.permission.INTERACT_ACROSS_USERS_FULL"; - /** - Allows an application to open windows that are for use by parts - of the system user interface. -

Not for use by third-party applications. - */ - public static final String INTERNAL_SYSTEM_WINDOW = "android.permission.INTERNAL_SYSTEM_WINDOW"; - /** - * Allows applications to open network sockets. - */ - public static final String INTERNET = "android.permission.INTERNET"; - /** - Allows an application to call into a carrier setup flow. It is up to the - carrier setup application to enforce that this permission is required - @hide This is not a third-party API (intended for OEMs and system apps). - */ - public static final String INVOKE_CARRIER_SETUP = "android.permission.INVOKE_CARRIER_SETUP"; - /** - Allows an application to call - {@link android.app.ActivityManager#killBackgroundProcesses}. - */ - public static final String KILL_BACKGROUND_PROCESSES = "android.permission.KILL_BACKGROUND_PROCESSES"; - /** - Allows an application to use location features in hardware, - such as the geofencing api. -

Not for use by third-party applications. - */ - public static final String LOCATION_HARDWARE = "android.permission.LOCATION_HARDWARE"; - /** - Allows access to the loop radio (Android@Home mesh network) device. - @hide - */ - public static final String LOOP_RADIO = "android.permission.LOOP_RADIO"; - /** - * @hide Allows an application to magnify the content of a display. - */ - public static final String MAGNIFY_DISPLAY = "android.permission.MAGNIFY_DISPLAY"; - /** - * Allows an application to manage the list of accounts in the AccountManager - */ - public static final String MANAGE_ACCOUNTS = "android.permission.MANAGE_ACCOUNTS"; - /** - * @hide Allows an application to create/manage/remove stacks - */ - public static final String MANAGE_ACTIVITY_STACKS = "android.permission.MANAGE_ACTIVITY_STACKS"; - /** - Allows an application to manage (create, destroy, - Z-order) application tokens in the window manager. -

Not for use by third-party applications. - */ - public static final String MANAGE_APP_TOKENS = "android.permission.MANAGE_APP_TOKENS"; - /** - Allows an application to install and/or uninstall CA certificates on - behalf of the user. - @hide - */ - public static final String MANAGE_CA_CERTIFICATES = "android.permission.MANAGE_CA_CERTIFICATES"; - /** - Required to add or remove another application as a device admin. -

Not for use by third-party applications. - @hide - */ - public static final String MANAGE_DEVICE_ADMINS = "android.permission.MANAGE_DEVICE_ADMINS"; - /** - Allows an application to manage access to documents, usually as part - of a document picker. - */ - public static final String MANAGE_DOCUMENTS = "android.permission.MANAGE_DOCUMENTS"; - /** - Allows an application to manage network policies (such as warning and disable - limits) and to define application-specific rules. @hide - */ - public static final String MANAGE_NETWORK_POLICY = "android.permission.MANAGE_NETWORK_POLICY"; - /** - Allows an application to manage preferences and permissions for USB devices - @hide - */ - public static final String MANAGE_USB = "android.permission.MANAGE_USB"; - /** - @hide Allows an application to call APIs that allow it to query and manage - users on the device. This permission is not available to - third party applications. - */ - public static final String MANAGE_USERS = "android.permission.MANAGE_USERS"; - /** - Allows an application to mark traffic as from another user for per user routing. - Used by system wide services like media server that execute delegated network connections - for users. - @hide - - */ - public static final String MARK_NETWORK_SOCKET = "android.permission.MARK_NETWORK_SOCKET"; - /** - * Not for use by third-party applications. - */ - public static final String MASTER_CLEAR = "android.permission.MASTER_CLEAR"; - /** - Allows an application to know what content is playing and control its playback. -

Not for use by third-party applications due to privacy of media consumption

- */ - public static final String MEDIA_CONTENT_CONTROL = "android.permission.MEDIA_CONTENT_CONTROL"; - /** - Internal permission allowing an application to query/set which - applications can bind AppWidgets. - @hide - */ - public static final String MODIFY_APPWIDGET_BIND_PERMISSIONS = "android.permission.MODIFY_APPWIDGET_BIND_PERMISSIONS"; - /** - * Allows an application to modify global audio settings - */ - public static final String MODIFY_AUDIO_SETTINGS = "android.permission.MODIFY_AUDIO_SETTINGS"; - /** - Allows an application to account its network traffic against other UIDs. Used - by system services like download manager and media server. Not for use by - third party apps. @hide - */ - public static final String MODIFY_NETWORK_ACCOUNTING = "android.permission.MODIFY_NETWORK_ACCOUNTING"; - /** - Allows modification of the telephony state - power on, mmi, etc. - Does not include placing calls. -

Not for use by third-party applications. - */ - public static final String MODIFY_PHONE_STATE = "android.permission.MODIFY_PHONE_STATE"; - /** - Allows formatting file systems for removable storage. -

Not for use by third-party applications. - */ - public static final String MOUNT_FORMAT_FILESYSTEMS = "android.permission.MOUNT_FORMAT_FILESYSTEMS"; - /** - Allows mounting and unmounting file systems for removable storage. -

Not for use by third-party applications. - */ - public static final String MOUNT_UNMOUNT_FILESYSTEMS = "android.permission.MOUNT_UNMOUNT_FILESYSTEMS"; - /** - Allows an application to move location of installed package. - @hide - */ - public static final String MOVE_PACKAGE = "android.permission.MOVE_PACKAGE"; - /** - Allows access to configure network interfaces, configure/use IPSec, etc. - @hide - */ - public static final String NET_ADMIN = "android.permission.NET_ADMIN"; - /** - * @hide Allows low-level access to tun tap driver - */ - public static final String NET_TUNNELING = "android.permission.NET_TUNNELING"; - /** - * Allows applications to perform I/O operations over NFC - */ - public static final String NFC = "android.permission.NFC"; - /** - Allows an application to collect component usage - statistics @hide - */ - public static final String PACKAGE_USAGE_STATS = "android.permission.PACKAGE_USAGE_STATS"; - /** - @hide Package verifier needs to have this permission before the PackageManager will - trust it to verify packages. - - */ - public static final String PACKAGE_VERIFICATION_AGENT = "android.permission.PACKAGE_VERIFICATION_AGENT"; - /** - * Allows an application to perform CDMA OTA provisioning @hide - */ - public static final String PERFORM_CDMA_PROVISIONING = "android.permission.PERFORM_CDMA_PROVISIONING"; - /** - @deprecated This functionality will be removed in the future; please do - not use. Allow an application to make its activities persistent. - */ - @Deprecated - public static final String PERSISTENT_ACTIVITY = "android.permission.PERSISTENT_ACTIVITY"; - /** - Allows an application to see the number being dialed during an outgoing - call with the option to redirect the call to a different number or - abort the call altogether. - */ - public static final String PROCESS_OUTGOING_CALLS = "android.permission.PROCESS_OUTGOING_CALLS"; - /** - * Allows an application to read the user's calendar data. - */ - public static final String READ_CALENDAR = "android.permission.READ_CALENDAR"; - /** - Allows an application to read the user's call log. -

Note: If your app uses the - {@link #READ_CONTACTS} permission and both your {@code - minSdkVersion} and {@code - targetSdkVersion} values are set to 15 or lower, the system implicitly - grants your app this permission. If you don't need this permission, be sure your {@code - targetSdkVersion} is 16 or higher.

- */ - public static final String READ_CALL_LOG = "android.permission.READ_CALL_LOG"; - /** - Allows an application to read previously received cell broadcast - messages and to register a content observer to get notifications when - a cell broadcast has been received and added to the database. For - emergency alerts, the database is updated immediately after the - alert dialog and notification sound/vibration/speech are presented. - The "read" column is then updated after the user dismisses the alert. - This enables supplementary emergency assistance apps to start loading - additional emergency information (if Internet access is available) - when the alert is first received, and to delay presenting the info - to the user until after the initial alert dialog is dismissed. - @hide Pending API council approval - */ - public static final String READ_CELL_BROADCASTS = "android.permission.READ_CELL_BROADCASTS"; - /** - * Allows an application to read the user's contacts data. - */ - public static final String READ_CONTACTS = "android.permission.READ_CONTACTS"; - /** - Allows applications to read dream settings and dream state. - @hide - */ - public static final String READ_DREAM_STATE = "android.permission.READ_DREAM_STATE"; - /** - Allows an application to read from external storage. -

Any app that declares the {@link #WRITE_EXTERNAL_STORAGE} permission is implicitly - granted this permission.

-

This permission is enforced starting in API level 19. Before API level 19, this - permission is not enforced and all apps still have access to read from external storage. - You can test your app with the permission enforced by enabling Protect USB - storage under Developer options in the Settings app on a device running Android 4.1 or - higher.

-

Also starting in API level 19, this permission is not required to - read/write files in your application-specific directories returned by - {@link android.content.Context#getExternalFilesDir} and - {@link android.content.Context#getExternalCacheDir}. -

Note: If both your {@code - minSdkVersion} and {@code - targetSdkVersion} values are set to 3 or lower, the system implicitly - grants your app this permission. If you don't need this permission, be sure your {@code - targetSdkVersion} is 4 or higher. - */ - public static final String READ_EXTERNAL_STORAGE = "android.permission.READ_EXTERNAL_STORAGE"; - /** - Allows an application to take screen shots and more generally - get access to the frame buffer data. -

Not for use by third-party applications. - */ - public static final String READ_FRAME_BUFFER = "android.permission.READ_FRAME_BUFFER"; - /** - Allows an application to read (but not write) the user's - browsing history and bookmarks. - */ - public static final String READ_HISTORY_BOOKMARKS = "com.android.browser.permission.READ_HISTORY_BOOKMARKS"; - /** - Allows an application to retrieve the current state of keys and - switches. -

Not for use by third-party applications. - @deprecated The API that used this permission has been removed. - */ - @Deprecated - public static final String READ_INPUT_STATE = "android.permission.READ_INPUT_STATE"; - /** - Allows an application to read the low-level system log files. -

Not for use by third-party applications, because - Log entries can contain the user's private information. - */ - public static final String READ_LOGS = "android.permission.READ_LOGS"; - /** - Allows an application to read historical network usage for - specific networks and applications. @hide - */ - public static final String READ_NETWORK_USAGE_HISTORY = "android.permission.READ_NETWORK_USAGE_HISTORY"; - /** - Allows read only access to phone state. -

Note: If both your {@code - minSdkVersion} and {@code - targetSdkVersion} values are set to 3 or lower, the system implicitly - grants your app this permission. If you don't need this permission, be sure your {@code - targetSdkVersion} is 4 or higher. - */ - public static final String READ_PHONE_STATE = "android.permission.READ_PHONE_STATE"; - /** - Allows read access to privileged phone state. - @hide Used internally. - */ - public static final String READ_PRIVILEGED_PHONE_STATE = "android.permission.READ_PRIVILEGED_PHONE_STATE"; - /** - * Allows an application to read the user's personal profile data. - */ - public static final String READ_PROFILE = "android.permission.READ_PROFILE"; - /** - * Allows an application to read SMS messages. - */ - public static final String READ_SMS = "android.permission.READ_SMS"; - /** - * Allows an application to read from the user's social stream. - */ - public static final String READ_SOCIAL_STREAM = "android.permission.READ_SOCIAL_STREAM"; - /** - * Allows applications to read the sync settings - */ - public static final String READ_SYNC_SETTINGS = "android.permission.READ_SYNC_SETTINGS"; - /** - * Allows applications to read the sync stats - */ - public static final String READ_SYNC_STATS = "android.permission.READ_SYNC_STATS"; - /** - Allows an application to read the user dictionary. This should - really only be required by an IME, or a dictionary editor like - the Settings app. - */ - public static final String READ_USER_DICTIONARY = "android.permission.READ_USER_DICTIONARY"; - /** - Required to be able to reboot the device. -

Not for use by third-party applications. - */ - public static final String REBOOT = "android.permission.REBOOT"; - /** - Allows an application to receive the - {@link android.content.Intent#ACTION_BOOT_COMPLETED} that is - broadcast after the system finishes booting. If you don't - request this permission, you will not receive the broadcast at - that time. Though holding this permission does not have any - security implications, it can have a negative impact on the - user experience by increasing the amount of time it takes the - system to start and allowing applications to have themselves - running without the user being aware of them. As such, you must - explicitly declare your use of this facility to make that visible - to the user. - */ - public static final String RECEIVE_BOOT_COMPLETED = "android.permission.RECEIVE_BOOT_COMPLETED"; - /** - * @hide - */ - public static final String RECEIVE_DATA_ACTIVITY_CHANGE = "android.permission.RECEIVE_DATA_ACTIVITY_CHANGE"; - /** - Allows an application to receive emergency cell broadcast messages, - to record or display them to the user. -

Not for use by third-party applications. - @hide Pending API council approval - */ - public static final String RECEIVE_EMERGENCY_BROADCAST = "android.permission.RECEIVE_EMERGENCY_BROADCAST"; - /** - Allows an application to monitor incoming MMS messages, to record - or perform processing on them. - */ - public static final String RECEIVE_MMS = "android.permission.RECEIVE_MMS"; - /** - Allows an application to monitor incoming SMS messages, to record - or perform processing on them. - */ - public static final String RECEIVE_SMS = "android.permission.RECEIVE_SMS"; - /** - * Allows an application to monitor incoming WAP push messages. - */ - public static final String RECEIVE_WAP_PUSH = "android.permission.RECEIVE_WAP_PUSH"; - /** - * Allows an application to record audio - */ - public static final String RECORD_AUDIO = "android.permission.RECORD_AUDIO"; - /** - * Allows registration for remote audio playback. @hide - */ - public static final String REMOTE_AUDIO_PLAYBACK = "android.permission.REMOTE_AUDIO_PLAYBACK"; - /** - * @hide Allows an application to change to remove/kill tasks - */ - public static final String REMOVE_TASKS = "android.permission.REMOVE_TASKS"; - /** - * Allows an application to change the Z-order of tasks - */ - public static final String REORDER_TASKS = "android.permission.REORDER_TASKS"; - /** - @deprecated The {@link android.app.ActivityManager#restartPackage} - API is no longer supported. - */ - @Deprecated - public static final String RESTART_PACKAGES = "android.permission.RESTART_PACKAGES"; - /** - @hide Allows an application to retrieve the content of the active window - An active window is the window that has fired an accessibility event. - */ - public static final String RETRIEVE_WINDOW_CONTENT = "android.permission.RETRIEVE_WINDOW_CONTENT"; - /** - * @hide Allows an application to retrieve info for a window from the window manager. - */ - public static final String RETRIEVE_WINDOW_INFO = "android.permission.RETRIEVE_WINDOW_INFO"; - /** - Allows an application (Phone) to send a request to other applications - to handle the respond-via-message action during incoming calls. -

Not for use by third-party applications. - */ - public static final String SEND_RESPOND_VIA_MESSAGE = "android.permission.SEND_RESPOND_VIA_MESSAGE"; - /** - * Allows an application to send SMS messages. - */ - public static final String SEND_SMS = "android.permission.SEND_SMS"; - /** - Allows applications to access serial ports via the SerialManager. - @hide - */ - public static final String SERIAL_PORT = "android.permission.SERIAL_PORT"; - /** - Allows an application to watch and control how activities are - started globally in the system. Only for is in debugging - (usually the monkey command). -

Not for use by third-party applications. - */ - public static final String SET_ACTIVITY_WATCHER = "android.permission.SET_ACTIVITY_WATCHER"; - /** - Allows an application to broadcast an Intent to set an alarm for the - user. - */ - public static final String SET_ALARM = "com.android.alarm.permission.SET_ALARM"; - /** - Allows an application to control whether activities are immediately - finished when put in the background. -

Not for use by third-party applications. - */ - public static final String SET_ALWAYS_FINISH = "android.permission.SET_ALWAYS_FINISH"; - /** - Modify the global animation scaling factor. -

Not for use by third-party applications. - */ - public static final String SET_ANIMATION_SCALE = "android.permission.SET_ANIMATION_SCALE"; - /** - Configure an application for debugging. -

Not for use by third-party applications. - */ - public static final String SET_DEBUG_APP = "android.permission.SET_DEBUG_APP"; - /** - Allows low-level access to setting the keyboard layout. -

Not for use by third-party applications. - @hide - */ - public static final String SET_KEYBOARD_LAYOUT = "android.permission.SET_KEYBOARD_LAYOUT"; - /** - Allows low-level access to setting the orientation (actually - rotation) of the screen. -

Not for use by third-party applications. - */ - public static final String SET_ORIENTATION = "android.permission.SET_ORIENTATION"; - /** - Allows low-level access to setting the pointer speed. -

Not for use by third-party applications. - */ - public static final String SET_POINTER_SPEED = "android.permission.SET_POINTER_SPEED"; - /** - @deprecated No longer useful, see - {@link android.content.pm.PackageManager#addPackageToPreferred} - for details. - */ - @Deprecated - public static final String SET_PREFERRED_APPLICATIONS = "android.permission.SET_PREFERRED_APPLICATIONS"; - /** - Allows an application to set the maximum number of (not needed) - application processes that can be running. -

Not for use by third-party applications. - */ - public static final String SET_PROCESS_LIMIT = "android.permission.SET_PROCESS_LIMIT"; - /** - * @hide Change the screen compatibility mode of applications - */ - public static final String SET_SCREEN_COMPATIBILITY = "android.permission.SET_SCREEN_COMPATIBILITY"; - /** - Allows applications to set the system time. -

Not for use by third-party applications. - */ - public static final String SET_TIME = "android.permission.SET_TIME"; - /** - * Allows applications to set the system time zone - */ - public static final String SET_TIME_ZONE = "android.permission.SET_TIME_ZONE"; - /** - * Allows applications to set the wallpaper - */ - public static final String SET_WALLPAPER = "android.permission.SET_WALLPAPER"; - /** - Allows applications to set a live wallpaper. - @hide XXX Change to signature once the picker is moved to its - own apk as Ghod Intended. - */ - public static final String SET_WALLPAPER_COMPONENT = "android.permission.SET_WALLPAPER_COMPONENT"; - /** - * Allows applications to set the wallpaper hints - */ - public static final String SET_WALLPAPER_HINTS = "android.permission.SET_WALLPAPER_HINTS"; - /** - Allows an application to call the activity manager shutdown() API - to put the higher-level system there into a shutdown state. - @hide - */ - public static final String SHUTDOWN = "android.permission.SHUTDOWN"; - /** - Allow an application to request that a signal be sent to all persistent processes. -

Not for use by third-party applications. - */ - public static final String SIGNAL_PERSISTENT_PROCESSES = "android.permission.SIGNAL_PERSISTENT_PROCESSES"; - /** - Allows an application to start any activity, regardless of permission - protection or exported state. @hide - */ - public static final String START_ANY_ACTIVITY = "android.permission.START_ANY_ACTIVITY"; - /** - Allows an application to open, close, or disable the status bar - and its icons. -

Not for use by third-party applications. - */ - public static final String STATUS_BAR = "android.permission.STATUS_BAR"; - /** - Allows an application to be the status bar. Currently used only by SystemUI.apk - @hide - */ - public static final String STATUS_BAR_SERVICE = "android.permission.STATUS_BAR_SERVICE"; - /** - Allows an application to tell the activity manager to temporarily - stop application switches, putting it into a special mode that - prevents applications from immediately switching away from some - critical UI such as the home screen. - @hide - */ - public static final String STOP_APP_SWITCHES = "android.permission.STOP_APP_SWITCHES"; - /** - Allows an application to allow access the subscribed feeds - ContentProvider. - */ - public static final String SUBSCRIBED_FEEDS_READ = "android.permission.SUBSCRIBED_FEEDS_READ"; - public static final String SUBSCRIBED_FEEDS_WRITE = "android.permission.SUBSCRIBED_FEEDS_WRITE"; - /** - Allows an application to open windows using the type - {@link android.view.WindowManager.LayoutParams#TYPE_SYSTEM_ALERT}, - shown on top of all other applications. Very few applications - should use this permission; these windows are intended for - system-level interaction with the user. - */ - public static final String SYSTEM_ALERT_WINDOW = "android.permission.SYSTEM_ALERT_WINDOW"; - /** - * @hide Allows an application to temporary enable accessibility on the device. - */ - public static final String TEMPORARY_ENABLE_ACCESSIBILITY = "android.permission.TEMPORARY_ENABLE_ACCESSIBILITY"; - /** - * Allows using the device's IR transmitter, if available - */ - public static final String TRANSMIT_IR = "android.permission.TRANSMIT_IR"; - /** - * Allows an application to uninstall a shortcut in Launcher - */ - public static final String UNINSTALL_SHORTCUT = "com.android.launcher.permission.UNINSTALL_SHORTCUT"; - /** - Allows an application to update application operation statistics. Not for - use by third party apps. @hide - */ - public static final String UPDATE_APP_OPS_STATS = "android.permission.UPDATE_APP_OPS_STATS"; - /** - Allows an application to update device statistics. -

Not for use by third-party applications. - */ - public static final String UPDATE_DEVICE_STATS = "android.permission.UPDATE_DEVICE_STATS"; - /** - Allows an application to hold an UpdateLock, recommending that a headless - OTA reboot *not* occur while the lock is held. - @hide - */ - public static final String UPDATE_LOCK = "android.permission.UPDATE_LOCK"; - /** - * Allows an application to request authtokens from the AccountManager - */ - public static final String USE_CREDENTIALS = "android.permission.USE_CREDENTIALS"; - /** - * Allows an application to use SIP service - */ - public static final String USE_SIP = "android.permission.USE_SIP"; - /** - * Allows access to the vibrator - */ - public static final String VIBRATE = "android.permission.VIBRATE"; - /** - Allows using PowerManager WakeLocks to keep processor from sleeping or screen - from dimming - */ - public static final String WAKE_LOCK = "android.permission.WAKE_LOCK"; - /** - Allows applications to write the apn settings. -

Not for use by third-party applications. - */ - public static final String WRITE_APN_SETTINGS = "android.permission.WRITE_APN_SETTINGS"; - /** - Allows an application to write (but not read) the user's - calendar data. - */ - public static final String WRITE_CALENDAR = "android.permission.WRITE_CALENDAR"; - /** - Allows an application to write (but not read) the user's - contacts data. -

Note: If your app uses the - {@link #WRITE_CONTACTS} permission and both your {@code - minSdkVersion} and {@code - targetSdkVersion} values are set to 15 or lower, the system implicitly - grants your app this permission. If you don't need this permission, be sure your {@code - targetSdkVersion} is 16 or higher.

- */ - public static final String WRITE_CALL_LOG = "android.permission.WRITE_CALL_LOG"; - /** - Allows an application to write (but not read) the user's - contacts data. - */ - public static final String WRITE_CONTACTS = "android.permission.WRITE_CONTACTS"; - /** - Allows applications to write dream settings, and start or stop dreaming. - @hide - */ - public static final String WRITE_DREAM_STATE = "android.permission.WRITE_DREAM_STATE"; - /** - Allows an application to write to external storage. -

Note: If both your {@code - minSdkVersion} and {@code - targetSdkVersion} values are set to 3 or lower, the system implicitly - grants your app this permission. If you don't need this permission, be sure your {@code - targetSdkVersion} is 4 or higher. -

Starting in API level 19, this permission is not required to - read/write files in your application-specific directories returned by - {@link android.content.Context#getExternalFilesDir} and - {@link android.content.Context#getExternalCacheDir}. - */ - public static final String WRITE_EXTERNAL_STORAGE = "android.permission.WRITE_EXTERNAL_STORAGE"; - /** - Allows an application to modify the Google service map. -

Not for use by third-party applications. - */ - public static final String WRITE_GSERVICES = "android.permission.WRITE_GSERVICES"; - /** - Allows an application to write (but not read) the user's - browsing history and bookmarks. - */ - public static final String WRITE_HISTORY_BOOKMARKS = "com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"; - /** - Allows an application to write to internal media storage - @hide - */ - public static final String WRITE_MEDIA_STORAGE = "android.permission.WRITE_MEDIA_STORAGE"; - /** - Allows an application to write (but not read) the user's - personal profile data. - */ - public static final String WRITE_PROFILE = "android.permission.WRITE_PROFILE"; - /** - Allows an application to read or write the secure system settings. -

Not for use by third-party applications. - */ - public static final String WRITE_SECURE_SETTINGS = "android.permission.WRITE_SECURE_SETTINGS"; - /** - * Allows an application to read or write the system settings. - */ - public static final String WRITE_SETTINGS = "android.permission.WRITE_SETTINGS"; - /** - * Allows an application to write SMS messages. - */ - public static final String WRITE_SMS = "android.permission.WRITE_SMS"; - /** - Allows an application to write (but not read) the user's - social stream data. - */ - public static final String WRITE_SOCIAL_STREAM = "android.permission.WRITE_SOCIAL_STREAM"; - /** - * Allows applications to write the sync settings - */ - public static final String WRITE_SYNC_SETTINGS = "android.permission.WRITE_SYNC_SETTINGS"; - /** - * Allows an application to write to the user dictionary. - */ - public static final String WRITE_USER_DICTIONARY = "android.permission.WRITE_USER_DICTIONARY"; - } - public static final class permission_group { - /** - * Used for permissions that allow requesting certain accessibility features. - */ - public static final String ACCESSIBILITY_FEATURES = "android.permission-group.ACCESSIBILITY_FEATURES"; - /** - Permissions for direct access to the accounts managed - by the Account Manager. - */ - public static final String ACCOUNTS = "android.permission-group.ACCOUNTS"; - /** - Used for permissions that provide direct access to the hardware on - the device that has an effect on battery life. This includes vibrator, - flashlight, etc. - */ - public static final String AFFECTS_BATTERY = "android.permission-group.AFFECTS_BATTERY"; - /** - Group of permissions that are related to the other applications - installed on the system. Examples include such as listing - running apps, or killing background processes. - */ - public static final String APP_INFO = "android.permission-group.APP_INFO"; - /** - Used for permissions that provide direct access to speaker settings - the device. - */ - public static final String AUDIO_SETTINGS = "android.permission-group.AUDIO_SETTINGS"; - /** - * Used for permissions that provide access to other devices through Bluetooth. - */ - public static final String BLUETOOTH_NETWORK = "android.permission-group.BLUETOOTH_NETWORK"; - /** - Used for permissions that provide access to the user - bookmarks and browser history. - */ - public static final String BOOKMARKS = "android.permission-group.BOOKMARKS"; - /** - Used for permissions that provide access to the device - calendar to create / view events. - */ - public static final String CALENDAR = "android.permission-group.CALENDAR"; - /** - Used for permissions that are associated with accessing - camera or capturing images/video from the device. - */ - public static final String CAMERA = "android.permission-group.CAMERA"; - /** - Used for permissions that can be used to make the user spend money - without their direct involvement. - */ - public static final String COST_MONEY = "android.permission-group.COST_MONEY"; - /** - Group of permissions that are related to development features. These - are not permissions that should appear in third-party applications; they - protect APIs that are intended only to be used for development - purposes. - */ - public static final String DEVELOPMENT_TOOLS = "android.permission-group.DEVELOPMENT_TOOLS"; - /** - * Used for permissions that provide access to the user voicemail box. - */ - public static final String DEVICE_ALARMS = "android.permission-group.DEVICE_ALARMS"; - /** - Group of permissions that allow manipulation of how - another application displays UI to the user. - */ - public static final String DISPLAY = "android.permission-group.DISPLAY"; - /** - Used for permissions that provide direct access to the hardware on - the device. This includes audio, the camera, vibrator, etc. - */ - public static final String HARDWARE_CONTROLS = "android.permission-group.HARDWARE_CONTROLS"; - /** - Used for permissions that allow access to the user's current - location. - */ - public static final String LOCATION = "android.permission-group.LOCATION"; - /** - Used for permissions that allow an application to send messages - on behalf of the user or intercept messages being received by the - user. This is primarily intended for SMS/MMS messaging, such as - receiving or reading an MMS. - */ - public static final String MESSAGES = "android.permission-group.MESSAGES"; - /** - Used for permissions that are associated with accessing - microphone audio from the device. Note that phone calls also capture audio - but are in a separate (more visible) permission group. - */ - public static final String MICROPHONE = "android.permission-group.MICROPHONE"; - /** - Used for permissions that provide access to networking services. The - main permission here is internet access, but this is also an - appropriate group for accessing or modifying any network configuration - or other related network operations. - */ - public static final String NETWORK = "android.permission-group.NETWORK"; - /** - Used for permissions that provide access to information about the device - user such as profile information. This includes both reading and - writing of this data (which should generally be expressed as two - distinct permissions). - */ - public static final String PERSONAL_INFO = "android.permission-group.PERSONAL_INFO"; - /** - Used for permissions that are associated with accessing and modifyign - telephony state: placing calls, intercepting outgoing calls, reading - and modifying the phone state. - */ - public static final String PHONE_CALLS = "android.permission-group.PHONE_CALLS"; - /** - * Group of permissions that are related to the screenlock. - */ - public static final String SCREENLOCK = "android.permission-group.SCREENLOCK"; - /** - Used for permissions that provide access to the user's social connections, - such as contacts, call logs, social stream, etc. This includes - both reading and writing of this data (which should generally be - expressed as two distinct permissions). - */ - public static final String SOCIAL_INFO = "android.permission-group.SOCIAL_INFO"; - /** - * Used for permissions that change the status bar - */ - public static final String STATUS_BAR = "android.permission-group.STATUS_BAR"; - /** - * Group of permissions that are related to SD card access. - */ - public static final String STORAGE = "android.permission-group.STORAGE"; - /** - Used for permissions that access the sync settings or sync - related information. - */ - public static final String SYNC_SETTINGS = "android.permission-group.SYNC_SETTINGS"; - /** - * Group of permissions that are related to system clock. - */ - public static final String SYSTEM_CLOCK = "android.permission-group.SYSTEM_CLOCK"; - /** - Group of permissions that are related to system APIs. Many - of these are not permissions the user will be expected to understand, - and such permissions should generally be marked as "normal" protection - level so they don't get displayed. This can also, however, be used - for miscellaneous features that provide access to the operating system, - such as writing the global system settings. - */ - public static final String SYSTEM_TOOLS = "android.permission-group.SYSTEM_TOOLS"; - /** - Used for permissions that provide access to the user - calendar to create / view events. - */ - public static final String USER_DICTIONARY = "android.permission-group.USER_DICTIONARY"; - /** - * Used for permissions that provide access to the user voicemail box. - */ - public static final String VOICEMAIL = "android.permission-group.VOICEMAIL"; - /** - Group of permissions that allow manipulation of how - another application displays UI to the user. - */ - public static final String WALLPAPER = "android.permission-group.WALLPAPER"; - /** - Used for permissions that provide access to the user - calendar to create / view events. - */ - public static final String WRITE_USER_DICTIONARY = "android.permission-group.WRITE_USER_DICTIONARY"; - } + public static final class permission { + /** Allow an application to read and write the cache partition. + @hide + */ + @android.annotation.SystemApi + public static final String ACCESS_CACHE_FILESYSTEM="android.permission.ACCESS_CACHE_FILESYSTEM"; + /** Allows read/write access to the "properties" table in the checkin + database, to change values that get uploaded. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String ACCESS_CHECKIN_PROPERTIES="android.permission.ACCESS_CHECKIN_PROPERTIES"; + /** Allows an app to access approximate location. +

Protection level: dangerous + + */ + public static final String ACCESS_COARSE_LOCATION="android.permission.ACCESS_COARSE_LOCATION"; + /** Allows the holder to access content providers from outside an ApplicationThread. + This permission is enforced by the ActivityManagerService on the corresponding APIs, + in particular ActivityManagerService#getContentProviderExternal(String) and + ActivityManagerService#removeContentProviderExternal(String). + @hide + + */ + public static final String ACCESS_CONTENT_PROVIDERS_EXTERNALLY="android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY"; + /** Allows an application to provision and access DRM certificates + @hide This is not a third-party API (intended for system apps). + */ + @android.annotation.SystemApi + public static final String ACCESS_DRM_CERTIFICATES="android.permission.ACCESS_DRM_CERTIFICATES"; + /** Allows an app to access precise location. +

Protection level: dangerous + + */ + public static final String ACCESS_FINE_LOCATION="android.permission.ACCESS_FINE_LOCATION"; + /** Allows access to FM + @hide This is not a third-party API (intended for system apps). + */ + @android.annotation.SystemApi + public static final String ACCESS_FM_RADIO="android.permission.ACCESS_FM_RADIO"; + /** Allows an application to access the IMS call service: making and + modifying a call +

Protection level: signature|system + @hide + + */ + public static final String ACCESS_IMS_CALL_SERVICE="android.permission.ACCESS_IMS_CALL_SERVICE"; + /** Allows an application to use InputFlinger's low level features. + @hide + */ + public static final String ACCESS_INPUT_FLINGER="android.permission.ACCESS_INPUT_FLINGER"; + /** Allows access to keyguard secure storage. Only allowed for system processes. + @hide + */ + public static final String ACCESS_KEYGUARD_SECURE_STORAGE="android.permission.ACCESS_KEYGUARD_SECURE_STORAGE"; + /** Allows an application to access extra location provider commands +

Protection level: normal + + */ + public static final String ACCESS_LOCATION_EXTRA_COMMANDS="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"; + /** Allows an application to create mock location providers for testing. +

Protection level: signature + @hide + + */ + @android.annotation.SystemApi + public static final String ACCESS_MOCK_LOCATION="android.permission.ACCESS_MOCK_LOCATION"; + /** Allows an application to access the MTP USB kernel driver. + For use only by the device side MTP implementation. + @hide + */ + @android.annotation.SystemApi + public static final String ACCESS_MTP="android.permission.ACCESS_MTP"; + /** Allows an application to listen for network condition observations. + @hide This is not a third-party API (intended for system apps). + */ + @android.annotation.SystemApi + public static final String ACCESS_NETWORK_CONDITIONS="android.permission.ACCESS_NETWORK_CONDITIONS"; + /** Allows applications to access information about networks +

Protection level: normal + + */ + public static final String ACCESS_NETWORK_STATE="android.permission.ACCESS_NETWORK_STATE"; + /** Allows an application to read the current set of notifications, including + any metadata and intents attached. + @hide + */ + @android.annotation.SystemApi + public static final String ACCESS_NOTIFICATIONS="android.permission.ACCESS_NOTIFICATIONS"; + /** Marker permission for applications that wish to access notification policy. +

Protection level: normal + + */ + public static final String ACCESS_NOTIFICATION_POLICY="android.permission.ACCESS_NOTIFICATION_POLICY"; + /** @hide Allows querying state of PersistentDataBlock +

Not for use by third-party applications. + */ + public static final String ACCESS_PDB_STATE="android.permission.ACCESS_PDB_STATE"; + /** Allows an application to use SurfaceFlinger's low level features. +

Not for use by third-party applications. + @hide + + */ + @android.annotation.SystemApi + public static final String ACCESS_SURFACE_FLINGER="android.permission.ACCESS_SURFACE_FLINGER"; + /** Allows an application to interact with the currently active + {@link android.service.voice.VoiceInteractionService}. + @hide + */ + public static final String ACCESS_VOICE_INTERACTION_SERVICE="android.permission.ACCESS_VOICE_INTERACTION_SERVICE"; + /** Allows applications to access information about Wi-Fi networks. +

Protection level: normal + + */ + public static final String ACCESS_WIFI_STATE="android.permission.ACCESS_WIFI_STATE"; + /** @hide + */ + public static final String ACCESS_WIMAX_STATE="android.permission.ACCESS_WIMAX_STATE"; + /** Allows applications to call into AccountAuthenticators. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String ACCOUNT_MANAGER="android.permission.ACCOUNT_MANAGER"; + /** Allows an application to add voicemails into the system. +

Protection level: dangerous + + */ + public static final String ADD_VOICEMAIL="com.android.voicemail.permission.ADD_VOICEMAIL"; + /** Allows an application to use any media decoder when decoding for playback + @hide + */ + @android.annotation.SystemApi + public static final String ALLOW_ANY_CODEC_FOR_PLAYBACK="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK"; + /** Allows access to ASEC non-destructive API calls + @hide + */ + public static final String ASEC_ACCESS="android.permission.ASEC_ACCESS"; + /** Allows creation of ASEC volumes + @hide + */ + public static final String ASEC_CREATE="android.permission.ASEC_CREATE"; + /** Allows destruction of ASEC volumes + @hide + */ + public static final String ASEC_DESTROY="android.permission.ASEC_DESTROY"; + /** Allows mount / unmount of ASEC volumes + @hide + */ + public static final String ASEC_MOUNT_UNMOUNT="android.permission.ASEC_MOUNT_UNMOUNT"; + /** Allows rename of ASEC volumes + @hide + */ + public static final String ASEC_RENAME="android.permission.ASEC_RENAME"; + /** @hide We need to keep this around for backwards compatibility + */ + public static final String AUTHENTICATE_ACCOUNTS="android.permission.AUTHENTICATE_ACCOUNTS"; + /** Allows an application to control the backup and restore process. +

Not for use by third-party applications. + @hide pending API council + */ + @android.annotation.SystemApi + public static final String BACKUP="android.permission.BACKUP"; + /** Allows an application to collect battery statistics + */ + @android.annotation.SystemApi + public static final String BATTERY_STATS="android.permission.BATTERY_STATS"; + /** Must be required by an {@link android.accessibilityservice.AccessibilityService}, + to ensure that only the system can bind to it. +

Protection level: signature + + */ + public static final String BIND_ACCESSIBILITY_SERVICE="android.permission.BIND_ACCESSIBILITY_SERVICE"; + /** Allows an application to tell the AppWidget service which application + can access AppWidget's data. The normal user flow is that a user + picks an AppWidget to go into a particular host, thereby giving that + host application access to the private data from the AppWidget app. + An application that has this permission should honor that contract. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String BIND_APPWIDGET="android.permission.BIND_APPWIDGET"; + /** @deprecated Use {@link android.Manifest.permission#BIND_CARRIER_SERVICES} instead + */ + @Deprecated + public static final String BIND_CARRIER_MESSAGING_SERVICE="android.permission.BIND_CARRIER_MESSAGING_SERVICE"; + /** The system process that is allowed to bind to services in carrier apps will + have this permission. Carrier apps should use this permission to protect + their services that only the system is allowed to bind to. +

Protection level: system|signature + + */ + public static final String BIND_CARRIER_SERVICES="android.permission.BIND_CARRIER_SERVICES"; + /** Must be required by a {@link + android.service.chooser.ChooserTargetService}, to ensure that + only the system can bind to it. +

Protection level: signature + + */ + public static final String BIND_CHOOSER_TARGET_SERVICE="android.permission.BIND_CHOOSER_TARGET_SERVICE"; + /** Must be required by a {@link + android.service.notification.ConditionProviderService}, + to ensure that only the system can bind to it. + @hide + */ + @android.annotation.SystemApi + public static final String BIND_CONDITION_PROVIDER_SERVICE="android.permission.BIND_CONDITION_PROVIDER_SERVICE"; + /** Must be required by a {@link android.telecom.ConnectionService}, + to ensure that only the system can bind to it. + @deprecated {@link android.telecom.ConnectionService}s should require + android.permission.BIND_TELECOM_CONNECTION_SERVICE instead. + + @hide + */ + @Deprecated + @android.annotation.SystemApi + public static final String BIND_CONNECTION_SERVICE="android.permission.BIND_CONNECTION_SERVICE"; + /** Must be required by device administration receiver, to ensure that only the + system can interact with it. +

Protection level: signature + + */ + public static final String BIND_DEVICE_ADMIN="android.permission.BIND_DEVICE_ADMIN"; + /** @hide Allows an application to execute contacts directory search. + This should only be used by ContactsProvider. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String BIND_DIRECTORY_SEARCH="android.permission.BIND_DIRECTORY_SEARCH"; + /** Must be required by an {@link android.service.dreams.DreamService}, + to ensure that only the system can bind to it. +

Protection level: signature + + */ + public static final String BIND_DREAM_SERVICE="android.permission.BIND_DREAM_SERVICE"; + /** Must be required by a {@link android.telecom.InCallService}, + to ensure that only the system can bind to it. +

Protection level: system|signature + + */ + public static final String BIND_INCALL_SERVICE="android.permission.BIND_INCALL_SERVICE"; + /** Must be required by an {@link android.inputmethodservice.InputMethodService}, + to ensure that only the system can bind to it. +

Protection level: signature + + */ + public static final String BIND_INPUT_METHOD="android.permission.BIND_INPUT_METHOD"; + /** Must be required by intent filter verifier receiver, to ensure that only the + system can interact with it. + @hide + + */ + public static final String BIND_INTENT_FILTER_VERIFIER="android.permission.BIND_INTENT_FILTER_VERIFIER"; + /** Allows the system to bind to an application's task services + @hide + */ + public static final String BIND_JOB_SERVICE="android.permission.BIND_JOB_SERVICE"; + /** Private permission, to restrict who can bring up a dialog to add a new + keyguard widget + @hide + */ + @android.annotation.SystemApi + public static final String BIND_KEYGUARD_APPWIDGET="android.permission.BIND_KEYGUARD_APPWIDGET"; + /** Must be required by an {@link android.media.midi.MidiDeviceService}, + to ensure that only the system can bind to it. +

Protection level: signature + + */ + public static final String BIND_MIDI_DEVICE_SERVICE="android.permission.BIND_MIDI_DEVICE_SERVICE"; + /** Must be required by a {@link android.nfc.cardemulation.HostApduService} + or {@link android.nfc.cardemulation.OffHostApduService} to ensure that only + the system can bind to it. +

Protection level: signature + + */ + public static final String BIND_NFC_SERVICE="android.permission.BIND_NFC_SERVICE"; + /** Must be required by an {@link + android.service.notification.NotificationListenerService}, + to ensure that only the system can bind to it. +

Protection level: signature + + */ + public static final String BIND_NOTIFICATION_LISTENER_SERVICE="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE"; + /** Must be required by package verifier receiver, to ensure that only the + system can interact with it. + @hide + + */ + public static final String BIND_PACKAGE_VERIFIER="android.permission.BIND_PACKAGE_VERIFIER"; + /** Must be required by a {@link android.printservice.PrintService}, + to ensure that only the system can bind to it. +

Protection level: signature + + */ + public static final String BIND_PRINT_SERVICE="android.permission.BIND_PRINT_SERVICE"; + /** Must be required by the PrintSpooler to ensure that only the system can bind to it. + @hide + */ + public static final String BIND_PRINT_SPOOLER_SERVICE="android.permission.BIND_PRINT_SPOOLER_SERVICE"; + /** Must be required by a {@link android.widget.RemoteViewsService}, + to ensure that only the system can bind to it. + */ + @android.annotation.SystemApi + public static final String BIND_REMOTEVIEWS="android.permission.BIND_REMOTEVIEWS"; + /** Must be required by a {@link com.android.media.remotedisplay.RemoteDisplayProvider}, + to ensure that only the system can bind to it. + @hide + */ + public static final String BIND_REMOTE_DISPLAY="android.permission.BIND_REMOTE_DISPLAY"; + /** Must be required by a {@link android.media.routing.MediaRouteService} + to ensure that only the system can interact with it. + @hide + */ + public static final String BIND_ROUTE_PROVIDER="android.permission.BIND_ROUTE_PROVIDER"; + /** Must be required by a {@link android.telecom.ConnectionService}, + to ensure that only the system can bind to it. +

Protection level: system|signature + + */ + public static final String BIND_TELECOM_CONNECTION_SERVICE="android.permission.BIND_TELECOM_CONNECTION_SERVICE"; + /** Must be required by a TextService (e.g. SpellCheckerService) + to ensure that only the system can bind to it. +

Protection level: signature + + */ + public static final String BIND_TEXT_SERVICE="android.permission.BIND_TEXT_SERVICE"; + /** Must be required by an {@link + android.service.trust.TrustAgentService}, + to ensure that only the system can bind to it. + @hide + */ + @android.annotation.SystemApi + public static final String BIND_TRUST_AGENT="android.permission.BIND_TRUST_AGENT"; + /** Must be required by a {@link android.media.tv.TvInputService} + to ensure that only the system can bind to it. +

Protection level: signature + + */ + public static final String BIND_TV_INPUT="android.permission.BIND_TV_INPUT"; + /** Must be required by a {@link android.service.voice.VoiceInteractionService}, + to ensure that only the system can bind to it. +

Protection level: signature + + */ + public static final String BIND_VOICE_INTERACTION="android.permission.BIND_VOICE_INTERACTION"; + /** Must be required by a {@link android.net.VpnService}, + to ensure that only the system can bind to it. +

Protection level: signature + + */ + public static final String BIND_VPN_SERVICE="android.permission.BIND_VPN_SERVICE"; + /** Must be required by a {@link android.service.wallpaper.WallpaperService}, + to ensure that only the system can bind to it. +

Protection level: system|signature + + */ + public static final String BIND_WALLPAPER="android.permission.BIND_WALLPAPER"; + /** Allows applications to connect to paired bluetooth devices. +

Protection level: normal + + */ + public static final String BLUETOOTH="android.permission.BLUETOOTH"; + /** Allows applications to discover and pair bluetooth devices. +

Protection level: normal + + */ + public static final String BLUETOOTH_ADMIN="android.permission.BLUETOOTH_ADMIN"; + /** Control access to email providers exclusively for Bluetooth + @hide + + */ + public static final String BLUETOOTH_MAP="android.permission.BLUETOOTH_MAP"; + /** Allows applications to pair bluetooth devices without user interaction, and to + allow or disallow phonebook access or message access. + This is not available to third party applications. + */ + @android.annotation.SystemApi + public static final String BLUETOOTH_PRIVILEGED="android.permission.BLUETOOTH_PRIVILEGED"; + /** Allows bluetooth stack to access files + @hide This should only be used by Bluetooth apk. + + */ + public static final String BLUETOOTH_STACK="android.permission.BLUETOOTH_STACK"; + /** Allows an application to access data from sensors that the user uses to + measure what is happening inside his/her body, such as heart rate. +

Protection level: dangerous + */ + public static final String BODY_SENSORS="android.permission.BODY_SENSORS"; + /** Required to be able to disable the device (very dangerous!). +

Not for use by third-party applications. + @hide + + */ + @android.annotation.SystemApi + public static final String BRICK="android.permission.BRICK"; + /** Allows an application to broadcast privileged networking requests. +

Not for use by third-party applications. @hide + */ + @android.annotation.SystemApi + public static final String BROADCAST_NETWORK_PRIVILEGED="android.permission.BROADCAST_NETWORK_PRIVILEGED"; + /** Allows an application to broadcast a notification that an application + package has been removed. +

Not for use by third-party applications. + + */ + public static final String BROADCAST_PACKAGE_REMOVED="android.permission.BROADCAST_PACKAGE_REMOVED"; + /** Allows an application to broadcast an SMS receipt notification. +

Not for use by third-party applications. + + */ + public static final String BROADCAST_SMS="android.permission.BROADCAST_SMS"; + /** Allows an application to broadcast sticky intents. These are + broadcasts whose data is held by the system after being finished, + so that clients can quickly retrieve that data without having + to wait for the next broadcast. +

Protection level: normal + + */ + public static final String BROADCAST_STICKY="android.permission.BROADCAST_STICKY"; + /** Allows an application to broadcast a WAP PUSH receipt notification. +

Not for use by third-party applications. + + */ + public static final String BROADCAST_WAP_PUSH="android.permission.BROADCAST_WAP_PUSH"; + /** C2DM permission. + @hide Used internally. + + */ + public static final String C2D_MESSAGE="android.intent.category.MASTER_CLEAR.permission.C2D_MESSAGE"; + /** Allows an application to initiate a phone call without going through + the Dialer user interface for the user to confirm the call. +

Protection level: dangerous + + */ + public static final String CALL_PHONE="android.permission.CALL_PHONE"; + /** Allows an application to call any phone number, including emergency + numbers, without going through the Dialer user interface for the user + to confirm the call being placed. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String CALL_PRIVILEGED="android.permission.CALL_PRIVILEGED"; + /** Required to be able to access the camera device. +

This will automatically enforce the {@code + <uses-feature>} manifest element for all camera features. + If you do not require all camera features or can properly operate if a camera + is not available, then you must modify your manifest as appropriate in order to + install on devices that don't support all camera features.

+

Protection level: dangerous + + */ + public static final String CAMERA="android.permission.CAMERA"; + /** Allows disabling the transmit-indicator LED that is normally on when + a camera is in use by an application. + @hide + */ + @android.annotation.SystemApi + public static final String CAMERA_DISABLE_TRANSMIT_LED="android.permission.CAMERA_DISABLE_TRANSMIT_LED"; + /** Allows sending the camera service notifications about system-wide events. + @hide + */ + public static final String CAMERA_SEND_SYSTEM_EVENTS="android.permission.CAMERA_SEND_SYSTEM_EVENTS"; + /** Allows an application to capture audio for hotword detection. +

Not for use by third-party applications.

+ @hide + */ + @android.annotation.SystemApi + public static final String CAPTURE_AUDIO_HOTWORD="android.permission.CAPTURE_AUDIO_HOTWORD"; + /** Allows an application to capture audio output. +

Not for use by third-party applications.

+ */ + @android.annotation.SystemApi + public static final String CAPTURE_AUDIO_OUTPUT="android.permission.CAPTURE_AUDIO_OUTPUT"; + /** Allows an application to capture secure video output. +

Not for use by third-party applications.

+ */ + @android.annotation.SystemApi + public static final String CAPTURE_SECURE_VIDEO_OUTPUT="android.permission.CAPTURE_SECURE_VIDEO_OUTPUT"; + /** Allows to capture a frame of TV input hardware such as + built-in tuners and HDMI-in's. + @hide

Not for use by third-party applications. + + */ + @android.annotation.SystemApi + public static final String CAPTURE_TV_INPUT="android.permission.CAPTURE_TV_INPUT"; + /** Allows an application to capture video output. +

Not for use by third-party applications.

+ */ + @android.annotation.SystemApi + public static final String CAPTURE_VIDEO_OUTPUT="android.permission.CAPTURE_VIDEO_OUTPUT"; + /** Allows an application to filter carrier specific sms. + @hide + */ + public static final String CARRIER_FILTER_SMS="android.permission.CARRIER_FILTER_SMS"; + /** @hide Allows an application to change the app idle state of an app. +

Not for use by third-party applications. + */ + public static final String CHANGE_APP_IDLE_STATE="android.permission.CHANGE_APP_IDLE_STATE"; + /** Allows applications to change the background data setting. +

Not for use by third-party applications. + @hide pending API council + */ + public static final String CHANGE_BACKGROUND_DATA_SETTING="android.permission.CHANGE_BACKGROUND_DATA_SETTING"; + /** Allows an application to change whether an application component (other than its own) is + enabled or not. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String CHANGE_COMPONENT_ENABLED_STATE="android.permission.CHANGE_COMPONENT_ENABLED_STATE"; + /** Allows an application to modify the current configuration, such + as locale. + */ + @android.annotation.SystemApi + public static final String CHANGE_CONFIGURATION="android.permission.CHANGE_CONFIGURATION"; + /** @hide Allows an application to temporarily whitelist an inactive app to + access the network and acquire wakelocks. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String CHANGE_DEVICE_IDLE_TEMP_WHITELIST="android.permission.CHANGE_DEVICE_IDLE_TEMP_WHITELIST"; + /** Allows applications to change network connectivity state. +

Protection level: normal + + */ + public static final String CHANGE_NETWORK_STATE="android.permission.CHANGE_NETWORK_STATE"; + /** Allows applications to enter Wi-Fi Multicast mode. +

Protection level: normal + + */ + public static final String CHANGE_WIFI_MULTICAST_STATE="android.permission.CHANGE_WIFI_MULTICAST_STATE"; + /** Allows applications to change Wi-Fi connectivity state. +

Protection level: normal + + */ + public static final String CHANGE_WIFI_STATE="android.permission.CHANGE_WIFI_STATE"; + /** @hide + */ + public static final String CHANGE_WIMAX_STATE="android.permission.CHANGE_WIMAX_STATE"; + /** Allows an application to clear the caches of all installed + applications on the device. +

Protection level: system|signature + + */ + public static final String CLEAR_APP_CACHE="android.permission.CLEAR_APP_CACHE"; + /** Allows an application to clear user data. +

Not for use by third-party applications + @hide + + */ + @android.annotation.SystemApi + public static final String CLEAR_APP_USER_DATA="android.permission.CLEAR_APP_USER_DATA"; + /** Allows an application to control the color transforms applied to + displays system-wide. +

Not for use by third-party applications.

+ @hide + */ + public static final String CONFIGURE_DISPLAY_COLOR_TRANSFORM="android.permission.CONFIGURE_DISPLAY_COLOR_TRANSFORM"; + /** Allows an application to configure and connect to Wifi displays + @hide + */ + public static final String CONFIGURE_WIFI_DISPLAY="android.permission.CONFIGURE_WIFI_DISPLAY"; + /** Allows a package to launch the secure full-backup confirmation UI. + ONLY the system process may hold this permission. + @hide + */ + public static final String CONFIRM_FULL_BACKUP="android.permission.CONFIRM_FULL_BACKUP"; + /** Allows an internal user to use privileged ConnectivityManager APIs. + @hide + */ + @android.annotation.SystemApi + public static final String CONNECTIVITY_INTERNAL="android.permission.CONNECTIVITY_INTERNAL"; + /** Allows an application to control the in-call experience. + @hide + */ + @android.annotation.SystemApi + public static final String CONTROL_INCALL_EXPERIENCE="android.permission.CONTROL_INCALL_EXPERIENCE"; + /** Allows an application to control keyguard. Only allowed for system processes. + @hide + */ + public static final String CONTROL_KEYGUARD="android.permission.CONTROL_KEYGUARD"; + /** Allows enabling/disabling location update notifications from + the radio. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String CONTROL_LOCATION_UPDATES="android.permission.CONTROL_LOCATION_UPDATES"; + /** Allows an application to control VPN. +

Not for use by third-party applications.

+ @hide + */ + @android.annotation.SystemApi + public static final String CONTROL_VPN="android.permission.CONTROL_VPN"; + /** Allows an application to control low-level features of Wifi displays + such as opening an RTSP socket. This permission should only be used + by the display manager. + @hide + */ + public static final String CONTROL_WIFI_DISPLAY="android.permission.CONTROL_WIFI_DISPLAY"; + /** Must be required by default container service so that only + the system can bind to it and use it to copy + protected data to secure containers or files + accessible to the system. + @hide + */ + public static final String COPY_PROTECTED_DATA="android.permission.COPY_PROTECTED_DATA"; + /** @hide Allows an application to create, remove users and get the list of + users on the device. Applications holding this permission can only create restricted, + guest, and managed users. For creating other kind of users, + {@link android.Manifest.permission#MANAGE_USERS} is needed. + This permission is not available to third party applications. + */ + public static final String CREATE_USERS="android.permission.CREATE_USERS"; + /** Internal permission protecting access to the encryption methods + @hide + + */ + @android.annotation.SystemApi + public static final String CRYPT_KEEPER="android.permission.CRYPT_KEEPER"; + /** Allows an application to delete cache files. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String DELETE_CACHE_FILES="android.permission.DELETE_CACHE_FILES"; + /** Allows an application to delete packages. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String DELETE_PACKAGES="android.permission.DELETE_PACKAGES"; + /** Allows low-level access to power management. +

Not for use by third-party applications. + @hide + + */ + @android.annotation.SystemApi + public static final String DEVICE_POWER="android.permission.DEVICE_POWER"; + /** Allows applications to RW to diagnostic resources. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String DIAGNOSTIC="android.permission.DIAGNOSTIC"; + /** Allows applications to disable the keyguard if it is not secure. +

Protection level: normal + + */ + public static final String DISABLE_KEYGUARD="android.permission.DISABLE_KEYGUARD"; + /** Allows the Nfc stack to dispatch Nfc messages to applications. Applications + can use this permission to ensure incoming Nfc messages are from the Nfc stack + and not simulated by another application. + @hide + */ + public static final String DISPATCH_NFC_MESSAGE="android.permission.DISPATCH_NFC_MESSAGE"; + /** Allows an application to retrieve state dump information from system services. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String DUMP="android.permission.DUMP"; + /** @hide Allows TvInputService to access DVB device. +

Not for use by third-party applications. + */ + public static final String DVB_DEVICE="android.permission.DVB_DEVICE"; + /** Allows an application to expand or collapse the status bar. +

Protection level: normal + + */ + public static final String EXPAND_STATUS_BAR="android.permission.EXPAND_STATUS_BAR"; + /** Run as a manufacturer test application, running as the root user. + Only available when the device is running in manufacturer test mode. +

Not for use by third-party applications. + + */ + public static final String FACTORY_TEST="android.permission.FACTORY_TEST"; + /** @hide Allows an application to register an input filter which filters the stream + of user events (keys, touch, trackball) before they are dispatched to any window. + */ + public static final String FILTER_EVENTS="android.permission.FILTER_EVENTS"; + /** Allows access to the flashlight. +

Protection level: normal + + */ + public static final String FLASHLIGHT="android.permission.FLASHLIGHT"; + /** Allows an application to force a BACK operation on whatever is the + top activity. +

Not for use by third-party applications. + @hide + + */ + @android.annotation.SystemApi + public static final String FORCE_BACK="android.permission.FORCE_BACK"; + /** Allows an application to call + {@link android.app.ActivityManager#forceStopPackage}. + @hide + */ + @android.annotation.SystemApi + public static final String FORCE_STOP_PACKAGES="android.permission.FORCE_STOP_PACKAGES"; + /** @hide Allows an application to collect frame statistics + */ + public static final String FRAME_STATS="android.permission.FRAME_STATS"; + /** @hide Allows the application to temporarily freeze the screen for a + full-screen transition. + */ + public static final String FREEZE_SCREEN="android.permission.FREEZE_SCREEN"; + /** Allows access to the list of accounts in the Accounts Service. +

Protection level: normal + + */ + public static final String GET_ACCOUNTS="android.permission.GET_ACCOUNTS"; + /** Allows access to the list of accounts in the Accounts Service. + */ + @android.annotation.SystemApi + public static final String GET_ACCOUNTS_PRIVILEGED="android.permission.GET_ACCOUNTS_PRIVILEGED"; + /** @hide Allows an application to collect battery statistics + */ + @android.annotation.SystemApi + public static final String GET_APP_OPS_STATS="android.permission.GET_APP_OPS_STATS"; + /** Allows an application to get full detailed information about + recently running tasks, with full fidelity to the real state. + @hide + */ + public static final String GET_DETAILED_TASKS="android.permission.GET_DETAILED_TASKS"; + /** @hide Allows an application to retrieve a package's importance. + This permission is not available to third party applications. + */ + @android.annotation.SystemApi + public static final String GET_PACKAGE_IMPORTANCE="android.permission.GET_PACKAGE_IMPORTANCE"; + /** Allows an application to find out the space used by any package. +

Protection level: normal + + */ + public static final String GET_PACKAGE_SIZE="android.permission.GET_PACKAGE_SIZE"; + /** @deprecated No longer enforced. + */ + @Deprecated + public static final String GET_TASKS="android.permission.GET_TASKS"; + /** Allows an application to retrieve private information about + the current top activity, such as any assist context it can provide. +

Not for use by third-party applications. + @hide + + */ + @android.annotation.SystemApi + public static final String GET_TOP_ACTIVITY_INFO="android.permission.GET_TOP_ACTIVITY_INFO"; + /** This permission can be used on content providers to allow the global + search system to access their data. Typically it used when the + provider has some permissions protecting it (which global search + would not be expected to hold), and added as a read-only permission + to the path in the provider where global search queries are + performed. This permission can not be held by regular applications; + it is used by applications to protect themselves from everyone else + besides global search. + */ + @android.annotation.SystemApi + public static final String GLOBAL_SEARCH="android.permission.GLOBAL_SEARCH"; + /** Internal permission protecting access to the global search + system: ensures that only the system can access the provider + to perform queries (since this otherwise provides unrestricted + access to a variety of content providers), and to write the + search statistics (to keep applications from gaming the source + ranking). + @hide + */ + public static final String GLOBAL_SEARCH_CONTROL="android.permission.GLOBAL_SEARCH_CONTROL"; + /** Allows an application to grant specific permissions. + @hide + */ + public static final String GRANT_RUNTIME_PERMISSIONS="android.permission.GRANT_RUNTIME_PERMISSIONS"; + /** Allows access to hardware peripherals. Intended only for hardware testing. +

Not for use by third-party applications. + @hide + + */ + @android.annotation.SystemApi + public static final String HARDWARE_TEST="android.permission.HARDWARE_TEST"; + /** @hide Allows HDMI-CEC service to access device and configuration files. + This should only be used by HDMI-CEC service. + + */ + @android.annotation.SystemApi + public static final String HDMI_CEC="android.permission.HDMI_CEC"; + /** Allows an application to use + {@link android.view.WindowManager.LayoutsParams#PRIVATE_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS} + to hide non-system-overlay windows. +

Not for use by third-party applications. + @hide + + */ + @android.annotation.SystemApi + public static final String HIDE_NON_SYSTEM_OVERLAY_WINDOWS="android.permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS"; + /** Allows an application to inject user events (keys, touch, trackball) + into the event stream and deliver them to ANY window. Without this + permission, you can only deliver events to windows in your own process. +

Not for use by third-party applications. + @hide + + */ + @android.annotation.SystemApi + public static final String INJECT_EVENTS="android.permission.INJECT_EVENTS"; + /** Allows an app that has this permission and the permissions to install packages + to request certain runtime permissions to be granted at installation. + @hide + + */ + @android.annotation.SystemApi + public static final String INSTALL_GRANT_RUNTIME_PERMISSIONS="android.permission.INSTALL_GRANT_RUNTIME_PERMISSIONS"; + /** Allows an application to install a location provider into the Location Manager. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String INSTALL_LOCATION_PROVIDER="android.permission.INSTALL_LOCATION_PROVIDER"; + /** Allows an application to install packages. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String INSTALL_PACKAGES="android.permission.INSTALL_PACKAGES"; + /** Allows an application to install a shortcut in Launcher. +

Protection level: normal + + */ + public static final String INSTALL_SHORTCUT="com.android.launcher.permission.INSTALL_SHORTCUT"; + /** @hide Intent filter verifier needs to have this permission before the + PackageManager will trust it to verify intent filters. + + */ + @android.annotation.SystemApi + public static final String INTENT_FILTER_VERIFICATION_AGENT="android.permission.INTENT_FILTER_VERIFICATION_AGENT"; + /** @hide Allows an application to call APIs that allow it to do interactions + across the users on the device, using singleton services and + user-targeted broadcasts. This permission is not available to + third party applications. + */ + @android.annotation.SystemApi + public static final String INTERACT_ACROSS_USERS="android.permission.INTERACT_ACROSS_USERS"; + /** @hide Fuller form of {@link android.Manifest.permission#INTERACT_ACROSS_USERS} + that removes restrictions on where broadcasts can be sent and allows other + types of interactions. + */ + public static final String INTERACT_ACROSS_USERS_FULL="android.permission.INTERACT_ACROSS_USERS_FULL"; + /** Allows an application to open windows that are for use by parts + of the system user interface. +

Not for use by third-party applications. + @hide + + */ + @android.annotation.SystemApi + public static final String INTERNAL_SYSTEM_WINDOW="android.permission.INTERNAL_SYSTEM_WINDOW"; + /** Allows applications to open network sockets. +

Protection level: normal + + */ + public static final String INTERNET="android.permission.INTERNET"; + /** Allows an application to call into a carrier setup flow. It is up to the + carrier setup application to enforce that this permission is required + @hide This is not a third-party API (intended for OEMs and system apps). + */ + @android.annotation.SystemApi + public static final String INVOKE_CARRIER_SETUP="android.permission.INVOKE_CARRIER_SETUP"; + /** Allows an application to call + {@link android.app.ActivityManager#killBackgroundProcesses}. +

Protection level: normal + + */ + public static final String KILL_BACKGROUND_PROCESSES="android.permission.KILL_BACKGROUND_PROCESSES"; + /** Allows applications to kill UIDs. +

Not for use by third-party applications. + @hide + */ + public static final String KILL_UID="android.permission.KILL_UID"; + /** Allows an application to launch the trust agent settings activity. + @hide + */ + public static final String LAUNCH_TRUST_AGENT_SETTINGS="android.permission.LAUNCH_TRUST_AGENT_SETTINGS"; + /** Allows applications to read the local WiFi and Bluetooth MAC address. + @hide + */ + @android.annotation.SystemApi + public static final String LOCAL_MAC_ADDRESS="android.permission.LOCAL_MAC_ADDRESS"; + /** Allows an application to use location features in hardware, + such as the geofencing api. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String LOCATION_HARDWARE="android.permission.LOCATION_HARDWARE"; + /** Allows access to the loop radio (Android@Home mesh network) device. + @hide + */ + @android.annotation.SystemApi + public static final String LOOP_RADIO="android.permission.LOOP_RADIO"; + /** @hide We need to keep this around for backwards compatibility + */ + public static final String MANAGE_ACCOUNTS="android.permission.MANAGE_ACCOUNTS"; + /** @hide Allows an application to create/manage/remove stacks + */ + @android.annotation.SystemApi + public static final String MANAGE_ACTIVITY_STACKS="android.permission.MANAGE_ACTIVITY_STACKS"; + /** Allows an application to manage (create, destroy, + Z-order) application tokens in the window manager. +

Not for use by third-party applications. + @hide + + */ + @android.annotation.SystemApi + public static final String MANAGE_APP_TOKENS="android.permission.MANAGE_APP_TOKENS"; + /** Allows an application to install and/or uninstall CA certificates on + behalf of the user. + @hide + */ + @android.annotation.SystemApi + public static final String MANAGE_CA_CERTIFICATES="android.permission.MANAGE_CA_CERTIFICATES"; + /** Required to add or remove another application as a device admin. +

Not for use by third-party applications. + @hide + */ + @android.annotation.SystemApi + public static final String MANAGE_DEVICE_ADMINS="android.permission.MANAGE_DEVICE_ADMINS"; + /** Allows an application to manage access to documents, usually as part + of a document picker. +

Protection level: signature + + */ + public static final String MANAGE_DOCUMENTS="android.permission.MANAGE_DOCUMENTS"; + /** Allows managing (adding, removing) fingerprint templates. Reserved for the system. @hide + */ + public static final String MANAGE_FINGERPRINT="android.permission.MANAGE_FINGERPRINT"; + /** Api Allows an application to manage media projection sessions. + @hide This is not a third-party API (intended for system apps). + */ + public static final String MANAGE_MEDIA_PROJECTION="android.permission.MANAGE_MEDIA_PROJECTION"; + /** Allows an application to manage network policies (such as warning and disable + limits) and to define application-specific rules. @hide + */ + public static final String MANAGE_NETWORK_POLICY="android.permission.MANAGE_NETWORK_POLICY"; + /** @hide Allows an application to set the profile owners and the device owner. + This permission is not available to third party applications. + */ + public static final String MANAGE_PROFILE_AND_DEVICE_OWNERS="android.permission.MANAGE_PROFILE_AND_DEVICE_OWNERS"; + /** Allows an application to manage preferences and permissions for USB devices + @hide + */ + @android.annotation.SystemApi + public static final String MANAGE_USB="android.permission.MANAGE_USB"; + /** @hide Allows an application to call APIs that allow it to query and manage + users on the device. This permission is not available to + third party applications. + */ + @android.annotation.SystemApi + public static final String MANAGE_USERS="android.permission.MANAGE_USERS"; + /** Must be required by hotword enrollment application, + to ensure that only the system can interact with it. + @hide

Not for use by third-party applications.

+ */ + public static final String MANAGE_VOICE_KEYPHRASES="android.permission.MANAGE_VOICE_KEYPHRASES"; + /** Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String MASTER_CLEAR="android.permission.MASTER_CLEAR"; + /** Allows an application to know what content is playing and control its playback. +

Not for use by third-party applications due to privacy of media consumption

+ */ + @android.annotation.SystemApi + public static final String MEDIA_CONTENT_CONTROL="android.permission.MEDIA_CONTENT_CONTROL"; + /** Internal permission allowing an application to query/set which + applications can bind AppWidgets. + @hide + */ + @android.annotation.SystemApi + public static final String MODIFY_APPWIDGET_BIND_PERMISSIONS="android.permission.MODIFY_APPWIDGET_BIND_PERMISSIONS"; + /** Allows an application to modify audio routing and override policy decisions. +

Not for use by third-party applications.

+ @hide + */ + @android.annotation.SystemApi + public static final String MODIFY_AUDIO_ROUTING="android.permission.MODIFY_AUDIO_ROUTING"; + /** Allows an application to modify global audio settings. +

Protection level: normal + + */ + public static final String MODIFY_AUDIO_SETTINGS="android.permission.MODIFY_AUDIO_SETTINGS"; + /** Allows an application to account its network traffic against other UIDs. Used + by system services like download manager and media server. Not for use by + third party apps. @hide + */ + @android.annotation.SystemApi + public static final String MODIFY_NETWORK_ACCOUNTING="android.permission.MODIFY_NETWORK_ACCOUNTING"; + /** Allows an application to modify parental controls +

Not for use by third-party applications. + @hide + */ + @android.annotation.SystemApi + public static final String MODIFY_PARENTAL_CONTROLS="android.permission.MODIFY_PARENTAL_CONTROLS"; + /** Allows modification of the telephony state - power on, mmi, etc. + Does not include placing calls. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String MODIFY_PHONE_STATE="android.permission.MODIFY_PHONE_STATE"; + /** Allows formatting file systems for removable storage. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String MOUNT_FORMAT_FILESYSTEMS="android.permission.MOUNT_FORMAT_FILESYSTEMS"; + /** Allows mounting and unmounting file systems for removable storage. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String MOUNT_UNMOUNT_FILESYSTEMS="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"; + /** Allows an application to move location of installed package. + @hide + */ + @android.annotation.SystemApi + public static final String MOVE_PACKAGE="android.permission.MOVE_PACKAGE"; + /** Allows access to configure network interfaces, configure/use IPSec, etc. + @hide + */ + public static final String NET_ADMIN="android.permission.NET_ADMIN"; + /** @hide Allows low-level access to tun tap driver + */ + public static final String NET_TUNNELING="android.permission.NET_TUNNELING"; + /** Allows applications to perform I/O operations over NFC. +

Protection level: normal + + */ + public static final String NFC="android.permission.NFC"; + /** Allows sending and receiving handover transfer status from Wifi and Bluetooth + @hide + */ + public static final String NFC_HANDOVER_STATUS="android.permission.NFC_HANDOVER_STATUS"; + /** @hide Allows system update service to notify device owner about pending updates. +

Not for use by third-party applications. + */ + public static final String NOTIFY_PENDING_SYSTEM_UPDATE="android.permission.NOTIFY_PENDING_SYSTEM_UPDATE"; + /** @hide Allows an application to observe permission changes. + */ + public static final String OBSERVE_GRANT_REVOKE_PERMISSIONS="android.permission.OBSERVE_GRANT_REVOKE_PERMISSIONS"; + /** @hide Allows enabling/disabling OEM unlock +

Not for use by third-party applications. + */ + public static final String OEM_UNLOCK_STATE="android.permission.OEM_UNLOCK_STATE"; + /** @hide Allows an application to modify any wifi configuration, even if created + by another application. Once reconfigured the original creator cannot make any further + modifications. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String OVERRIDE_WIFI_CONFIG="android.permission.OVERRIDE_WIFI_CONFIG"; + /** Allows an application to collect component usage + statistics +

Declaring the permission implies intention to use the API and the user of the + device can grant permission through the Settings application. + */ + @android.annotation.SystemApi + public static final String PACKAGE_USAGE_STATS="android.permission.PACKAGE_USAGE_STATS"; + /** @hide Package verifier needs to have this permission before the PackageManager will + trust it to verify packages. + + */ + @android.annotation.SystemApi + public static final String PACKAGE_VERIFICATION_AGENT="android.permission.PACKAGE_VERIFICATION_AGENT"; + /** Allows a system application to access hardware packet offload capabilities. + @hide + */ + public static final String PACKET_KEEPALIVE_OFFLOAD="android.permission.PACKET_KEEPALIVE_OFFLOAD"; + /** Allows access to MAC addresses of WiFi and Bluetooth peer devices. + @hide + */ + @android.annotation.SystemApi + public static final String PEERS_MAC_ADDRESS="android.permission.PEERS_MAC_ADDRESS"; + /** Allows an application to perform CDMA OTA provisioning @hide + */ + @android.annotation.SystemApi + public static final String PERFORM_CDMA_PROVISIONING="android.permission.PERFORM_CDMA_PROVISIONING"; + /** Allows an application to perform SIM Activation @hide + */ + @android.annotation.SystemApi + public static final String PERFORM_SIM_ACTIVATION="android.permission.PERFORM_SIM_ACTIVATION"; + /** @deprecated This functionality will be removed in the future; please do + not use. Allow an application to make its activities persistent. + */ + @Deprecated + public static final String PERSISTENT_ACTIVITY="android.permission.PERSISTENT_ACTIVITY"; + /** Allows an application to see the number being dialed during an outgoing + call with the option to redirect the call to a different number or + abort the call altogether. +

Protection level: dangerous + + */ + public static final String PROCESS_OUTGOING_CALLS="android.permission.PROCESS_OUTGOING_CALLS"; + /** Allows an application to provide a trust agent. + @hide For security reasons, this is a platform-only permission. + */ + @android.annotation.SystemApi + public static final String PROVIDE_TRUST_AGENT="android.permission.PROVIDE_TRUST_AGENT"; + /** Allows an application to query whether DO_NOT_ASK_CREDENTIALS_ON_BOOT + flag is set. + @hide + */ + public static final String QUERY_DO_NOT_ASK_CREDENTIALS_ON_BOOT="android.permission.QUERY_DO_NOT_ASK_CREDENTIALS_ON_BOOT"; + /** Allows an application to read the user's calendar data. +

Protection level: dangerous + + */ + public static final String READ_CALENDAR="android.permission.READ_CALENDAR"; + /** Allows an application to read the user's call log. +

Note: If your app uses the + {@link #READ_CONTACTS} permission and both your {@code + minSdkVersion} and {@code + targetSdkVersion} values are set to 15 or lower, the system implicitly + grants your app this permission. If you don't need this permission, be sure your {@code + targetSdkVersion} is 16 or higher.

+

Protection level: dangerous + + */ + public static final String READ_CALL_LOG="android.permission.READ_CALL_LOG"; + /** Allows an application to read previously received cell broadcast + messages and to register a content observer to get notifications when + a cell broadcast has been received and added to the database. For + emergency alerts, the database is updated immediately after the + alert dialog and notification sound/vibration/speech are presented. + The "read" column is then updated after the user dismisses the alert. + This enables supplementary emergency assistance apps to start loading + additional emergency information (if Internet access is available) + when the alert is first received, and to delay presenting the info + to the user until after the initial alert dialog is dismissed. +

Protection level: dangerous + @hide Pending API council approval + */ + public static final String READ_CELL_BROADCASTS="android.permission.READ_CELL_BROADCASTS"; + /** Allows an application to read the user's contacts data. +

Protection level: dangerous + + */ + public static final String READ_CONTACTS="android.permission.READ_CONTACTS"; + /** Allows applications to read dream settings and dream state. + @hide + */ + @android.annotation.SystemApi + public static final String READ_DREAM_STATE="android.permission.READ_DREAM_STATE"; + /** Allows an application to read from external storage. +

Any app that declares the {@link #WRITE_EXTERNAL_STORAGE} permission is implicitly + granted this permission.

+

This permission is enforced starting in API level 19. Before API level 19, this + permission is not enforced and all apps still have access to read from external storage. + You can test your app with the permission enforced by enabling Protect USB + storage under Developer options in the Settings app on a device running Android 4.1 or + higher.

+

Also starting in API level 19, this permission is not required to + read/write files in your application-specific directories returned by + {@link android.content.Context#getExternalFilesDir} and + {@link android.content.Context#getExternalCacheDir}. +

Note: If both your {@code + minSdkVersion} and {@code + targetSdkVersion} values are set to 3 or lower, the system implicitly + grants your app this permission. If you don't need this permission, be sure your {@code + targetSdkVersion} is 4 or higher. +

Protection level: dangerous + + */ + public static final String READ_EXTERNAL_STORAGE="android.permission.READ_EXTERNAL_STORAGE"; + /** Allows an application to take screen shots and more generally + get access to the frame buffer data. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String READ_FRAME_BUFFER="android.permission.READ_FRAME_BUFFER"; + /** @hide We need to keep this around for backwards compatibility + */ + public static final String READ_HISTORY_BOOKMARKS="com.android.browser.permission.READ_HISTORY_BOOKMARKS"; + /** Allows an application to retrieve the current state of keys and + switches. +

Not for use by third-party applications. + @deprecated The API that used this permission has been removed. + */ + @Deprecated + public static final String READ_INPUT_STATE="android.permission.READ_INPUT_STATE"; + /** Allows an application to read install sessions + @hide This is not a third-party API (intended for system apps). + */ + @android.annotation.SystemApi + public static final String READ_INSTALL_SESSIONS="android.permission.READ_INSTALL_SESSIONS"; + /** Allows an application to read the low-level system log files. +

Not for use by third-party applications, because + Log entries can contain the user's private information. + */ + @android.annotation.SystemApi + public static final String READ_LOGS="android.permission.READ_LOGS"; + /** Allows an application to read historical network usage for + specific networks and applications. @hide + */ + @android.annotation.SystemApi + public static final String READ_NETWORK_USAGE_HISTORY="android.permission.READ_NETWORK_USAGE_HISTORY"; + /** Allows read only access to phone state. +

Note: If both your {@code + minSdkVersion} and {@code + targetSdkVersion} values are set to 3 or lower, the system implicitly + grants your app this permission. If you don't need this permission, be sure your {@code + targetSdkVersion} is 4 or higher. +

Protection level: dangerous + + */ + public static final String READ_PHONE_STATE="android.permission.READ_PHONE_STATE"; + /** Allows read only access to precise phone state. + @hide Pending API council approval + */ + public static final String READ_PRECISE_PHONE_STATE="android.permission.READ_PRECISE_PHONE_STATE"; + /** Allows read access to privileged phone state. + @hide Used internally. + */ + @android.annotation.SystemApi + public static final String READ_PRIVILEGED_PHONE_STATE="android.permission.READ_PRIVILEGED_PHONE_STATE"; + /** ====================================================================== + REMOVED PERMISSIONS + ====================================================================== + @hide We need to keep this around for backwards compatibility + */ + public static final String READ_PROFILE="android.permission.READ_PROFILE"; + /** Internal permission to allows an application to read indexable data. + @hide + */ + @android.annotation.SystemApi + public static final String READ_SEARCH_INDEXABLES="android.permission.READ_SEARCH_INDEXABLES"; + /** Allows an application to read SMS messages. +

Protection level: dangerous + + */ + public static final String READ_SMS="android.permission.READ_SMS"; + /** @hide We need to keep this around for backwards compatibility + */ + public static final String READ_SOCIAL_STREAM="android.permission.READ_SOCIAL_STREAM"; + /** Allows applications to read the sync settings. +

Protection level: normal + + */ + public static final String READ_SYNC_SETTINGS="android.permission.READ_SYNC_SETTINGS"; + /** Allows applications to read the sync stats. +

Protection level: normal + + */ + public static final String READ_SYNC_STATS="android.permission.READ_SYNC_STATS"; + /** @hide We need to keep this around for backwards compatibility + */ + public static final String READ_USER_DICTIONARY="android.permission.READ_USER_DICTIONARY"; + /** Allows an application to read voicemails in the system. +

Protection level: system|signature + + */ + public static final String READ_VOICEMAIL="com.android.voicemail.permission.READ_VOICEMAIL"; + /** @hide Allows applications to read Wi-Fi credential. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String READ_WIFI_CREDENTIAL="android.permission.READ_WIFI_CREDENTIAL"; + /** New version of GET_TASKS that apps can request, since GET_TASKS doesn't really + give access to task information. We need this new one because there are + many existing apps that use add libraries and such that have validation + code to ensure the app has requested the GET_TASKS permission by seeing + if it has been granted the permission... if it hasn't, it kills the app + with a message about being upset. So we need to have it continue to look + like the app is getting that permission, even though it will never be + checked, and new privileged apps can now request this one for real access. + @hide + + */ + @android.annotation.SystemApi + public static final String REAL_GET_TASKS="android.permission.REAL_GET_TASKS"; + /** Required to be able to reboot the device. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String REBOOT="android.permission.REBOOT"; + /** Allows an application to monitor incoming Bluetooth MAP messages, to record + or perform processing on them. + @hide + */ + public static final String RECEIVE_BLUETOOTH_MAP="android.permission.RECEIVE_BLUETOOTH_MAP"; + /** Allows an application to receive the + {@link android.content.Intent#ACTION_BOOT_COMPLETED} that is + broadcast after the system finishes booting. If you don't + request this permission, you will not receive the broadcast at + that time. Though holding this permission does not have any + security implications, it can have a negative impact on the + user experience by increasing the amount of time it takes the + system to start and allowing applications to have themselves + running without the user being aware of them. As such, you must + explicitly declare your use of this facility to make that visible + to the user. +

Protection level: normal + + */ + public static final String RECEIVE_BOOT_COMPLETED="android.permission.RECEIVE_BOOT_COMPLETED"; + /** + @hide + */ + @android.annotation.SystemApi + public static final String RECEIVE_DATA_ACTIVITY_CHANGE="android.permission.RECEIVE_DATA_ACTIVITY_CHANGE"; + /** Allows an application to receive emergency cell broadcast messages, + to record or display them to the user. +

Not for use by third-party applications. + @hide Pending API council approval + */ + @android.annotation.SystemApi + public static final String RECEIVE_EMERGENCY_BROADCAST="android.permission.RECEIVE_EMERGENCY_BROADCAST"; + /** Allows an application to monitor incoming MMS messages. +

Protection level: dangerous + + */ + public static final String RECEIVE_MMS="android.permission.RECEIVE_MMS"; + /** Allows an application to receive SMS messages. +

Protection level: dangerous + + */ + public static final String RECEIVE_SMS="android.permission.RECEIVE_SMS"; + /** Allows an application to receive STK related commands. + @hide + */ + public static final String RECEIVE_STK_COMMANDS="android.permission.RECEIVE_STK_COMMANDS"; + /** Allows an application to receive WAP push messages. +

Protection level: dangerous + + */ + public static final String RECEIVE_WAP_PUSH="android.permission.RECEIVE_WAP_PUSH"; + /** @hide Allow system apps to receive broadcast + when a wifi network credential is changed. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String RECEIVE_WIFI_CREDENTIAL_CHANGE="android.permission.RECEIVE_WIFI_CREDENTIAL_CHANGE"; + /** Allows an application to record audio. +

Protection level: dangerous + + */ + public static final String RECORD_AUDIO="android.permission.RECORD_AUDIO"; + /** Allows an application to do certain operations needed for + interacting with the recovery (system update) system. + @hide + */ + @android.annotation.SystemApi + public static final String RECOVERY="android.permission.RECOVERY"; + /** Protects the ability to register any PhoneAccount with + PhoneAccount#CAPABILITY_CALL_PROVIDER. + @hide + */ + @android.annotation.SystemApi + public static final String REGISTER_CALL_PROVIDER="android.permission.REGISTER_CALL_PROVIDER"; + /** Protects the ability to register any PhoneAccount with + PhoneAccount#CAPABILITY_CONNECTION_MANAGER + @hide + */ + @android.annotation.SystemApi + public static final String REGISTER_CONNECTION_MANAGER="android.permission.REGISTER_CONNECTION_MANAGER"; + /** Protects the ability to register any PhoneAccount with + PhoneAccount#CAPABILITY_SIM_SUBSCRIPTION. This capability indicates that the PhoneAccount + corresponds to a device SIM. + @hide + */ + @android.annotation.SystemApi + public static final String REGISTER_SIM_SUBSCRIPTION="android.permission.REGISTER_SIM_SUBSCRIPTION"; + /** Allows registration for remote audio playback. @hide + */ + public static final String REMOTE_AUDIO_PLAYBACK="android.permission.REMOTE_AUDIO_PLAYBACK"; + /** Allows an application to remove DRM certificates + @hide This is not a third-party API (intended for system apps). + */ + @android.annotation.SystemApi + public static final String REMOVE_DRM_CERTIFICATES="android.permission.REMOVE_DRM_CERTIFICATES"; + /** @hide Allows an application to change to remove/kill tasks + */ + public static final String REMOVE_TASKS="android.permission.REMOVE_TASKS"; + /** Allows an application to change the Z-order of tasks. +

Protection level: normal + + */ + public static final String REORDER_TASKS="android.permission.REORDER_TASKS"; + /** Permission an application must hold in order to use + {@link android.provider.Settings#ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS}. + This is a normal permission: an app requesting it will always be granted the + permission, without the user needing to approve or see it. + */ + public static final String REQUEST_IGNORE_BATTERY_OPTIMIZATIONS="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS"; + /** Allows an application to request installing packages. Apps + targeting APIs greater than 22 must hold this permission in + order to use {@link android.content.Intent#ACTION_INSTALL_PACKAGE}. +

Protection level: normal + + */ + public static final String REQUEST_INSTALL_PACKAGES="android.permission.REQUEST_INSTALL_PACKAGES"; + /** Allows an app to reset fingerprint attempt counter. Reserved for the system. @hide + */ + public static final String RESET_FINGERPRINT_LOCKOUT="android.permission.RESET_FINGERPRINT_LOCKOUT"; + /** @deprecated The {@link android.app.ActivityManager#restartPackage} + API is no longer supported. + */ + @Deprecated + public static final String RESTART_PACKAGES="android.permission.RESTART_PACKAGES"; + /** @hide Allows an application to retrieve the content of the active window + An active window is the window that has fired an accessibility event. + */ + @android.annotation.SystemApi + public static final String RETRIEVE_WINDOW_CONTENT="android.permission.RETRIEVE_WINDOW_CONTENT"; + /** @hide Allows an application to retrieve the window token from the accessibility manager. + */ + public static final String RETRIEVE_WINDOW_TOKEN="android.permission.RETRIEVE_WINDOW_TOKEN"; + /** Allows an application to revoke specific permissions. + @hide + + */ + @android.annotation.SystemApi + public static final String REVOKE_RUNTIME_PERMISSIONS="android.permission.REVOKE_RUNTIME_PERMISSIONS"; + /** Allows applications to act as network scorers. @hide + */ + @android.annotation.SystemApi + public static final String SCORE_NETWORKS="android.permission.SCORE_NETWORKS"; + /** Allows an application (Phone) to send a request to other applications + to handle the respond-via-message action during incoming calls. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String SEND_RESPOND_VIA_MESSAGE="android.permission.SEND_RESPOND_VIA_MESSAGE"; + /** Allows an application to send SMS messages. +

Protection level: dangerous + + */ + public static final String SEND_SMS="android.permission.SEND_SMS"; + /** Allows applications to access serial ports via the SerialManager. + @hide + */ + @android.annotation.SystemApi + public static final String SERIAL_PORT="android.permission.SERIAL_PORT"; + /** Allows an application to watch and control how activities are + started globally in the system. Only for is in debugging + (usually the monkey command). +

Not for use by third-party applications. + @hide + + */ + @android.annotation.SystemApi + public static final String SET_ACTIVITY_WATCHER="android.permission.SET_ACTIVITY_WATCHER"; + /** Allows an application to broadcast an Intent to set an alarm for the user. +

Protection level: normal + + */ + public static final String SET_ALARM="com.android.alarm.permission.SET_ALARM"; + /** Allows an application to control whether activities are immediately + finished when put in the background. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String SET_ALWAYS_FINISH="android.permission.SET_ALWAYS_FINISH"; + /** Modify the global animation scaling factor. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String SET_ANIMATION_SCALE="android.permission.SET_ANIMATION_SCALE"; + /** Configure an application for debugging. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String SET_DEBUG_APP="android.permission.SET_DEBUG_APP"; + /** Allows low-level access to setting input device calibration. +

Not for use by normal applications. + @hide + */ + public static final String SET_INPUT_CALIBRATION="android.permission.SET_INPUT_CALIBRATION"; + /** Allows low-level access to setting the keyboard layout. +

Not for use by third-party applications. + @hide + */ + public static final String SET_KEYBOARD_LAYOUT="android.permission.SET_KEYBOARD_LAYOUT"; + /** Allows low-level access to setting the orientation (actually + rotation) of the screen. +

Not for use by third-party applications. + @hide + + */ + @android.annotation.SystemApi + public static final String SET_ORIENTATION="android.permission.SET_ORIENTATION"; + /** Allows low-level access to setting the pointer speed. +

Not for use by third-party applications. + @hide + + */ + @android.annotation.SystemApi + public static final String SET_POINTER_SPEED="android.permission.SET_POINTER_SPEED"; + /** @deprecated No longer useful, see + {@link android.content.pm.PackageManager#addPackageToPreferred} + for details. + */ + @Deprecated + public static final String SET_PREFERRED_APPLICATIONS="android.permission.SET_PREFERRED_APPLICATIONS"; + /** Allows an application to set the maximum number of (not needed) + application processes that can be running. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String SET_PROCESS_LIMIT="android.permission.SET_PROCESS_LIMIT"; + /** @hide Change the screen compatibility mode of applications + */ + @android.annotation.SystemApi + public static final String SET_SCREEN_COMPATIBILITY="android.permission.SET_SCREEN_COMPATIBILITY"; + /** Allows applications to set the system time. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String SET_TIME="android.permission.SET_TIME"; + /** Allows applications to set the system time zone. +

Protection level: normal + + */ + public static final String SET_TIME_ZONE="android.permission.SET_TIME_ZONE"; + /** Allows applications to set the wallpaper. +

Protection level: normal + + */ + public static final String SET_WALLPAPER="android.permission.SET_WALLPAPER"; + /** Allows applications to set a live wallpaper. + @hide XXX Change to signature once the picker is moved to its + own apk as Ghod Intended. + */ + @android.annotation.SystemApi + public static final String SET_WALLPAPER_COMPONENT="android.permission.SET_WALLPAPER_COMPONENT"; + /** Allows applications to set the wallpaper hints. +

Protection level: normal + + */ + public static final String SET_WALLPAPER_HINTS="android.permission.SET_WALLPAPER_HINTS"; + /** Allows an application to call the activity manager shutdown() API + to put the higher-level system there into a shutdown state. + @hide + */ + @android.annotation.SystemApi + public static final String SHUTDOWN="android.permission.SHUTDOWN"; + /** Allow an application to request that a signal be sent to all persistent processes. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String SIGNAL_PERSISTENT_PROCESSES="android.permission.SIGNAL_PERSISTENT_PROCESSES"; + /** Allows an application to start any activity, regardless of permission + protection or exported state. + @hide + */ + public static final String START_ANY_ACTIVITY="android.permission.START_ANY_ACTIVITY"; + /** Allows an application to start a task from a ActivityManager#RecentTaskInfo. + @hide + */ + public static final String START_TASKS_FROM_RECENTS="android.permission.START_TASKS_FROM_RECENTS"; + /** Allows an application to open, close, or disable the status bar + and its icons. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String STATUS_BAR="android.permission.STATUS_BAR"; + /** Allows an application to be the status bar. Currently used only by SystemUI.apk + @hide + */ + public static final String STATUS_BAR_SERVICE="android.permission.STATUS_BAR_SERVICE"; + /** Allows an application to tell the activity manager to temporarily + stop application switches, putting it into a special mode that + prevents applications from immediately switching away from some + critical UI such as the home screen. + @hide + */ + @android.annotation.SystemApi + public static final String STOP_APP_SWITCHES="android.permission.STOP_APP_SWITCHES"; + /** @hide We need to keep this around for backwards compatibility + */ + public static final String SUBSCRIBED_FEEDS_READ="android.permission.SUBSCRIBED_FEEDS_READ"; + /** @hide We need to keep this around for backwards compatibility + */ + public static final String SUBSCRIBED_FEEDS_WRITE="android.permission.SUBSCRIBED_FEEDS_WRITE"; + /** Allows an application to open windows using the type + {@link android.view.WindowManager.LayoutParams#TYPE_SYSTEM_ALERT}, + shown on top of all other applications. Very few applications + should use this permission; these windows are intended for + system-level interaction with the user. + */ + public static final String SYSTEM_ALERT_WINDOW="android.permission.SYSTEM_ALERT_WINDOW"; + /** Allows an application to query tablet mode state and monitor changes + in it. +

Not for use by third-party applications. + @hide + */ + public static final String TABLET_MODE="android.permission.TABLET_MODE"; + /** @hide Allows an application to temporary enable accessibility on the device. + */ + public static final String TEMPORARY_ENABLE_ACCESSIBILITY="android.permission.TEMPORARY_ENABLE_ACCESSIBILITY"; + /** Allows using the device's IR transmitter, if available. +

Protection level: normal + + */ + public static final String TRANSMIT_IR="android.permission.TRANSMIT_IR"; + /** Allows an application to listen to trust changes. Only allowed for system processes. + @hide + */ + public static final String TRUST_LISTENER="android.permission.TRUST_LISTENER"; + /** Allows TvInputService to access underlying TV input hardware such as + built-in tuners and HDMI-in's. + @hide This should only be used by OEM's TvInputService's. + + */ + @android.annotation.SystemApi + public static final String TV_INPUT_HARDWARE="android.permission.TV_INPUT_HARDWARE"; + /** Allows an application to uninstall a shortcut in Launcher. +

Protection level: normal + + */ + public static final String UNINSTALL_SHORTCUT="com.android.launcher.permission.UNINSTALL_SHORTCUT"; + /** Allows an application to update application operation statistics. Not for + use by third party apps. @hide + */ + @android.annotation.SystemApi + public static final String UPDATE_APP_OPS_STATS="android.permission.UPDATE_APP_OPS_STATS"; + /** Allows an application to initiate configuration updates +

An application requesting this permission is responsible for + verifying the source and integrity of any update before passing + it off to the various individual installer components + @hide + */ + public static final String UPDATE_CONFIG="android.permission.UPDATE_CONFIG"; + /** Allows an application to update device statistics. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String UPDATE_DEVICE_STATS="android.permission.UPDATE_DEVICE_STATS"; + /** Allows an application to hold an UpdateLock, recommending that a headless + OTA reboot *not* occur while the lock is held. + @hide + */ + @android.annotation.SystemApi + public static final String UPDATE_LOCK="android.permission.UPDATE_LOCK"; + /** Allows access to the PowerManager.userActivity function. +

Not for use by third-party applications. @hide + */ + @android.annotation.SystemApi + public static final String USER_ACTIVITY="android.permission.USER_ACTIVITY"; + /** @hide We need to keep this around for backwards compatibility + */ + public static final String USE_CREDENTIALS="android.permission.USE_CREDENTIALS"; + /** Allows an app to use fingerprint hardware. +

Protection level: normal + + */ + public static final String USE_FINGERPRINT="android.permission.USE_FINGERPRINT"; + /** Allows an application to use SIP service. +

Protection level: dangerous + + */ + public static final String USE_SIP="android.permission.USE_SIP"; + /** Allows access to the vibrator. +

Protection level: normal + + */ + public static final String VIBRATE="android.permission.VIBRATE"; + /** Allows using PowerManager WakeLocks to keep processor from sleeping or screen + from dimming. +

Protection level: normal + + */ + public static final String WAKE_LOCK="android.permission.WAKE_LOCK"; + /** Allows applications to write the apn settings. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String WRITE_APN_SETTINGS="android.permission.WRITE_APN_SETTINGS"; + /** Allows an application to write the user's calendar data. +

Protection level: dangerous + + */ + public static final String WRITE_CALENDAR="android.permission.WRITE_CALENDAR"; + /** Allows an application to write (but not read) the user's + contacts data. +

Note: If your app uses the + {@link #WRITE_CONTACTS} permission and both your {@code + minSdkVersion} and {@code + targetSdkVersion} values are set to 15 or lower, the system implicitly + grants your app this permission. If you don't need this permission, be sure your {@code + targetSdkVersion} is 16 or higher.

+

Protection level: dangerous + + */ + public static final String WRITE_CALL_LOG="android.permission.WRITE_CALL_LOG"; + /** Allows an application to write the user's contacts data. +

Protection level: dangerous + + */ + public static final String WRITE_CONTACTS="android.permission.WRITE_CONTACTS"; + /** Allows applications to write dream settings, and start or stop dreaming. + @hide + */ + @android.annotation.SystemApi + public static final String WRITE_DREAM_STATE="android.permission.WRITE_DREAM_STATE"; + /** Allows an application to write to external storage. +

Note: If both your {@code + minSdkVersion} and {@code + targetSdkVersion} values are set to 3 or lower, the system implicitly + grants your app this permission. If you don't need this permission, be sure your {@code + targetSdkVersion} is 4 or higher. +

Starting in API level 19, this permission is not required to + read/write files in your application-specific directories returned by + {@link android.content.Context#getExternalFilesDir} and + {@link android.content.Context#getExternalCacheDir}. +

Protection level: dangerous + + */ + public static final String WRITE_EXTERNAL_STORAGE="android.permission.WRITE_EXTERNAL_STORAGE"; + /** Allows an application to modify the Google service map. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String WRITE_GSERVICES="android.permission.WRITE_GSERVICES"; + /** @hide We need to keep this around for backwards compatibility + */ + public static final String WRITE_HISTORY_BOOKMARKS="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"; + /** Allows an application to write to internal media storage + @hide + */ + @android.annotation.SystemApi + public static final String WRITE_MEDIA_STORAGE="android.permission.WRITE_MEDIA_STORAGE"; + /** @hide We need to keep this around for backwards compatibility + */ + public static final String WRITE_PROFILE="android.permission.WRITE_PROFILE"; + /** Allows an application to read or write the secure system settings. +

Not for use by third-party applications. + */ + @android.annotation.SystemApi + public static final String WRITE_SECURE_SETTINGS="android.permission.WRITE_SECURE_SETTINGS"; + /** Allows an application to read or write the system settings. +

Protection level: signature + + */ + public static final String WRITE_SETTINGS="android.permission.WRITE_SETTINGS"; + /** @hide We need to keep this around for backwards compatibility + */ + public static final String WRITE_SMS="android.permission.WRITE_SMS"; + /** @hide We need to keep this around for backwards compatibility + */ + public static final String WRITE_SOCIAL_STREAM="android.permission.WRITE_SOCIAL_STREAM"; + /** Allows applications to write the sync settings. +

Protection level: normal + + */ + public static final String WRITE_SYNC_SETTINGS="android.permission.WRITE_SYNC_SETTINGS"; + /** @hide We need to keep this around for backwards compatibility + */ + public static final String WRITE_USER_DICTIONARY="android.permission.WRITE_USER_DICTIONARY"; + /** Allows an application to modify and remove existing voicemails in the system +

Protection level: system|signature + + */ + public static final String WRITE_VOICEMAIL="com.android.voicemail.permission.WRITE_VOICEMAIL"; + } + public static final class permission_group { + /** Used for runtime permissions related to user's calendar. + */ + public static final String CALENDAR="android.permission-group.CALENDAR"; + /** Used for permissions that are associated with accessing + camera or capturing images/video from the device. + */ + public static final String CAMERA="android.permission-group.CAMERA"; + /** Used for runtime permissions related to user's contacts and profile. + */ + public static final String CONTACTS="android.permission-group.CONTACTS"; + /** Used for permissions that allow accessing the device location. + */ + public static final String LOCATION="android.permission-group.LOCATION"; + /** Used for permissions that are associated with accessing + microphone audio from the device. Note that phone calls also capture audio + but are in a separate (more visible) permission group. + */ + public static final String MICROPHONE="android.permission-group.MICROPHONE"; + /** Used for permissions that are associated telephony features. + */ + public static final String PHONE="android.permission-group.PHONE"; + /** Used for permissions that are associated with accessing + camera or capturing images/video from the device. + */ + public static final String SENSORS="android.permission-group.SENSORS"; + /** Used for runtime permissions related to user's SMS messages. + */ + public static final String SMS="android.permission-group.SMS"; + /** Used for runtime permissions related to the shared external storage. + */ + public static final String STORAGE="android.permission-group.STORAGE"; + } } diff --git a/src/api-impl/com/android/internal/R.java b/src/api-impl/com/android/internal/R.java index db3599b9..0a02c33d 100644 --- a/src/api-impl/com/android/internal/R.java +++ b/src/api-impl/com/android/internal/R.java @@ -8,55804 +8,65604 @@ package com.android.internal; public final class R { - public static final class anim { - public static final int accelerate_decelerate_interpolator = 0x010a0004; - /** - * Acceleration curve matching Flash's quadratic ease out function. - */ - public static final int accelerate_interpolator = 0x010a0005; - public static final int anticipate_interpolator = 0x010a0007; - public static final int anticipate_overshoot_interpolator = 0x010a0009; - public static final int app_starting_exit = 0x010a0011; - public static final int bounce_interpolator = 0x010a000a; - public static final int cycle_interpolator = 0x010a000c; - /** - * Acceleration curve matching Flash's quadratic ease in function. - */ - public static final int decelerate_interpolator = 0x010a0006; - public static final int dock_bottom_enter = 0x010a0014; - public static final int dock_bottom_exit = 0x010a0015; - public static final int dock_left_enter = 0x010a0016; - public static final int dock_left_exit = 0x010a0017; - public static final int dock_right_enter = 0x010a0018; - public static final int dock_right_exit = 0x010a0019; - public static final int dock_top_enter = 0x010a001a; - public static final int dock_top_exit = 0x010a001b; - public static final int fade_in = 0x010a0000; - public static final int fade_out = 0x010a0001; - public static final int linear_interpolator = 0x010a000b; - public static final int lock_screen_behind_enter = 0x010a0027; - public static final int lock_screen_wallpaper_behind_enter = 0x010a002a; - public static final int overshoot_interpolator = 0x010a0008; - public static final int push_down_in = 0x010a002d; - public static final int push_down_out = 0x010a002f; - public static final int push_up_in = 0x010a0031; - public static final int push_up_out = 0x010a0032; - public static final int rotation_animation_enter = 0x010a0037; - public static final int rotation_animation_jump_exit = 0x010a0038; - public static final int rotation_animation_xfade_exit = 0x010a0039; - public static final int screen_rotate_0_enter = 0x010a003a; - public static final int screen_rotate_0_exit = 0x010a003b; - public static final int screen_rotate_0_frame = 0x010a003c; - public static final int screen_rotate_180_enter = 0x010a003d; - public static final int screen_rotate_180_exit = 0x010a003e; - public static final int screen_rotate_180_frame = 0x010a003f; - public static final int screen_rotate_finish_enter = 0x010a0040; - public static final int screen_rotate_finish_exit = 0x010a0041; - public static final int screen_rotate_finish_frame = 0x010a0042; - public static final int screen_rotate_minus_90_enter = 0x010a0043; - public static final int screen_rotate_minus_90_exit = 0x010a0044; - public static final int screen_rotate_minus_90_frame = 0x010a0045; - public static final int screen_rotate_plus_90_enter = 0x010a0046; - public static final int screen_rotate_plus_90_exit = 0x010a0047; - public static final int screen_rotate_plus_90_frame = 0x010a0048; - public static final int screen_rotate_start_enter = 0x010a0049; - public static final int screen_rotate_start_exit = 0x010a004a; - public static final int screen_rotate_start_frame = 0x010a004b; - public static final int screen_user_enter = 0x010a004c; - public static final int screen_user_exit = 0x010a004d; - public static final int slide_in_child_bottom = 0x010a0053; - public static final int slide_in_left = 0x010a0002; - public static final int slide_in_right = 0x010a0054; - public static final int slide_out_left = 0x010a0057; - public static final int slide_out_right = 0x010a0003; - public static final int window_move_from_decor = 0x010a006d; - } - public static final class animator { - /** - * A simple fade-in animation. - */ - public static final int fade_in = 0x010b0000; - /** - * A simple fade-out animation. - */ - public static final int fade_out = 0x010b0001; - } - public static final class array { - /** - This string array should be overridden by the manufacture to present a list of carrier-id,locale. The wifi regulatory domain is extracted from the locale information. This is used at startup to set system defaults by checking the system property ro.carrier for the carrier-id and searching through this array - An Array of [[Carrier-ID] - [default-locale]] - */ - public static final int carrier_properties = 0x01070034; - /** - Various locale-specific string resources for Contacts - various string resources for Contacts - */ - public static final int common_nicknames = 0x01070032; - /** - Array of output values for button backlight corresponding to the LUX values - in the config_autoBrightnessLevels array. This array should have size one greater - than the size of the config_autoBrightnessLevels array. - The brightness values must be between 0 and 255 and be non-decreasing. - This must be overridden in platform specific overlays - */ - public static final int config_autoBrightnessButtonBacklightValues = 0x01070021; - /** - Array of output values for keyboard backlight corresponding to the LUX values - in the config_autoBrightnessLevels array. This array should have size one greater - than the size of the config_autoBrightnessLevels array. - The brightness values must be between 0 and 255 and be non-decreasing. - This must be overridden in platform specific overlays - */ - public static final int config_autoBrightnessKeyboardBacklightValues = 0x01070022; - /** - Array of output values for LCD backlight corresponding to the LUX values - in the config_autoBrightnessLevels array. This array should have size one greater - than the size of the config_autoBrightnessLevels array. - The brightness values must be between 0 and 255 and be non-decreasing. - This must be overridden in platform specific overlays - */ - public static final int config_autoBrightnessLcdBacklightValues = 0x01070020; - /** - Array of light sensor LUX values to define our levels for auto backlight brightness support. - The N entries of this array define N + 1 control points as follows: - (1-based arrays) - - Point 1: (0, value[1]): lux <= 0 - Point 2: (level[1], value[2]): 0 < lux <= level[1] - Point 3: (level[2], value[3]): level[2] < lux <= level[3] - ... - Point N+1: (level[N], value[N+1]): level[N] < lux - - The control points must be strictly increasing. Each control point - corresponds to an entry in the brightness backlight values arrays. - For example, if LUX == level[1] (first element of the levels array) - then the brightness will be determined by value[2] (second element - of the brightness values array). - - Spline interpolation is used to determine the auto-brightness - backlight values for LUX levels between these control points. - - Must be overridden in platform specific overlays - */ - public static final int config_autoBrightnessLevels = 0x0107001f; - /** - call barring MMI code from TS 22.030 Annex B - call barring MMI code from TS 22.030 Annex B - Indonesia AXIS does not support Call Barring service - and "333" is used for other purpose - call barring MMI code from TS 22.030 Annex B - Indonesia Hutchison does not support Call Barring service - and "333" is used for other purpose - */ - public static final int config_callBarringMMI = 0x0107002f; - /** - If the DUN connection for this CDMA device supports more than just DUN - traffic you should list them here. - If this device is not CDMA this is ignored. If this list is empty on - a DUN-requiring CDMA device, the DUN APN will just support just DUN. - */ - public static final int config_cdma_dun_supported_types = 0x01070016; - /** - Set of NetworkInfo.getType() that reflect data usage. - TYPE_MOBILE_IA - */ - public static final int config_data_usage_network_types = 0x0107000e; - /** - Vibrator pattern to be used as the default for notifications - that specify DEFAULT_VIBRATE. - - */ - public static final int config_defaultNotificationVibePattern = 0x01070029; - /** - The list of IMEs which should be disabled until used. - This function suppresses update notifications for these pre-installed apps. - We need to set this configuration carefully that they should not have functionarities - other than "IME" or "Spell Checker". In InputMethodManagerService, - the listed IMEs are disabled until used when all of the following conditions are met. - 1. Not selected as an enabled IME in the Settings - 2. Not selected as a spell checker in the Settings - 3. Installed - 4. A pre-installed IME - 5. Not enabled - And the disabled_until_used state for an IME is released by InputMethodManagerService - when the IME is selected as an enabled IME. - */ - public static final int config_disabledUntilUsedPreinstalledImes = 0x0107002b; - /** - * Vibrator pattern for a very short but reliable vibration for soft keyboard tap - */ - public static final int config_keyboardTapVibePattern = 0x0107001b; - /** - Package name(s) containing location provider support. - These packages can contain services implementing location providers, - such as the Geocode Provider, Network Location Provider, and - Fused Location Provider. They will each be searched for - service components implementing these providers. - It is strongly recommended that the packages explicitly named - below are on the system image, so that they will not map to - a 3rd party application. - The location framework also has support for installation - of new location providers at run-time. The new package does not - have to be explicitly listed here, however it must have a signature - that matches the signature of at least one package on this list. - - */ - public static final int config_locationProviderPackageNames = 0x01070023; - /** - * Vibrator pattern for feedback about a long screen/key press - */ - public static final int config_longPressVibePattern = 0x01070019; - /** - Array of integer pairs controlling the rate at which the master volume changes - in response to volume up and down key events. - The first integer of each pair is compared against the current master volume - (in range 0 to 100). - The last pair with first integer <= the current volume is chosen, - and the second integer of the pair indicates the amount to increase the master volume - when volume up is pressed. - default: always increase volume by 5% - */ - public static final int config_masterVolumeRamp = 0x0107000a; - /** - If the mobile hotspot feature requires provisioning, a package name and class name - can be provided to launch a supported application that provisions the devices. - - Example Usage: - - String[] appDetails = getStringArray(R.array.config_mobile_hotspot_provision_app); - Intent intent = new Intent(Intent.ACTION_MAIN); - intent.setClassName(appDetails[0], appDetails[1]); - startActivityForResult(intent, 0); - - public void onActivityResult(int requestCode, int resultCode, Intent intent) { - super.onActivityResult(requestCode, resultCode, intent); - if (requestCode == 0) { - if (resultCode == Activity.RESULT_OK) { - //Mobile hotspot provisioning successful - } else { - //Mobile hotspot provisioning failed - } - } - - See src/com/android/settings/TetherSettings.java for more details. - - The first element is the package name and the second element is the class name - of the provisioning app - - com.example.provisioning - com.example.provisioning.Activity - - */ - public static final int config_mobile_hotspot_provision_app = 0x01070014; - /** - Vibrator pattern to be used as the default for notifications - that do not specify vibration but vibrate anyway because the device - is in vibrate mode. - - */ - public static final int config_notificationFallbackVibePattern = 0x0107002a; - public static final int config_notificationScorers = 0x0107002c; - /** - Array of OEM specific USB mode override config. - OEM can override a certain USB mode depending on ro.bootmode. - Specify an array of below items to set override rule. - [bootmode]:[original USB mode]:[USB mode used] - */ - public static final int config_oemUsbModeOverride = 0x01070027; - /** - The list of ril radio technologies (see ServiceState.java) which only support - a single data connection at one time. This may change by carrier via - overlays (some don't support multiple pdp on UMTS). All unlisted radio - tech types support unlimited types (practically only 2-4 used). - EVDO_B - */ - public static final int config_onlySingleDcAllowed = 0x01070028; - /** - Don't use roaming icon for considered operators. - Can use mcc or mcc+mnc as item. For example, 302 or 21407. - If operators, 21404 and 21407, make roaming agreements, user of 21404 should not see - the roaming icon as using 21407 network. - To do this, add 21407 item to values-mcc214-mnc04/config.xml - Don't use roaming icon for considered operators - Don't use roaming icon for considered operators - Don't use roaming icon for considered operators - Don't use roaming icon for considered operators - Don't use roaming icon for considered operators - Don't use roaming icon for considered operators - Don't use roaming icon for considered operators - Don't use roaming icon for considered operators - Don't use roaming icon for considered operators - Don't use roaming icon for considered operators - Don't use roaming icon for considered operators - Don't use roaming icon for considered operators - Don't use roaming icon for considered operators - Don't use roaming icon for considered operators - */ - public static final int config_operatorConsideredNonRoaming = 0x0107002d; - /** - Array of ConnectivityManager.TYPE_xxxx constants for networks that may only - be controlled by systemOrSignature apps. - */ - public static final int config_protectedNetworks = 0x0107000c; - /** - * Vibrator pattern for feedback about booting with safe mode disabled - */ - public static final int config_safeModeDisabledVibePattern = 0x0107001c; - /** - * Vibrator pattern for feedback about booting with safe mode disabled - */ - public static final int config_safeModeEnabledVibePattern = 0x0107001d; - /** - Show roaming icon though same named operators. - Uses "startsWith" so you can use a leading substring like the mcc or - use the complete mcc+mnc string. - Though same mcc and same operator name, some operator want to roam. - user of 40485 should see the roaming icon as using 40483 network - though same Reliance network. - To do this, add 40483 item to values-mcc404-mnc85/config.xml - Show roaming icon though same named operators. - Show roaming icon though same named operators. - Show roaming icon though same named operators. - Show roaming icon though same named operators. - */ - public static final int config_sameNamedOperatorConsideredRoaming = 0x0107002e; - /** - List of paths to serial ports that are available to the serial manager. - for example, /dev/ttyUSB0 - - */ - public static final int config_serialPorts = 0x01070018; - /** - National language locking shift tables to enable for SMS encoding. - Decoding is always enabled. 3GPP TS 23.038 states that this feature - should not be enabled until a formal request is issued by the relevant - national regulatory body. Array elements are codes from the table above. - Example 1: devices sold in Turkey must include table 1 after the - Turkish Telecommunication Authority requires locking shift encoding - to be enabled (est. July 2012). (http://www.btk.gov.tr/eng/pdf/2009/BY-LAW_SMS.pdf) - See also: http://www.mobitech.com.tr/tr/ersanozturkblog_en/index.php?entry=entry090223-160014 - Example 2: devices sold in India should include tables 4 through 13 - to enable use of the new Release 9 tables for Indic languages. - */ - public static final int config_sms_enabled_locking_shift_tables = 0x01070026; - /** - National Language Identifier codes for the following two config items. - (from 3GPP TS 23.038 V9.1.1 Table 6.2.1.2.4.1): - 0 - reserved - 1 - Turkish - 2 - Spanish (single shift table only) - 3 - Portuguese - 4 - Bengali - 5 - Gujarati - 6 - Hindi - 7 - Kannada - 8 - Malayalam - 9 - Oriya - 10 - Punjabi - 11 - Tamil - 12 - Telugu - 13 - Urdu - 14+ - reserved - National language single shift tables to enable for SMS encoding. - Decoding is always enabled. 3GPP TS 23.038 states that this feature - should not be enabled until a formal request is issued by the relevant - national regulatory body. Array elements are codes from the table above. - Example 1: devices sold in Turkey must include table 1 to conform with - By-Law Number 27230. (http://www.btk.gov.tr/eng/pdf/2009/BY-LAW_SMS.pdf) - Example 2: devices sold in India should include tables 4 through 13 - to enable use of the new Release 9 tables for Indic languages. - National Language Identifier codes for the following two config items. - (from 3GPP TS 23.038 V9.1.1 Table 6.2.1.2.4.1): - 0 - reserved - 1 - Turkish - 2 - Spanish (single shift table only) - 3 - Portuguese - 4 - Bengali - 5 - Gujarati - 6 - Hindi - 7 - Kannada - 8 - Malayalam - 9 - Oriya - 10 - Punjabi - 11 - Tamil - 12 - Telugu - 13 - Urdu - 14+ - reserved - National language single shift tables to enable for SMS encoding. - Decoding is always enabled. 3GPP TS 23.038 states that this feature - should not be enabled until a formal request is issued by the relevant - national regulatory body. Array elements are codes from the table above. - Example 1: devices sold in Turkey must include table 1 to conform with - By-Law Number 27230. (http://www.btk.gov.tr/eng/pdf/2009/BY-LAW_SMS.pdf) - Example 2: devices sold in India should include tables 4 through 13 - to enable use of the new Release 9 tables for Indic languages. - */ - public static final int config_sms_enabled_single_shift_tables = 0x01070025; - /** - Do not translate. Defines the slots for the right-hand side icons. That is to say, the - icons in the status bar that are not notifications. - */ - public static final int config_statusBarIcons = 0x01070009; - /** - List of regexpressions describing the interface (if any) that represent tetherable - bluetooth interfaces. If the device doesn't want to support tethering over bluetooth this - should be empty. - */ - public static final int config_tether_bluetooth_regexs = 0x01070012; - /** - * Dhcp range (min, max) to use for tethering purposes - */ - public static final int config_tether_dhcp_range = 0x01070013; - /** - Array of ConnectivityManager.TYPE_xxxx values allowable for tethering - Common options are [1, 4] for TYPE_WIFI and TYPE_MOBILE_DUN or - Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int absListViewStyle = 0x0101006a; - /** - The event types this serivce would like to receive as specified in - {@link android.view.accessibility.AccessibilityEvent}. This setting - can be changed at runtime by calling - {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) - android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
typeViewClicked0x00000001 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_CLICKED} events.
typeViewLongClicked0x00000002 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_LONG_CLICKED} events.
typeViewSelected0x00000004 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_SELECTED} events.
typeViewFocused0x00000008 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_FOCUSED} events.
typeViewTextChanged0x00000010 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_TEXT_CHANGED} events.
typeWindowStateChanged0x00000020 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_WINDOW_STATE_CHANGED} events.
typeNotificationStateChanged0x00000040 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_NOTIFICATION_STATE_CHANGED} events.
typeViewHoverEnter0x00000080 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_HOVER_ENTER} events.
typeViewHoverExit0x00000100 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_HOVER_EXIT} events.
typeTouchExplorationGestureStart0x00000200 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_TOUCH_EXPLORATION_GESTURE_START} events.
typeTouchExplorationGestureEnd0x00000400 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_TOUCH_EXPLORATION_GESTURE_END} events.
typeWindowContentChanged0x00000800 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_WINDOW_CONTENT_CHANGED} events.
typeViewScrolled0x000001000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_SCROLLED} events.
typeViewTextSelectionChanged0x000002000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_TEXT_SELECTION_CHANGED} events.
typeAllMask0xffffffff Receives {@link android.view.accessibility.AccessibilityEvent#TYPES_ALL_MASK} i.e. all events.
- */ - public static final int accessibilityEventTypes = 0x01010380; - /** - The feedback types this serivce provides as specified in - {@link android.accessibilityservice.AccessibilityServiceInfo}. This setting - can be changed at runtime by calling - {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) - android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - -
ConstantValueDescription
feedbackSpoken0x00000001 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_SPOKEN} feedback.
feedbackHaptic0x00000002 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_HAPTIC} feedback.
feedbackAudible0x00000004 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_AUDIBLE} feedback.
feedbackVisual0x00000008 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_VISUAL} feedback.
feedbackGeneric0x00000010 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_GENERIC} feedback.
feedbackAllMask0xffffffff Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_ALL_MASK} feedback.
- */ - public static final int accessibilityFeedbackType = 0x01010382; - /** - Additional flags as specified in - {@link android.accessibilityservice.AccessibilityServiceInfo}. - This setting can be changed at runtime by calling - {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) - android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - -
ConstantValueDescription
flagDefault0x00000001 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#DEFAULT}
flagIncludeNotImportantViews0x00000002 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_INCLUDE_NOT_IMPORTANT_VIEWS}
flagRequestTouchExplorationMode0x00000004 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REQUEST_TOUCH_EXPLORATION_MODE}
flagRequestEnhancedWebAccessibility0x00000008 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REQUEST_ENHANCED_WEB_ACCESSIBILITY}
flagReportViewIds0x00000010 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REPORT_VIEW_IDS}
flagRequestFilterKeyEvents0x00000020 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REQUEST_FILTER_KEY_EVENTS}
- */ - public static final int accessibilityFlags = 0x01010384; - /** - The drawable for accessibility focused views. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int accessibilityFocusedDrawable = 0x01010421; - /** - Indicates to accessibility services whether the user should be notified when - this view changes. -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
none0 Accessibility services should not announce changes to this view.
polite1 Accessibility services should announce changes to this view.
assertive2 Accessibility services should interrupt ongoing speech to immediately - announce changes to this view.
- */ - public static final int accessibilityLiveRegion = 0x010103ee; - /** - A preferences.xml file for authenticator-specific settings. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int accountPreferences = 0x0101029f; - /** - The account type this authenticator handles. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int accountType = 0x0101028f; - /** - The action name to assign to the Intent, as per - {@link android.content.Intent#setAction Intent.setAction()}. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int action = 0x0101002d; - /** - Custom divider drawable to use for elements in the action bar. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarDivider = 0x0101039b; - /** - Custom item state list drawable background for action bar items. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarItemBackground = 0x0101039c; - /** - Size of the Action Bar, including the contextual - bar used to present Action Modes. -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - -
ConstantValueDescription
wrap_content0
- */ - public static final int actionBarSize = 0x010102eb; - /** - Reference to a style for the split Action Bar. This style - controls the split component that holds the menu/action - buttons. actionBarStyle is still used for the primary - bar. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarSplitStyle = 0x01010388; - /** - Reference to a style for the Action Bar -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarStyle = 0x010102ce; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarTabBarStyle = 0x010102f4; - /** - Default style for tabs within an action bar -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarTabStyle = 0x010102f3; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarTabTextStyle = 0x010102f5; - /** - Reference to a theme that should be used to inflate widgets - and layouts destined for the action bar. Most of the time - this will be a reference to the current theme, but when - the action bar has a significantly different contrast - profile than the rest of the activity the difference - can become important. If this is set to @null the current - theme will be used. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionBarWidgetTheme = 0x01010397; - /** - Default action button style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionButtonStyle = 0x010102d8; - /** - Default ActionBar dropdown style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionDropDownStyle = 0x010102d7; - /** - An optional layout to be used as an action view. - See {@link android.view.MenuItem#setActionView(android.view.View)} - for more info. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionLayout = 0x010102fb; - /** - TextAppearance style that will be applied to text that - appears within action menu items. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionMenuTextAppearance = 0x01010360; - /** - Color for text that appears within action menu items. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int actionMenuTextColor = 0x01010361; - /** - Background drawable to use for action mode UI -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeBackground = 0x010102db; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeCloseButtonStyle = 0x010102f7; - /** - Drawable to use for the close action mode button -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeCloseDrawable = 0x010102dc; - /** - Drawable to use for the Copy action button in Contextual Action Bar -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeCopyDrawable = 0x01010312; - /** - Drawable to use for the Cut action button in Contextual Action Bar -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeCutDrawable = 0x01010311; - /** - Drawable to use for the Paste action button in Contextual Action Bar -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModePasteDrawable = 0x01010313; - /** - PopupWindow style to use for action modes when showing as a window overlay. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModePopupWindowStyle = 0x01010409; - /** - Drawable to use for the Select all action button in Contextual Action Bar -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeSelectAllDrawable = 0x0101037e; - /** - Drawable to use for the Share action button in WebView selection action modes -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeShareDrawable = 0x01010406; - /** - Background drawable to use for action mode UI in the lower split bar -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeSplitBackground = 0x0101039d; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeStyle = 0x01010394; - /** - Drawable to use for the Web Search action button in WebView selection action modes -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionModeWebSearchDrawable = 0x01010408; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int actionOverflowButtonStyle = 0x010102f6; - /** - The name of an optional ActionProvider class to instantiate an action view - and perform operations such as default action for that menu item. - See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} - for more info. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int actionProviderClass = 0x01010389; - /** - The name of an optional View class to instantiate and use as an - action view. See {@link android.view.MenuItem#setActionView(android.view.View)} - for more info. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int actionViewClass = 0x010102fc; - /** - Drawable used as a background for activated items. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int activatedBackgroundIndicator = 0x010102fd; - /** - When closing the current activity, this is the animation that is - run on the next activity (which is entering the screen). -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int activityCloseEnterAnimation = 0x010100ba; - /** - When closing the current activity, this is the animation that is - run on the current activity (which is exiting the screen). -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int activityCloseExitAnimation = 0x010100bb; - /** - When opening a new activity, this is the animation that is - run on the next activity (which is entering the screen). -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int activityOpenEnterAnimation = 0x010100b8; - /** - When opening a new activity, this is the animation that is - run on the previous activity (which is exiting the screen). -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int activityOpenExitAnimation = 0x010100b9; - /** - Fully qualified class name of an activity that allows the user to manually - add printers to this print service. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int addPrintersActivity = 0x010103e6; - /** - Sets whether this ViewGroup's drawable states also include - its children's drawable states. This is used, for example, to - make a group appear to be focused when its child EditText or button - is focused. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int addStatesFromChildren = 0x010100f0; - /** - Set this to true if you want the ImageView to adjust its bounds - to preserve the aspect ratio of its drawable. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int adjustViewBounds = 0x0101011e; - /** - Fully qualified class name of an activity with advanced print options - specific to this print service. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int advancedPrintOptionsActivity = 0x010103f1; - /** -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int alertDialogCenterButtons = 0x010103fc; - /** - Icon drawable to use for alerts -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int alertDialogIcon = 0x01010355; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int alertDialogStyle = 0x0101005d; - /** - Theme to use for alert dialogs spawned from this theme. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int alertDialogTheme = 0x01010309; - /** - Alignment constants. -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
alignBounds0 Align the bounds of the children. - See {@link android.widget.GridLayout#ALIGN_BOUNDS}.
alignMargins1 Align the margins of the children. - See {@link android.widget.GridLayout#ALIGN_MARGINS}.
- */ - public static final int alignmentMode = 0x0101037a; - /** - Resource representing the term "All Contacts" (e.g. "All Friends" or - "All connections"). Optional (Default is "All Contacts"). -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int allContactsName = 0x010102cc; - /** - Whether to allow the application to participate in the backup - and restore infrastructure. If this attribute is set to false, - no backup or restore of the application will ever be performed, even by a - full-system backup that would otherwise cause all application data to be saved - via adb. The default value of this attribute is true. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int allowBackup = 0x01010280; - /** - Option to let applications specify that user data can/cannot be - cleared. This flag is turned on by default. - This attribute is usable only by applications - included in the system image. Third-party apps cannot use it. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int allowClearUserData = 0x01010005; - /** - Set to true to tell the SyncManager that this SyncAdapter supports - multiple simultaneous syncs for the same account type and authority. - Otherwise the SyncManager will be sure not to issue a start sync request - to this SyncAdapter if the SyncAdapter is already syncing another account. - Defaults to false. - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int allowParallelSyncs = 0x01010332; - /** - Indicates whether the drawer can be opened/closed by a single tap - on the handle. (If false, the user must drag or fling, or click - using the trackball, to open/close the drawer.) Default is true. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int allowSingleTap = 0x01010259; - /** - Specify that an activity can be moved out of a task it is in to - the task it has an affinity for when appropriate. Use with the - application tag (to supply a default for all activities in the - application), or with an activity tag (to supply a specific - setting for that component). - -

Normally when an application is started, it is associated with - the task of the activity that started it and stays there for its - entire lifetime. You can use the allowTaskReparenting feature to force an - activity to be re-parented to a different task when the task it is - in goes to the background. Typically this is used to cause the - activities of an application to move back to the main task associated - with that application. The activity is re-parented to the task - with the same {@link android.R.attr#taskAffinity} as it has. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int allowTaskReparenting = 0x01010204; - /** - alpha property of the view, as a value between 0 (completely transparent) and 1 - (completely opaque). -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int alpha = 0x0101031f; - /** - The alphabetic shortcut key. This is the shortcut when using a keyboard - with alphabetic keys. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int alphabeticShortcut = 0x010101e3; - /** - Defines whether the ViewGroup should always draw its children using their - drawing cache or not. The default value is true. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int alwaysDrawnWithCache = 0x010100ef; - /** - Specify whether an acitivty's task state should always be maintained - by the system, or if it is allowed to reset the task to its initial - state in certain situations. - -

Normally the system will reset a task (remove all activities from - the stack and reset the root activity) in certain situations when - the user re-selects that task from the home screen. Typically this - will be done if the user hasn't visited that task for a certain - amount of time, such as 30 minutes. - -

By setting this attribute, the user will always return to your - task in its last state, regardless of how they get there. This is - useful, for example, in an application like the web browser where there - is a lot of state (such as multiple open tabs) that the application - would not like to lose. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int alwaysRetainTaskState = 0x01010203; - /** - Angle of the gradient. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int angle = 0x010101a0; - /** - Defines whether to animate the current View when the ViewAnimation - is first displayed. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int animateFirstView = 0x010102d5; - /** - Defines whether changes in layout (caused by adding and removing items) should - cause a LayoutTransition to run. When this flag is set to true, a default - LayoutTransition object will be set on the ViewGroup container and default - animations will run when these layout changes occur. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int animateLayoutChanges = 0x010102f2; - /** - Indicates whether the drawer should be opened/closed with an animation - when the user clicks the handle. Default is true. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int animateOnClick = 0x0101025c; - /** - Animation to use on each child. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int animation = 0x010101cd; - /** - Defines whether layout animations should create a drawing cache for their - children. Enabling the animation cache consumes more memory and requires - a longer initialization but provides better performance. The animation - cache is enabled by default. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int animationCache = 0x010100ed; - /** - Sets how long a transition animation should run (in milliseconds) - when layout has changed. Only relevant if animation is turned on. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int animationDuration = 0x01010112; - /** - The order in which the animations will be started. -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
normal0 Animations are started in the natural order.
reverse1 Animations are started in the reverse order.
random2 Animations are started randomly.
- */ - public static final int animationOrder = 0x010101ce; - /** - @deprecated Not used by the framework. - Timeout between frames of animation in milliseconds - {@deprecated Not used by the framework.} -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - @Deprecated - public static final int animationResolution = 0x0101031a; - /** - Enables or disables antialiasing. Antialiasing can be used to smooth the - edges of a bitmap when rotated. Default value is false. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int antialias = 0x0101011a; - /** - Indicates whether the application can accommodate any screen - density. Older applications are assumed to not be able to, - new ones able to. You can explicitly supply your abilities - here. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int anyDensity = 0x0101026c; - /** - A drawable that can be rendered in Android's system UI for representing - the service. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int apduServiceBanner = 0x010103ed; - /** - Value is a string that specifies the Maps API Key to use. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int apiKey = 0x01010211; - /** - Name of the author of this component, e.g. Google. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int author = 0x010102b4; - /** - Specify the authorities under which this content provider can be - found. Multiple authorities may be supplied by separating them - with a semicolon. Authority names should use a Java-style naming - convention (such as com.google.provider.MyProvider) - in order to avoid conflicts. Typically this name is the same - as the class implementation describing the provider's data structure. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int authorities = 0x01010018; - /** - The view id of the AppWidget subview which should be auto-advanced. - by the widget's host. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int autoAdvanceViewId = 0x0101030f; - /** - Default AutoCompleteTextView style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int autoCompleteTextViewStyle = 0x0101006b; - /** - Controls whether links such as urls and email addresses are - automatically found and converted to clickable links. The default - value is "none", disabling this feature. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - -
ConstantValueDescription
none0x00 Match no patterns (default).
web0x01 Match Web URLs.
email0x02 Match email addresses.
phone0x04 Match phone numbers.
map0x08 Match map addresses.
all0x0f Match all patterns (equivalent to web|email|phone|map).
- */ - public static final int autoLink = 0x010100b0; - /** - Indicates if the drawable needs to be mirrored when its layout direction is - RTL (right-to-left). See - {@link android.graphics.drawable.Drawable#setAutoMirrored}. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int autoMirrored = 0x010103ea; - /** - When true, automatically start animating -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int autoStart = 0x010102b5; - /** - If set, specifies that this TextView has a textual input method - and automatically corrects some common spelling errors. - The default is "false". - {@deprecated Use inputType instead.} -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - @Deprecated - public static final int autoText = 0x0101016a; - /** - If provided and true, URLs entered in the search dialog while searching - within this activity would be detected and treated as URLs (show a 'go' button in the - keyboard and invoke the browser directly when user launches the URL instead of passing - the URL to the activity). If set to false any URLs entered are treated as - normal query text. - The default value is false. Optional attribute.. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int autoUrlDetect = 0x0101028c; - /** - A drawable to use as the background. This can be either a reference - to a full drawable resource (such as a PNG image, 9-patch, - XML state list description, etc), or a solid color such as "#ff000000" - (black). -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int background = 0x010100d4; - /** - Default background dim amount when a menu, dialog, or something similar pops up. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int backgroundDimAmount = 0x01010032; - /** - Control whether dimming behind the window is enabled. The default - theme does not set this value, meaning it is based on whether the - window is floating. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int backgroundDimEnabled = 0x0101021f; - /** - Specifies a background drawable for the bottom component of a split action bar. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int backgroundSplit = 0x0101038b; - /** - Specifies a background drawable for a second stacked row of the action bar. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int backgroundStacked = 0x0101038a; - /** - The name of the class subclassing BackupAgent to manage - backup and restore of the application's data on external storage. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int backupAgent = 0x0101027f; - /** - The offset of the baseline within this view. See {see android.view.View#getBaseline} - for details -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int baseline = 0x0101031c; - /** - If true, the image view will be baseline aligned with based on its - bottom edge. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int baselineAlignBottom = 0x01010122; - /** - When set to false, prevents the layout from aligning its children's - baselines. This attribute is particularly useful when the children - use different values for gravity. The default value is true. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int baselineAligned = 0x01010126; - /** - When a linear layout is part of another layout that is baseline - aligned, it can specify which of its children to baseline align to - (that is, which child TextView). -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int baselineAlignedChildIndex = 0x01010127; - /** - Style for buttons without an explicit border, often used in groups. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int borderlessButtonStyle = 0x0101032b; - /** - Amount of bottom padding inside the gradient shape. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int bottom = 0x010101b0; - /** -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int bottomBright = 0x010100cd; - /** -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int bottomDark = 0x010100c9; - /** - Radius of the bottom left corner. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int bottomLeftRadius = 0x010101ab; - /** -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int bottomMedium = 0x010100ce; - /** - Extra offset for the handle at the bottom of the SlidingDrawer. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int bottomOffset = 0x01010257; - /** - Radius of the bottom right corner. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int bottomRightRadius = 0x010101ac; - /** - The short title for the bread crumb of this item. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int breadCrumbShortTitle = 0x01010304; - /** - The title for the bread crumb of this item. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int breadCrumbTitle = 0x01010303; - /** - Determines the minimum type that getText() will return. - The default is "normal". - Note that EditText and LogTextBox always return Editable, - even if you specify something less powerful here. -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
normal0 Can return any CharSequence, possibly a - Spanned one if the source text was Spanned.
spannable1 Can only return Spannable.
editable2 Can only return Spannable and Editable.
- */ - public static final int bufferType = 0x0101014e; - /** - Drawable used for the button graphic (e.g. checkbox, radio button, etc). -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int button = 0x01010107; - /** - Style for buttons within button bars -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonBarButtonStyle = 0x0101032f; - /** - Style for button bars -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonBarStyle = 0x0101032e; - /** - Normal Button style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonStyle = 0x01010048; - /** - Button style to inset into an EditText. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonStyleInset = 0x0101004a; - /** - Small Button style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonStyleSmall = 0x01010049; - /** - ToggleButton style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int buttonStyleToggle = 0x0101004b; - /** - Indicates that this list will always be drawn on top of solid, single-color - opaque background. This allows the list to optimize drawing. -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int cacheColorHint = 0x01010101; - /** - Whether the calendar view is shown. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int calendarViewShown = 0x0101034c; - /** - The CalendarView style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int calendarViewStyle = 0x0101035d; - /** - Attribute whether the accessibility service wants to be able to request enhanced - web accessibility enhancements. For example, installing scripts to make app - content more accessible. -

- Required to allow setting the {@link android.accessibilityservice - #AccessibilityServiceInfo#FLAG_REQUEST_ENHANCED_WEB_ACCESSIBILITY} flag. -

- -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int canRequestEnhancedWebAccessibility = 0x010103d8; - /** - Attribute whether the accessibility service wants to be able to request to - filter key events. -

- Required to allow setting the {@link android.accessibilityservice - #AccessibilityServiceInfo#FLAG_REQUEST_FILTER_KEY_EVENTS} flag. -

- -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int canRequestFilterKeyEvents = 0x010103d9; - /** - Attribute whether the accessibility service wants to be able to request touch - exploration mode in which touched items are spoken aloud and the UI can be - explored via gestures. -

- Required to allow setting the {@link android.accessibilityservice - #AccessibilityServiceInfo#FLAG_REQUEST_TOUCH_EXPLORATION_MODE} flag. -

- -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int canRequestTouchExplorationMode = 0x010103d7; - /** - Attribute whether the accessibility service wants to be able to retrieve the - active window content. This setting cannot be changed at runtime. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int canRetrieveWindowContent = 0x01010385; - /** - A styled string, specifying the style to be used for showing - inline candidate text when composing with an input method. The - text itself will be ignored, but the style spans will be applied - to the candidate text as it is edited. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. - */ - public static final int candidatesTextStyleSpans = 0x01010230; - /** - If set, specifies that this TextView has a textual input method - and should automatically capitalize what the user types. - The default is "none". - {@deprecated Use inputType instead.} -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
none0 Don't automatically capitalize anything.
sentences1 Capitalize the first word of each sentence.
words2 Capitalize the first letter of every word.
characters3 Capitalize every character.
- */ - @Deprecated - public static final int capitalize = 0x01010169; - /** - The category attribute will be used by the Android platform to present - multiple applications that register ISO 7816 Application IDs (AIDs) in the - same category uniformly. - Additionally, when a category is specified, Android will ensure that either - all AIDs in this group are routed to this application, or none at all. - This attribute is optional. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int category = 0x010103e8; - /** -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int centerBright = 0x010100cc; - /** - Optional center color. For linear gradients, use centerX or centerY - to place the center color. -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int centerColor = 0x0101020b; - /** -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int centerDark = 0x010100c8; - /** -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int centerMedium = 0x010100cf; - /** - X coordinate of the origin of the gradient within the shape. -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int centerX = 0x010101a2; - /** - Y coordinate of the origin of the gradient within the shape. -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int centerY = 0x010101a3; - /** - Default style for CheckBoxPreference. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int checkBoxPreferenceStyle = 0x0101008f; - /** - Drawable used for the check mark graphic. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int checkMark = 0x01010108; - /** - Whether the item is capable of displaying a check mark. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int checkable = 0x010101e5; - /** - Whether the items are capable of displaying a check mark. -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
none0 The items are not checkable.
all1 The items are all checkable.
single2 The items are checkable and there will only be a single checked item in - this group.
- */ - public static final int checkableBehavior = 0x010101e0; - /** - Default Checkbox style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int checkboxStyle = 0x0101006c; - /** - Indicates the initial checked state of this button. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int checked = 0x01010106; - /** - The id of the child radio button that should be checked by default - within this radio group. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int checkedButton = 0x01010148; - /** - Default CheckedTextView style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int checkedTextViewStyle = 0x010103c8; - /** - Drawable or color that is used as a divider for children. (It will drawn - below and above child items.) The height of this will be the same as - the height of the normal list item divider. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int childDivider = 0x01010111; - /** - Indicator shown beside the child View. This can be a stateful Drawable. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int childIndicator = 0x0101010c; - /** - The end bound for a child's indicator. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int childIndicatorEnd = 0x010103d4; - /** - The left bound for a child's indicator. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int childIndicatorLeft = 0x0101010f; - /** - The right bound for a child's indicator. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int childIndicatorRight = 0x01010110; - /** - The start bound for a child's indicator. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int childIndicatorStart = 0x010103d3; - /** - Defines the choice behavior for the view. By default, lists do not have - any choice behavior. By setting the choiceMode to singleChoice, the list - allows up to one item to be in a chosen state. By setting the choiceMode to - multipleChoice, the list allows any number of items to be chosen. - Finally, by setting the choiceMode to multipleChoiceModal the list allows - any number of items to be chosen in a special selection mode. - The application will supply a - {@link android.widget.AbsListView.MultiChoiceModeListener} using - {@link android.widget.AbsListView#setMultiChoiceModeListener} to control the - selection mode. This uses the {@link android.view.ActionMode} API. -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
none0 Normal list that does not indicate choices.
singleChoice1 The list allows up to one choice.
multipleChoice2 The list allows multiple choices.
multipleChoiceModal3 The list allows multiple choices in a custom selection mode.
- */ - public static final int choiceMode = 0x0101012b; - /** - Specify whether an activity's task should be cleared when it - is re-launched from the home screen. As a result, every time the - user starts the task, they will be brought to its root activity, - regardless of whether they used BACK or HOME to last leave it. - This flag only applies to activities that - are used to start the root of a new task. - -

An example of the use of this flag would be for the case where - a user launches activity A from home, and from there goes to - activity B. They now press home, and then return to activity A. - Normally they would see activity B, since that is what they were - last doing in A's task. However, if A has set this flag to true, - then upon going to the background all of the tasks on top of it (B - in this case) are removed, so when the user next returns to A they - will restart at its original activity. - -

When this option is used in conjunction with - {@link android.R.attr#allowTaskReparenting}, the allowTaskReparenting trumps the - clear. That is, all activities above the root activity of the - task will be removed: those that have an affinity will be moved - to the task they are associated with, otherwise they will simply - be dropped as described here. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int clearTaskOnLaunch = 0x01010015; - /** - Defines whether this view reacts to click events. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int clickable = 0x010100e5; - /** - Defines whether a child is limited to draw inside of its bounds or not. - This is useful with animations that scale the size of the children to more - than 100% for instance. In such a case, this property should be set to false - to allow the children to draw outside of their bounds. The default value of - this property is true. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int clipChildren = 0x010100ea; - /** - The orientation for the clip. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - -
ConstantValueDescription
horizontal1 Clip the drawable horizontally.
vertical2 Clip the drawable vertically.
- */ - public static final int clipOrientation = 0x0101020a; - /** - Defines whether the ViewGroup will clip its drawing surface so as to exclude - the padding area. This property is set to true by default. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int clipToPadding = 0x010100eb; - /** - The unicode value or comma-separated values that this key outputs. -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int codes = 0x01010242; - /** - The zero-based index of the columns to collapse. The column indices - must be separated by a comma: 1, 2, 5. Illegal and duplicate - indices are ignored. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int collapseColumns = 0x0101014b; - /** - Solid color for the gradient shape. -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int color = 0x010101a5; - /** - Default highlight color for items that are - activated. (Activated meaning persistent selection.) -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int colorActivatedHighlight = 0x01010390; - /** - Color that matches (as closely as possible) the window background. -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int colorBackground = 0x01010031; - /** - This is a hint for a solid color that can be used for caching - rendered views. This should be the color of the background when - there is a solid background color; it should be null when the - background is a texture or translucent. When a device is able - to use accelerated drawing (thus setting state_accelerated), the - cache hint is ignored and always assumed to be transparent. -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int colorBackgroundCacheHint = 0x010102ab; - /** - Default highlight color for items that are - focused. (Focused meaning cursor-based selection.) -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int colorFocusedHighlight = 0x0101038f; - /** - Default color of foreground imagery. -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int colorForeground = 0x01010030; - /** - Default color of foreground imagery on an inverted background. -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int colorForegroundInverse = 0x01010206; - /** - Default highlight color for items that are long-pressed. -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int colorLongPressedHighlight = 0x0101038e; - /** - Default highlight color for items in multiple selection - mode. -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int colorMultiSelectHighlight = 0x01010391; - /** - Default highlight color for items that are pressed. -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int colorPressedHighlight = 0x0101038d; - /** - The maxmimum number of columns to create when automatically positioning children. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int columnCount = 0x01010377; - /** - Fraction of the animation duration used to delay the beginning of - the animation of each column. -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int columnDelay = 0x010101cf; - /** - When set to true, forces column boundaries to appear in the same order - as column indices. - The default is true. - See {@link android.widget.GridLayout#setColumnOrderPreserved(boolean)}. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int columnOrderPreserved = 0x01010378; - /** - Specifies the fixed width for each column. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int columnWidth = 0x01010117; - /** - Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}, - this is the new way to specify the largest screens an application is - compatible with. This attribute provides the maximum - "smallest screen width" (as per the -swNNNdp resource configuration) - that the application is designed for. If this value is smaller than - the "smallest screen width" of the device it is running on, the user - is offered to run it in a compatibility mode that emulates a - smaller screen and zooms it to fit the screen. Currently the compatibility mode only - emulates phone screens with a 320dp width, so compatibility mode is not applied if the - value for compatibleWidthLimitDp is larger than 320. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int compatibleWidthLimitDp = 0x01010365; - /** - Defines the hint displayed in the drop down menu. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int completionHint = 0x01010172; - /** - Defines the hint view displayed in the drop down menu. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int completionHintView = 0x01010173; - /** - Defines the number of characters that the user must type before - completion suggestions are displayed in a drop down menu. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int completionThreshold = 0x01010174; - /** - Specify one or more configuration changes that the activity will - handle itself. If not specified, the activity will be restarted - if any of these configuration changes happen in the system. Otherwise, - the activity will remain running and its - {@link android.app.Activity#onConfigurationChanged Activity.onConfigurationChanged} - method called with the new configuration. - -

Note that all of these configuration changes can impact the - resource values seen by the application, so you will generally need - to re-retrieve all resources (including view layouts, drawables, etc) - to correctly handle any configuration change. - -

These values must be kept in sync with those in - {@link android.content.pm.ActivityInfo} and - include/utils/ResourceTypes.h. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
mcc0x0001 The IMSI MCC has changed, that is a SIM has been detected and - updated the Mobile Country Code.
mnc0x0002 The IMSI MNC has changed, that is a SIM has been detected and - updated the Mobile Network Code.
locale0x0004 The locale has changed, that is the user has selected a new - language that text should be displayed in.
touchscreen0x0008 The touchscreen has changed. Should never normally happen.
keyboard0x0010 The keyboard type has changed, for example the user has plugged - in an external keyboard.
keyboardHidden0x0020 The keyboard or navigation accessibility has changed, for example - the user has slid the keyboard out to expose it. Note that - despite its name, this applied to any accessibility: keyboard - or navigation.
navigation0x0040 The navigation type has changed. Should never normally happen.
orientation0x0080 The screen orientation has changed, that is the user has - rotated the device.
screenLayout0x0100 The screen layout has changed. This might be caused by a - different display being activated.
uiMode0x0200 The global user interface mode has changed. For example, - going in or out of car mode, night mode changing, etc.
screenSize0x0400 The current available screen size has changed. If applications don't - target at least {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2} - then the activity will always handle this itself (the change - will not result in a restart). This represents a change in the - currently available size, so will change when the user switches - between landscape and portrait.
smallestScreenSize0x0800 The physical screen size has changed. If applications don't - target at least {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2} - then the activity will always handle this itself (the change - will not result in a restart). This represents a change in size - regardless of orientation, so will only change when the actual - physical screen size has changed such as switching to an external - display.
layoutDirection0x2000 The layout direction has changed. For example going from LTR to RTL.
fontScale0x40000000 The font scaling factor has changed, that is the user has - selected a new global font size.
- */ - public static final int configChanges = 0x0101001f; - /** - A class name in the AppWidget's package to be launched to configure. - If not supplied, then no activity will be launched. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int configure = 0x0101025d; - /** - If true, the drawable's reported internal size will remain - constant as the state changes; the size is the maximum of all - of the states. If false, the size will vary based on the - current state. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int constantSize = 0x01010196; - /** - Identifier for the child that represents the drawer's content. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int content = 0x0101025b; - /** - the authority of a content provider. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int contentAuthority = 0x01010290; - /** - Defines text that briefly describes content of the view. This property is used - primarily for accessibility. Since some views do not have textual - representation this attribute can be used for providing such. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int contentDescription = 0x01010273; - /** - If true, the image will be cropped to fit within its padding. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int cropToPadding = 0x01010123; - /** - Makes the cursor visible (the default) or invisible. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int cursorVisible = 0x01010152; - /** - Specifies a layout for custom navigation. Overrides navigationMode. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int customNavigationLayout = 0x010102d2; - /** - Account handles its own token storage and permissions. - Default to false - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int customTokens = 0x0101033b; - /** -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int cycles = 0x010101d4; - /** - Gap between dashes in the stroke. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int dashGap = 0x010101a7; - /** - Length of a dash in the stroke. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int dashWidth = 0x010101a6; - /** - The data URI to assign to the Intent, as per - {@link android.content.Intent#setData Intent.setData()}. -

Note: scheme and host name matching in the Android framework is - case-sensitive, unlike the formal RFC. As a result, - URIs here should always be normalized to use lower case letters - for these elements (as well as other proper Uri normalization).

-

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int data = 0x0101002e; - /** - The DatePicker style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int datePickerStyle = 0x0101035c; - /** - The text appearance for the calendar dates. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dateTextAppearance = 0x01010349; - /** - Flag indicating whether the application can be debugged, even when - running on a device that is running in user mode. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int debuggable = 0x0101000f; - /** - The default value for the preference, which will be set either if persistence - is off or persistence is on and the preference is not found in the persistent - storage. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

May be an integer value, such as "100". -

May be a boolean value, either "true" or "false". -

May be a floating point value, such as "1.2". - */ - public static final int defaultValue = 0x010101ed; - /** - Fraction of the animation duration used to delay the beginning of - the animation of each child. -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int delay = 0x010101cc; - /** - The key of another Preference that this Preference will depend on. If the other - Preference is not set or is off, this Preference will be disabled. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int dependency = 0x010101ec; - /** - Defines the relationship between the ViewGroup and its descendants - when looking for a View to take focus. -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
beforeDescendants0 The ViewGroup will get focus before any of its descendants.
afterDescendants1 The ViewGroup will get focus only if none of its descendants want it.
blocksDescendants2 The ViewGroup will block its descendants from receiving focus.
- */ - public static final int descendantFocusability = 0x010100f1; - /** - Descriptive text for the associated data. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int description = 0x01010020; - /** - Special option for window animations: if this window is on top - of a wallpaper, don't animate the wallpaper with it. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int detachWallpaper = 0x010102a6; - /** - Column in data table that contains details for this data. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int detailColumn = 0x010102a3; - /** - Flag indicating that detail should be built from SocialProvider. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int detailSocialSummary = 0x010102a4; - /** - Background that can be used behind parts of a UI that provide - details on data the user is selecting. For example, this is - the background element of PreferenceActivity's embedded - preference fragment. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int detailsElementBackground = 0x0101034e; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dial = 0x01010102; - /** - Window decor layout to use in dialog mode with custom titles -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dialogCustomTitleDecorLayout = 0x01010411; - /** - The icon for the dialog. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dialogIcon = 0x010101f4; - /** - A layout to be used as the content View for the dialog. By default, this shouldn't - be needed. If a custom DialogPreference is required, this should be set. For example, - the EditTextPreference uses a layout with an EditText as this attribute. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dialogLayout = 0x010101f7; - /** - The message in the dialog. If a dialogLayout is provided and contains - a TextView with ID android:id/message, this message will be placed in there. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int dialogMessage = 0x010101f3; - /** - Default style for DialogPreference. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dialogPreferenceStyle = 0x01010091; - /** - Theme to use for dialogs spawned from this theme. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dialogTheme = 0x01010308; - /** - The title in the dialog. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int dialogTitle = 0x010101f2; - /** - Window decor layout to use in dialog mode with title only -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dialogTitleDecorLayout = 0x01010412; - /** - Window decor layout to use in dialog mode with icons -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dialogTitleIconsDecorLayout = 0x01010410; - /** - If set, specifies that this TextView has a numeric input method - and that these specific characters are the ones that it will - accept. - If this is set, numeric is implied to be true. - The default is false. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int digits = 0x01010166; - /** - Direction of the animation in the grid. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - -
ConstantValueDescription
left_to_right0x0 Animates columns from left to right.
right_to_left0x1 Animates columns from right to left.
top_to_bottom0x0 Animates rows from top to bottom.
bottom_to_top0x2 Animates rows from bottom to top.
- */ - public static final int direction = 0x010101d1; - /** - Reference to an array resource that be used to announce the directions with targets around the circle. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int directionDescriptions = 0x010103a1; - /** - Priority of the rows and columns. When the priority is none, - both rows and columns have the same priority. When the priority is - column, the animations will be applied on the columns first. The same - goes for rows. -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
none0 Rows and columns are animated at the same time.
column1 Columns are animated first.
row2 Rows are animated first.
- */ - public static final int directionPriority = 0x010101d2; - /** - The state (true for on, or false for off) that causes dependents to be disabled. By default, - dependents will be disabled when this is unchecked, so the value of this preference is false. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int disableDependentsState = 0x010101f1; - /** - Default disabled alpha for widgets that set enabled/disabled alpha programmatically. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int disabledAlpha = 0x01010033; - /** - Options affecting how the action bar is displayed. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - -
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
- */ - public static final int displayOptions = 0x010102d0; - /** - Enables or disables dithering of the bitmap if the bitmap does not have the - same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with - an RGB 565 screen). -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int dither = 0x0101011c; - /** - Drawable or color to draw between list items. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int divider = 0x01010129; - /** - Height of the divider. Will use the intrinsic height of the divider if this - is not specified. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int dividerHeight = 0x0101012a; - /** - Drawable to use for generic horizontal dividers. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dividerHorizontal = 0x0101032c; - /** - Size of padding on either end of a divider. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int dividerPadding = 0x0101032a; - /** - Drawable to use for generic vertical dividers. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dividerVertical = 0x0101030a; - /** - When set to true, the selector will be drawn over the selected item. - Otherwise the selector is drawn behind the selected item. The default - value is false. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int drawSelectorOnTop = 0x010100fc; - /** - Reference to a drawable resource to use for the frame. If not - given, the drawable must be defined by the first child tag. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int drawable = 0x01010199; - /** - The drawable to be drawn below the text. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int drawableBottom = 0x0101016e; - /** - The drawable to be drawn to the end of the text. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int drawableEnd = 0x01010393; - /** - The drawable to be drawn to the left of the text. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int drawableLeft = 0x0101016f; - /** - The padding between the drawables and the text. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int drawablePadding = 0x01010171; - /** - The drawable to be drawn to the right of the text. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int drawableRight = 0x01010170; - /** - The drawable to be drawn to the start of the text. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int drawableStart = 0x01010392; - /** - The drawable to be drawn above the text. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int drawableTop = 0x0101016d; - /** - Defines the quality of translucent drawing caches. This property is used - only when the drawing cache is enabled and translucent. The default value is auto. -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
auto0 Lets the framework decide what quality level should be used - for the drawing cache.
low1 Low quality. When set to low quality, the drawing cache uses a lower color - depth, thus losing precision in rendering gradients, but uses less memory.
high2 High quality. When set to high quality, the drawing cache uses a higher - color depth but uses more memory.
- */ - public static final int drawingCacheQuality = 0x010100e8; - /** - View to anchor the auto-complete dropdown to. If not specified, the text view itself - is used. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dropDownAnchor = 0x01010263; - /** - Specifies the basic height of the dropdown. Its value may - be a dimension (such as "12dip") for a constant height, - fill_parent or match_parent to fill the height of the - screen, or wrap_content to match the height of - the content of the drop down. -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
fill_parent-1 The dropdown should fit the height of the screen. - This constant is deprecated starting from API Level 8 and - is replaced by {@code match_parent}.
match_parent-1 The dropdown should fit the height of the screen. - Introduced in API Level 8.
wrap_content-2 The dropdown should fit the height of the content.
- */ - public static final int dropDownHeight = 0x01010283; - /** - Default style for drop down hints. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dropDownHintAppearance = 0x01010088; - /** - Amount of pixels by which the drop down should be offset horizontally. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int dropDownHorizontalOffset = 0x010102ac; - /** - Default style for drop down items. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dropDownItemStyle = 0x01010086; - /** - Default ListView style for drop downs. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dropDownListViewStyle = 0x0101006d; - /** - Selector in a drop down list. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int dropDownSelector = 0x01010175; - /** - Default dropdown Spinner style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int dropDownSpinnerStyle = 0x010102d6; - /** - Amount of pixels by which the drop down should be offset vertically. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int dropDownVerticalOffset = 0x010102ad; - /** - Specifies the basic width of the dropdown. Its value may - be a dimension (such as "12dip") for a constant width, - fill_parent or match_parent to match the width of the - screen, or wrap_content to match the width of - the anchored view. -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
fill_parent-1 The dropdown should fill the width of the screen. - This constant is deprecated starting from API Level 8 and - is replaced by {@code match_parent}.
match_parent-1 The dropdown should fit the width of the screen. - Introduced in API Level 8.
wrap_content-2 The dropdown should fit the width of its anchor.
- */ - public static final int dropDownWidth = 0x01010262; - /** - When this attribute is set to true, the view gets its drawable state - (focused, pressed, etc.) from its direct parent rather than from itself. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int duplicateParentState = 0x010100e9; - /** - Amount of time (in milliseconds) to display this frame. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int duration = 0x01010198; - /** - EditText background drawable. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int editTextBackground = 0x01010352; - /** - EditText text foreground color. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int editTextColor = 0x01010351; - /** - Default style for EditTextPreference. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int editTextPreferenceStyle = 0x01010092; - /** - Default EditText style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int editTextStyle = 0x0101006e; - /** - If set, specifies that this TextView has an input method. - It will be a textual one unless it has otherwise been specified. - For TextView, this is false by default. For EditText, it is - true by default. - {@deprecated Use inputType instead.} -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - @Deprecated - public static final int editable = 0x0101016b; - /** - Reference to an - {@link android.R.styleable#InputExtras <input-extras>} - XML resource containing additional data to - supply to an input method, which is private to the implementation - of the input method. This simply fills in - the {@link android.view.inputmethod.EditorInfo#extras - EditorInfo.extras} field when the input - method is connected. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int editorExtras = 0x01010224; - /** - Where to ellipsize text. -

Must be one of the following constant values.

- - - - - - - - - - -
ConstantValueDescription
none0
start1
middle2
end3
marquee4
- */ - public static final int ellipsize = 0x010100ab; - /** - Makes the TextView be exactly this many ems wide. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int ems = 0x01010158; - /** - Specifies whether the widget is enabled. The interpretation of the enabled state varies by subclass. - For example, a non-enabled EditText prevents the user from editing the contained text, and - a non-enabled Button prevents the user from tapping the button. - The appearance of enabled and non-enabled widgets may differ, if the drawables referenced - from evaluating state_enabled differ. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int enabled = 0x0101000e; - /** - End color of the gradient. -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int endColor = 0x0101019e; - /** - {@deprecated Use maxDate instead.} - The last year (inclusive), for example "2010". - {@deprecated Use maxDate instead.} - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - @Deprecated - public static final int endYear = 0x0101017d; - /** - Amount of time (in milliseconds) to fade in a new state drawable. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int enterFadeDuration = 0x0101030c; - /** - Reference to an array resource that will populate a list/adapter. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int entries = 0x010100b2; - /** - The array to find the value to save for a preference when an entry from - entries is selected. If a user clicks on the second item in entries, the - second item in this array will be saved to the preference. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int entryValues = 0x010101f8; - /** - Defines whether the overlay should intercept the motion events when a gesture - is recognized. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int eventsInterceptionEnabled = 0x0101027d; - /** - Indicates that an Activity should be excluded from the list of - recently launched activities. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int excludeFromRecents = 0x01010017; - /** - Amount of time (in milliseconds) to fade out an old state drawable. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int exitFadeDuration = 0x0101030d; - /** - The preferred left bound for an expandable list child's indicator. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int expandableListPreferredChildIndicatorLeft = 0x01010052; - /** - The preferred right bound for an expandable list child's indicator. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int expandableListPreferredChildIndicatorRight = 0x01010053; - /** - The preferred left padding for an expandable list item that is a child. - If this is not provided, it defaults to the expandableListPreferredItemPaddingLeft. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int expandableListPreferredChildPaddingLeft = 0x0101004f; - /** - The preferred left bound for an expandable list item's indicator. For a child-specific - indicator, use expandableListPreferredChildIndicatorLeft. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int expandableListPreferredItemIndicatorLeft = 0x01010050; - /** - The preferred right bound for an expandable list item's indicator. For a child-specific - indicator, use expandableListPreferredChildIndicatorRight. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int expandableListPreferredItemIndicatorRight = 0x01010051; - /** - The preferred left padding for an expandable list item (for child-specific layouts, - use expandableListPreferredChildPaddingLeft). This takes into account - the indicator that will be shown to next to the item. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int expandableListPreferredItemPaddingLeft = 0x0101004e; - /** - Default ExpandableListView style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int expandableListViewStyle = 0x0101006f; - /** - ExpandableListView with white background. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int expandableListViewWhiteStyle = 0x010102b6; - /** - Flag indicating whether the given application component is available - to other applications. If false, it can only be accessed by - applications with its same user id (which usually means only by - code in its own package). If true, it can be invoked by external - entities, though which ones can do so may be controlled through - permissions. The default value is false for activity, receiver, - and service components that do not specify any intent filters; it - is true for activity, receiver, and service components that do - have intent filters (implying they expect to be invoked by others - who do not know their particular component name) and for all - content providers. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int exported = 0x01010010; - /** - This drawable is a state list where the "activated" state - indicates active media routing. Non-activated indicates - that media is playing to the local device only. - @hide -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int externalRouteEnabledDrawable = 0x01010471; - /** - This is the amount by which to multiply the tension. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int extraTension = 0x0101026b; - /** - This is the amount of deceleration to add when easing in. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int factor = 0x010101d3; - /** - Duration, in milliseconds, of the fade out effect after the user is done - drawing a gesture. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fadeDuration = 0x01010278; - /** - Defines whether the gesture will automatically fade out after being recognized. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fadeEnabled = 0x0101027e; - /** - Time, in milliseconds, to wait before the gesture fades out after the user - is done drawing it. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fadeOffset = 0x01010277; - /** - Defines whether to fade out scrollbars when they are not in use. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fadeScrollbars = 0x010102aa; - /** - This attribute is deprecated and will be ignored as of - API level 14 ({@link android.os.Build.VERSION_CODES#ICE_CREAM_SANDWICH}). - Using fading edges may introduce noticeable performance - degradations and should be used only when required by the application's - visual design. To request fading edges with API level 14 and above, - use the android:requiresFadingEdge attribute instead. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - -
ConstantValueDescription
none0x00000000 No edge is faded.
horizontal0x00001000 Fades horizontal edges only.
vertical0x00002000 Fades vertical edges only.
- */ - public static final int fadingEdge = 0x010100df; - /** - Defines the length of the fading edges. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fadingEdgeLength = 0x010100e0; - /** -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
fade_in1 Fade will only fade appearing items in.
fade_out2 Fade will only fade disappearing items out.
fade_in_out3 Fade will fade appearing items in and disappearing items out.
- */ - public static final int fadingMode = 0x010103e1; - /** - When set to true, the list will always show the fast scroll interface. - This setting implies fastScrollEnabled. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fastScrollAlwaysVisible = 0x01010335; - /** - Enables the fast scroll thumb that can be dragged to quickly scroll through - the list. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fastScrollEnabled = 0x01010226; - /** - Position of the fast scroll index overlay window. -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
floating0
atThumb1
- */ - public static final int fastScrollOverlayPosition = 0x0101033a; - /** - Drawable to use as the fast scroll index preview window background - when shown on the left. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fastScrollPreviewBackgroundLeft = 0x01010337; - /** - Drawable to use as the fast scroll index preview window background - when shown on the right. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fastScrollPreviewBackgroundRight = 0x01010338; - /** - Text color for the fast scroll index overlay. Make sure it - plays nicely with fastScrollPreviewBackground[Left|Right]. -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fastScrollTextColor = 0x01010359; - /** - Drawable to use as the fast scroll thumb. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fastScrollThumbDrawable = 0x01010336; - /** - Drawable to use as the track for the fast scroll thumb. - This may be null. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fastScrollTrackDrawable = 0x01010339; - /** - When set to true, the animation transformation is applied after the animation is - over. The default value is false. If fillEnabled is not set to true and the - animation is not set on a View, fillAfter is assumed to be true. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fillAfter = 0x010101bd; - /** - When set to true or when fillEnabled is not set to true, the animation transformation - is applied before the animation has started. The default value is true. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fillBefore = 0x010101bc; - /** - When set to true, the value of fillBefore is taken into account. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fillEnabled = 0x0101024f; - /** - Defines whether the scrollview should stretch its content to fill the viewport. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fillViewport = 0x0101017a; - /** - Enables or disables bitmap filtering. Filtering is used when the bitmap is - shrunk or stretched to smooth its apperance. Default value is true. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int filter = 0x0101011b; - /** - Specifies whether to filter touches when the view's window is obscured by - another visible window. When set to true, the view will not receive touches - whenever a toast, dialog or other window appears above the view's window. - Refer to the {@link android.view.View} security documentation for more details. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int filterTouchesWhenObscured = 0x010102c4; - /** - Specify whether an activity should be finished when a "close system - windows" request has been made. This happens, for example, when - the home key is pressed, when the device is locked, when a system - dialog showing recent applications is displayed, etc. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int finishOnCloseSystemDialogs = 0x010102a7; - /** - Specify whether an activity should be finished when its task is - brought to the foreground by relaunching from the home screen. - -

If both this option and {@link android.R.attr#allowTaskReparenting} are - specified, the finish trumps the affinity: the affinity will be - ignored and the activity simply finished. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int finishOnTaskLaunch = 0x01010014; - /** - The first day of week according to {@link java.util.Calendar}. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int firstDayOfWeek = 0x0101033d; - /** - Boolean internal attribute to adjust view layout based on - system windows such as the status bar. - If true, adjusts the padding of this view to leave space for the system windows. - Will only take effect if this view is in a non-embedded activity. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fitsSystemWindows = 0x010100dd; - /** -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int flipInterval = 0x01010179; - /** - Boolean that controls whether a view can take focus. By default the user can not - move focus to a view; by setting this attribute to true the view is - allowed to take focus. This value does not impact the behavior of - directly calling {@link android.view.View#requestFocus}, which will - always request focus regardless of this view. It only impacts where - focus navigation will try to move focus. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int focusable = 0x010100da; - /** - Boolean that controls whether a view can take focus while in touch mode. - If this is true for a view, that view can gain focus when clicked on, and can keep - focus if another view is clicked on that doesn't have this attribute set to true. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int focusableInTouchMode = 0x010100db; - /** - The color for the dates of the focused month. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int focusedMonthDateColor = 0x01010343; - /** - Default font family. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fontFamily = 0x010103ac; - /** - When set to false, the ListView will not draw the divider before each footer view. - The default value is true. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int footerDividersEnabled = 0x0101022f; - /** - Defines the drawable to draw over the content. This can be used as an overlay. - The foreground drawable participates in the padding of the content if the gravity - is set to fill. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int foreground = 0x01010109; - /** - Defines the gravity to apply to the foreground drawable. The gravity defaults - to fill. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
- */ - public static final int foregroundGravity = 0x01010200; - /** - Format string: if specified, the Chronometer will display this - string, with the first "%s" replaced by the current timer value - in "MM:SS" or "H:MM:SS" form. - If no format string is specified, the Chronometer will simply display - "MM:SS" or "H:MM:SS". -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int format = 0x01010105; - /** - Specifies the formatting pattern used to show the time and/or date - in 12-hour mode. Please refer to {@link android.text.format.DateFormat} - for a complete description of accepted formatting patterns. - The default pattern is a locale-appropriate equivalent of "h:mm a". -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int format12Hour = 0x010103ca; - /** - Specifies the formatting pattern used to show the time and/or date - in 24-hour mode. Please refer to {@link android.text.format.DateFormat} - for a complete description of accepted formatting patterns. - The default pattern is a locale-appropriate equivalent of "H:mm". -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int format24Hour = 0x010103cb; - /** - The fragment that is displayed when the user selects this item. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fragment = 0x010102e3; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fragmentCloseEnterAnimation = 0x010102e7; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fragmentCloseExitAnimation = 0x010102e8; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fragmentFadeEnterAnimation = 0x010102e9; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fragmentFadeExitAnimation = 0x010102ea; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fragmentOpenEnterAnimation = 0x010102e5; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fragmentOpenExitAnimation = 0x010102e6; - /** - If set, the text view will include its current complete text - inside of its frozen icicle in addition to meta-data such as - the current cursor position. By default this is disabled; - it can be useful when the contents of a text view is not stored - in a persistent place such as a content provider. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int freezesText = 0x0101016c; - /** -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fromAlpha = 0x010101ca; - /** -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fromDegrees = 0x010101b3; - /** - The originating scene in this scene change. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int fromScene = 0x010103dd; - /** -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fromXDelta = 0x010101c6; - /** -

May be a floating point value, such as "1.2". -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fromXScale = 0x010101c2; - /** -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fromYDelta = 0x010101c8; - /** -

May be a floating point value, such as "1.2". -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int fromYScale = 0x010101c4; - /** -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int fullBright = 0x010100ca; - /** -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int fullDark = 0x010100c6; - /** - Flag indicating that an Instrumentation class should be run as a - functional test. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int functionalTest = 0x01010023; - /** - The preferred background for gallery items. This should be set - as the background of any Views you provide from the Adapter. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int galleryItemBackground = 0x0101004c; - /** - Default Gallery style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int galleryStyle = 0x01010070; - /** - Color used to draw a gesture. -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int gestureColor = 0x01010275; - /** - Default GestureOverlayView style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int gestureOverlayViewStyle = 0x01010400; - /** - Minimum curve angle a stroke must contain before it is recognized as a gesture. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int gestureStrokeAngleThreshold = 0x0101027c; - /** - Minimum length of a stroke before it is recognized as a gesture. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int gestureStrokeLengthThreshold = 0x0101027a; - /** - Squareness threshold of a stroke before it is recognized as a gesture. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int gestureStrokeSquarenessThreshold = 0x0101027b; - /** - Defines the type of strokes that define a gesture. -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
single0 A gesture is made of only one stroke.
multiple1 A gesture is made of multiple strokes.
- */ - public static final int gestureStrokeType = 0x01010279; - /** - Width of the stroke used to draw the gesture. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int gestureStrokeWidth = 0x01010274; - /** - The GLES driver version number needed by an application. - The higher 16 bits represent the major number and the lower 16 bits - represent the minor number. For example for GL 1.2 referring to - 0x00000102, the actual value should be set as 0x00010002. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int glEsVersion = 0x01010281; - /** - Radius of the gradient, used only with radial gradient. -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int gradientRadius = 0x010101a4; - /** - If true, the {@link android.content.Context#grantUriPermission - Context.grantUriPermission} or corresponding Intent flags can - be used to allow others to access specific URIs in the content - provider, even if they do not have an explicit read or write - permission. If you are supporting this feature, you must be - sure to call {@link android.content.Context#revokeUriPermission - Context.revokeUriPermission} when URIs are deleted from your - provider. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int grantUriPermissions = 0x0101001b; - /** - Specifies how an object should position its content, on both the X and Y axes, - within its own bounds. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
- */ - public static final int gravity = 0x010100af; - /** - Default GridView style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int gridViewStyle = 0x01010071; - /** - Indicator shown beside the group View. This can be a stateful Drawable. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int groupIndicator = 0x0101010b; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int hand_hour = 0x01010103; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int hand_minute = 0x01010104; - /** - Identifier for the child that represents the drawer's handle. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int handle = 0x0101025a; - /** - Flag indicating that an Instrumentation class wants to take care - of starting/stopping profiling itself, rather than relying on - the default behavior of profiling the complete time it is running. - This allows it to target profiling data at a specific set of - operations. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int handleProfiling = 0x01010022; - /** - Boolean that controls whether a view should have haptic feedback - enabled for events such as long presses. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int hapticFeedbackEnabled = 0x0101025e; - /** -

Flag indicating whether the application's rendering should be hardware - accelerated if possible. This flag is turned on by default for applications - that are targeting {@link android.os.Build.VERSION_CODES#ICE_CREAM_SANDWICH} - or later.

-

This flag can be set on the application and any activity declared - in the manifest. When enabled for the application, each activity is - automatically assumed to be hardware accelerated. This flag can be - overridden in the activity tags, either turning it off (if on for the - application) or on (if off for the application.)

-

When this flag is turned on for an activity (either directly or via - the application tag), every window created from the activity, including - the activity's own window, will be hardware accelerated, if possible.

-

Please refer to the documentation of - {@link android.view.WindowManager.LayoutParams#FLAG_HARDWARE_ACCELERATED} - for more information on how to control this flag programmatically.

-

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int hardwareAccelerated = 0x010102d3; - /** - Indicate whether this application contains code. If set to false, - there is no code associated with it and thus the system will not - try to load its code when launching components. The default is true - for normal behavior. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int hasCode = 0x0101000c; - /** - Default background for the menu header. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int headerBackground = 0x0101012f; - /** - When set to false, the ListView will not draw the divider after each header view. - The default value is true. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int headerDividersEnabled = 0x0101022e; - /** - Makes the TextView be exactly this many pixels tall. - You could get the same effect by specifying this number in the - layout parameters. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int height = 0x01010155; - /** - Hint text to display when the text is empty. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int hint = 0x01010150; - /** - Specifies a drawable to use for the 'home as up' indicator. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int homeAsUpIndicator = 0x0101030b; - /** - Specifies a layout to use for the "home" section of the action bar. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int homeLayout = 0x0101031d; - /** - Default horizontal divider between rows of menu items. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int horizontalDivider = 0x0101012d; - /** - Default horizontal gap between keys. -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int horizontalGap = 0x0101023f; - /** - Default HorizontalScrollView style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int horizontalScrollViewStyle = 0x01010353; - /** - Defines the default horizontal spacing between columns. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int horizontalSpacing = 0x01010114; - /** - Specify a URI authority host that is handled, as per - {@link android.content.IntentFilter#addDataAuthority - IntentFilter.addDataAuthority()}. -

Note: host name matching in the Android framework is - case-sensitive, unlike the formal RFC. As a result, - host names here should always use lower case letters.

-

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int host = 0x01010028; - /** - A Drawable resource providing a graphical representation of its - associated item. Use with the - application tag (to supply a default icon for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific icon for that component). It may also be - used with the intent-filter tag to supply an icon to show to the - user when an activity is being selected based on a particular Intent. - -

The given icon will be used to display to the user a graphical - representation of its associated component; for example, as the icon - for main activity that is displayed in the launcher. This must be - a reference to a Drawable resource containing the image definition. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int icon = 0x01010002; - /** - The icon to show in the popup preview. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int iconPreview = 0x01010249; - /** - The default state of the SearchView. If true, it will be iconified when not in - use and expanded when clicked. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int iconifiedByDefault = 0x010102fa; - /** - Supply an identifier name for this view, to later retrieve it - with {@link android.view.View#findViewById View.findViewById()} or - {@link android.app.Activity#findViewById Activity.findViewById()}. - This must be a - resource reference; typically you set this using the - @+ syntax to create a new ID resources. - For example: android:id="@+id/my_id" which - allows you to later retrieve the view - with findViewById(R.id.my_id). -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int id = 0x010100d0; - /** - Indicates what view should not be affected by gravity. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int ignoreGravity = 0x010101ff; - /** - The style resource to use for an ImageButton. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int imageButtonStyle = 0x01010072; - /** - The style resource to use for an ImageButton that is an image well. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int imageWellStyle = 0x01010073; - /** - Supply a value for - {@link android.view.inputmethod.EditorInfo#actionId EditorInfo.actionId} - used when an input method is connected to the text view. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int imeActionId = 0x01010266; - /** - Supply a value for - {@link android.view.inputmethod.EditorInfo#actionLabel EditorInfo.actionLabel} - used when an input method is connected to the text view. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int imeActionLabel = 0x01010265; - /** - Animation to use when showing the fullscreen extract UI after - it had previously been hidden. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int imeExtractEnterAnimation = 0x01010268; - /** - Animation to use when hiding the fullscreen extract UI after - it had previously been shown. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int imeExtractExitAnimation = 0x01010269; - /** - Background to use for entire input method when it is being - shown in fullscreen mode with the extract view, to ensure - that it completely covers the application. This allows, - for example, the candidate view to be hidden - while in fullscreen mode without having the application show through - behind it. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int imeFullscreenBackground = 0x0101022c; - /** - Additional features you can enable in an IME associated with an editor - to improve the integration with your application. The constants - here correspond to those defined by - {@link android.view.inputmethod.EditorInfo#imeOptions}. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
normal0x00000000 There are no special semantics associated with this editor.
actionUnspecified0x00000000 There is no specific action associated with this editor, let the - editor come up with its own if it can. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_NULL}.
actionNone0x00000001 This editor has no action associated with it. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_NONE}.
actionGo0x00000002 The action key performs a "go" - operation to take the user to the target of the text they typed. - Typically used, for example, when entering a URL. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_GO}.
actionSearch0x00000003 The action key performs a "search" - operation, taking the user to the results of searching for the text - the have typed (in whatever context is appropriate). - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEARCH}.
actionSend0x00000004 The action key performs a "send" - operation, delivering the text to its target. This is typically used - when composing a message. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEND}.
actionNext0x00000005 The action key performs a "next" - operation, taking the user to the next field that will accept text. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_NEXT}.
actionDone0x00000006 The action key performs a "done" - operation, closing the soft input method. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_DONE}.
actionPrevious0x00000007 The action key performs a "previous" - operation, taking the user to the previous field that will accept text. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_PREVIOUS}.
flagNoFullscreen0x2000000 Used to request that the IME never go - into fullscreen mode. Applications need to be aware that the flag is not - a guarantee, and not all IMEs will respect it. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}.

flagNavigatePrevious0x4000000 Like flagNavigateNext, but - specifies there is something interesting that a backward navigation - can focus on. If the user selects the IME's facility to backward - navigate, this will show up in the application as an actionPrevious - at {@link android.view.inputmethod.InputConnection#performEditorAction(int) - InputConnection.performEditorAction(int)}. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}.

flagNavigateNext0x8000000 Used to specify that there is something - interesting that a forward navigation can focus on. This is like using - actionNext, except allows the IME to be multiline (with - an enter key) as well as provide forward navigation. Note that some - IMEs may not be able to do this, especially when running on a small - screen where there is little space. In that case it does not need to - present a UI for this option. Like actionNext, if the - user selects the IME's facility to forward navigate, this will show up - in the application at - {@link android.view.inputmethod.InputConnection#performEditorAction(int) - InputConnection.performEditorAction(int)}. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NAVIGATE_NEXT}.

flagNoExtractUi0x10000000 Used to specify that the IME does not need - to show its extracted text UI. For input methods that may be fullscreen, - often when in landscape mode, this allows them to be smaller and let part - of the application be shown behind. Though there will likely be limited - access to the application available from the user, it can make the - experience of a (mostly) fullscreen IME less jarring. Note that when - this flag is specified the IME may not be set up to be able - to display text, so it should only be used in situations where this is - not needed. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_EXTRACT_UI}.

flagNoAccessoryAction0x20000000 Used in conjunction with a custom action, this indicates that the - action should not be available as an accessory button when the - input method is full-screen. - Note that by setting this flag, there can be cases where the action - is simply never available to the user. Setting this generally means - that you think showing text being edited is more important than the - action you have supplied. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ACCESSORY_ACTION}.

flagNoEnterAction0x40000000 Used in conjunction with a custom action, - this indicates that the action should not be available in-line as - a replacement for the "enter" key. Typically this is - because the action has such a significant impact or is not recoverable - enough that accidentally hitting it should be avoided, such as sending - a message. Note that {@link android.widget.TextView} will - automatically set this flag for you on multi-line text views. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ENTER_ACTION}.

flagForceAscii0x80000000 Used to request that the IME should be capable of inputting ASCII - characters. The intention of this flag is to ensure that the user - can type Roman alphabet characters in a {@link android.widget.TextView} - used for, typically, account ID or password input. It is expected that IMEs - normally are able to input ASCII even without being told so (such IMEs - already respect this flag in a sense), but there could be some cases they - aren't when, for instance, only non-ASCII input languagaes like Arabic, - Greek, Hebrew, Russian are enabled in the IME. Applications need to be - aware that the flag is not a guarantee, and not all IMEs will respect it. - However, it is strongly recommended for IME authors to respect this flag - especially when their IME could end up with a state that has only non-ASCII - input languages enabled. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_FORCE_ASCII}.

- */ - public static final int imeOptions = 0x01010264; - /** - The extra value of the subtype. This string can be any string and will be passed to - the IME when the framework calls the IME with the subtype. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int imeSubtypeExtraValue = 0x010102ee; - /** - The locale of the subtype. This string should be a locale (e.g. en_US, fr_FR...) - and will be passed to the IME when the framework calls the IME - with the subtype. This is also used by the framework to know the supported locales - of the IME. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int imeSubtypeLocale = 0x010102ec; - /** - The mode of the subtype. This string can be a mode (e.g. voice, keyboard...) and this - string will be passed to the IME when the framework calls the IME with the - subtype. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int imeSubtypeMode = 0x010102ed; - /** - Flag declaring this activity to be 'immersive'; immersive activities - should not be interrupted with other activities or notifications. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int immersive = 0x010102c0; - /** - Controls how this View is important for accessibility which is if it fires - accessibility events and if it is reported to accessibility services that - query the screen. Note: While not recommended, an accessibility service may - decide to ignore this attribute and operate on all views in the view tree. -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
auto0 The system determines whether the view is important for accessibility - default - (recommended).
yes1 The view is important for accessibility.
no2 The view is not important for accessibility.
noHideDescendants4 The view is not important for accessibility, nor are any of its descendant - views.
- */ - public static final int importantForAccessibility = 0x010103aa; - /** - Identifier for the animation to use when a view is shown. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int inAnimation = 0x01010177; - /** - Leave enough room for ascenders and descenders instead of - using the font ascent and descent strictly. (Normally true). -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int includeFontPadding = 0x0101015f; - /** - If provided and true, this searchable activity will be - included in any global lists of search targets. - The default value is false. Optional attribute.. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int includeInGlobalSearch = 0x0101026e; - /** - Allows to enable the indeterminate mode. In this mode the progress - bar plays an infinite looping animation. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int indeterminate = 0x01010139; - /** - Defines how the indeterminate mode should behave when the progress - reaches max. -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
repeat1 Progress starts over from 0.
cycle2 Progress keeps the current value and goes back to 0.
- */ - public static final int indeterminateBehavior = 0x0101013e; - /** - Drawable used for the indeterminate mode. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int indeterminateDrawable = 0x0101013b; - /** - Duration of the indeterminate animation. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int indeterminateDuration = 0x0101013d; - /** - Restricts to ONLY indeterminate mode (state-keeping progress mode will not work). -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int indeterminateOnly = 0x0101013a; - /** - Specifies a style resource to use for an indeterminate progress spinner. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int indeterminateProgressStyle = 0x01010318; - /** - The end bound for an item's indicator. To specify a right bound specific to children, - use childIndicatorEnd. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int indicatorEnd = 0x010103d2; - /** - The left bound for an item's indicator. To specify a left bound specific to children, - use childIndicatorLeft. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int indicatorLeft = 0x0101010d; - /** - The right bound for an item's indicator. To specify a right bound specific to children, - use childIndicatorRight. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int indicatorRight = 0x0101010e; - /** - The start bound for an item's indicator. To specify a start bound specific to children, - use childIndicatorStart. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int indicatorStart = 0x010103d1; - /** - Overrides the id of the inflated View with this value. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int inflatedId = 0x010100f3; - /** - Specify the order in which content providers hosted by a process - are instantiated when that process is created. Not needed unless - you have providers with dependencies between each other, to make - sure that they are created in the order needed by those dependencies. - The value is a simple integer, with higher numbers being - initialized first. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int initOrder = 0x0101001a; - /** - A resource id of a layout. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int initialKeyguardLayout = 0x010103c2; - /** - A resource id of a layout. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int initialLayout = 0x01010251; - /** - Inner radius of the ring. When defined, innerRadiusRatio is ignored. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int innerRadius = 0x0101025f; - /** - Inner radius of the ring expressed as a ratio of the ring's width. For instance, - if innerRadiusRatio=9, then the inner radius equals the ring's width divided by 9. - This value is ignored if innerRadius is defined. Default value is 9. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int innerRadiusRatio = 0x0101019b; - /** - If set, specifies that this TextView should use the specified - input method (specified by fully-qualified class name). - {@deprecated Use inputType instead.} -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - @Deprecated - public static final int inputMethod = 0x01010168; - /** - The type of data being placed in a text field, used to help an - input method decide how to let the user enter text. The constants - here correspond to those defined by - {@link android.text.InputType}. Generally you can select - a single value, though some can be combined together as - indicated. Setting this attribute to anything besides - none also implies that the text is editable. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
none0x00000000 There is no content type. The text is not editable.
text0x00000001 Just plain old text. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_NORMAL}.
textCapCharacters0x00001001 Can be combined with text and its variations to - request capitalization of all characters. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_CHARACTERS}.
textCapWords0x00002001 Can be combined with text and its variations to - request capitalization of the first character of every word. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_WORDS}.
textCapSentences0x00004001 Can be combined with text and its variations to - request capitalization of the first character of every sentence. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_SENTENCES}.
textAutoCorrect0x00008001 Can be combined with text and its variations to - request auto-correction of text being input. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_CORRECT}.
textAutoComplete0x00010001 Can be combined with text and its variations to - specify that this field will be doing its own auto-completion and - talking with the input method appropriately. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_COMPLETE}.
textMultiLine0x00020001 Can be combined with text and its variations to - allow multiple lines of text in the field. If this flag is not set, - the text field will be constrained to a single line. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_MULTI_LINE}.
textImeMultiLine0x00040001 Can be combined with text and its variations to - indicate that though the regular text view should not be multiple - lines, the IME should provide multiple lines if it can. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_IME_MULTI_LINE}.
textNoSuggestions0x00080001 Can be combined with text and its variations to - indicate that the IME should not show any - dictionary-based word suggestions. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_NO_SUGGESTIONS}.
textUri0x00000011 Text that will be used as a URI. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_URI}.
textEmailAddress0x00000021 Text that will be used as an e-mail address. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_ADDRESS}.
textEmailSubject0x00000031 Text that is being supplied as the subject of an e-mail. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_SUBJECT}.
textShortMessage0x00000041 Text that is the content of a short message. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_SHORT_MESSAGE}.
textLongMessage0x00000051 Text that is the content of a long message. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_LONG_MESSAGE}.
textPersonName0x00000061 Text that is the name of a person. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_PERSON_NAME}.
textPostalAddress0x00000071 Text that is being supplied as a postal mailing address. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_POSTAL_ADDRESS}.
textPassword0x00000081 Text that is a password. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_PASSWORD}.
textVisiblePassword0x00000091 Text that is a password that should be visible. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_VISIBLE_PASSWORD}.
textWebEditText0x000000a1 Text that is being supplied as text in a web form. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EDIT_TEXT}.
textFilter0x000000b1 Text that is filtering some other data. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_FILTER}.
textPhonetic0x000000c1 Text that is for phonetic pronunciation, such as a phonetic name - field in a contact entry. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_PHONETIC}.
textWebEmailAddress0x000000d1 Text that will be used as an e-mail address on a web form. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS}.
textWebPassword0x000000e1 Text that will be used as a password on a web form. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_PASSWORD}.
number0x00000002 A numeric only field. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_VARIATION_NORMAL}.
numberSigned0x00001002 Can be combined with number and its other options to - allow a signed number. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_FLAG_SIGNED}.
numberDecimal0x00002002 Can be combined with number and its other options to - allow a decimal (fractional) number. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_FLAG_DECIMAL}.
numberPassword0x00000012 A numeric password field. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_VARIATION_PASSWORD}.
phone0x00000003 For entering a phone number. Corresponds to - {@link android.text.InputType#TYPE_CLASS_PHONE}.
datetime0x00000004 For entering a date and time. Corresponds to - {@link android.text.InputType#TYPE_CLASS_DATETIME} | - {@link android.text.InputType#TYPE_DATETIME_VARIATION_NORMAL}.
date0x00000014 For entering a date. Corresponds to - {@link android.text.InputType#TYPE_CLASS_DATETIME} | - {@link android.text.InputType#TYPE_DATETIME_VARIATION_DATE}.
time0x00000024 For entering a time. Corresponds to - {@link android.text.InputType#TYPE_CLASS_DATETIME} | - {@link android.text.InputType#TYPE_DATETIME_VARIATION_TIME}.
- */ - public static final int inputType = 0x01010220; - /** -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int insetBottom = 0x010101ba; - /** -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int insetLeft = 0x010101b7; - /** -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int insetRight = 0x010101b8; - /** -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int insetTop = 0x010101b9; - /** - The default install location defined by an application. -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
auto0 Let the system decide ideal install location
internalOnly1 Explicitly request to be installed on internal phone storage - only.
preferExternal2 Prefer to be installed on SD card. There is no guarantee that - the system will honor this request. The application might end - up being installed on internal storage if external media - is unavailable or too full.
- */ - public static final int installLocation = 0x010102b7; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int interpolator = 0x01010141; - /** - Set to true to tell the SyncManager to automatically call setIsSyncable(..., ..., 1) - for the SyncAdapter instead of issuaing an initialization sync to the SyncAdapter. - Defaults to false. - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int isAlwaysSyncable = 0x01010333; - /** - Set to true if this subtype is ASCII capable. If the subtype is ASCII - capable, it should guarantee that the user can input ASCII characters with - this subtype. This is important because many password fields only allow - ASCII-characters. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int isAsciiCapable = 0x010103e9; - /** - Set true if the subtype is auxiliary. An auxiliary subtype won't be shown in the - input method selection list in the settings app. - InputMethodManager#switchToLastInputMethod will ignore auxiliary subtypes when it - chooses a target subtype. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int isAuxiliary = 0x0101037f; - /** - Set to true in all of the configurations for which this input - method should be considered an option as the default. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int isDefault = 0x01010221; - /** - Whether this rating bar is an indicator (and non-changeable by the user). -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int isIndicator = 0x01010147; - /** - Whether this is a modifier key such as Alt or Shift. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int isModifier = 0x01010246; - /** - Whether long-pressing on this key will make it repeat. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int isRepeatable = 0x01010248; - /** - Set this if the view will serve as a scrolling container, meaing - that it can be resized to shrink its overall window so that there - will be space for an input method. If not set, the default - value will be true if "scrollbars" has the vertical scrollbar - set, else it will be false. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int isScrollContainer = 0x0101024e; - /** - Whether this is a toggle key. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int isSticky = 0x01010247; - /** - If set to true, this service will run under a special process - that is isolated from the rest of the system. The only communication - with it is through the Service API (binding and starting). -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int isolatedProcess = 0x010103a9; - /** - Default background for each menu item. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int itemBackground = 0x01010130; - /** - Default disabled icon alpha for each menu item that shows an icon. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int itemIconDisabledAlpha = 0x01010131; - /** - Specifies padding that should be applied to the left and right sides of - system-provided items in the bar. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int itemPadding = 0x0101032d; - /** - Default appearance of menu item text. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int itemTextAppearance = 0x0101012c; - /** - Controls whether the view's window should keep the screen on - while visible. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int keepScreenOn = 0x01010216; - /** - The key to store the Preference value. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int key = 0x010101e8; - /** - Image for the key. This image needs to be a StateListDrawable, with the following - possible states: normal, pressed, checkable, checkable+pressed, checkable+checked, - checkable+checked+pressed. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int keyBackground = 0x01010233; - /** - Key edge flags. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - -
ConstantValueDescription
left1 Key is anchored to the left of the keyboard.
right2 Key is anchored to the right of the keyboard.
- */ - public static final int keyEdgeFlags = 0x01010245; - /** - Default height of a key, in pixels or percentage of display width. -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int keyHeight = 0x0101023e; - /** - The icon to display on the key instead of the label. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int keyIcon = 0x0101024c; - /** - The label to display on the key. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int keyLabel = 0x0101024b; - /** - The string of characters to output when this key is pressed. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int keyOutputText = 0x0101024a; - /** - Height of the key press feedback popup. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int keyPreviewHeight = 0x01010239; - /** - Layout resource for key press feedback. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int keyPreviewLayout = 0x01010237; - /** - Vertical offset of the key press feedback from the key. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int keyPreviewOffset = 0x01010238; - /** - Groups signing keys into a {@code KeySet} for easier reference in - other APIs. However, currently no APIs use this. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

May be an integer value, such as "100". -

May be a boolean value, either "true" or "false". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

May be a floating point value, such as "1.2". -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. - */ - public static final int keySet = 0x010103db; - /** - Color to use for the label in a key. -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int keyTextColor = 0x01010236; - /** - Size of the text for character keys. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int keyTextSize = 0x01010234; - /** - Default width of a key, in pixels or percentage of display width. -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int keyWidth = 0x0101023d; - /** - The key character map file resource. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int keyboardLayout = 0x010103ab; - /** - Mode of the keyboard. If the mode doesn't match the - requested keyboard mode, the row will be skipped. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int keyboardMode = 0x0101024d; - /** - Default KeyboardView style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int keyboardViewStyle = 0x0101044f; - /** - This enum provides the same keycode values as can be found in - {@link android.view.KeyEvent}. -

Must be one of the following constant values.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
KEYCODE_UNKNOWN0
KEYCODE_SOFT_LEFT1
KEYCODE_SOFT_RIGHT2
KEYCODE_HOME3
KEYCODE_BACK4
KEYCODE_CALL5
KEYCODE_ENDCALL6
KEYCODE_07
KEYCODE_18
KEYCODE_29
KEYCODE_310
KEYCODE_411
KEYCODE_512
KEYCODE_613
KEYCODE_714
KEYCODE_815
KEYCODE_916
KEYCODE_STAR17
KEYCODE_POUND18
KEYCODE_DPAD_UP19
KEYCODE_DPAD_DOWN20
KEYCODE_DPAD_LEFT21
KEYCODE_DPAD_RIGHT22
KEYCODE_DPAD_CENTER23
KEYCODE_VOLUME_UP24
KEYCODE_VOLUME_DOWN25
KEYCODE_POWER26
KEYCODE_CAMERA27
KEYCODE_CLEAR28
KEYCODE_A29
KEYCODE_B30
KEYCODE_C31
KEYCODE_D32
KEYCODE_E33
KEYCODE_F34
KEYCODE_G35
KEYCODE_H36
KEYCODE_I37
KEYCODE_J38
KEYCODE_K39
KEYCODE_L40
KEYCODE_M41
KEYCODE_N42
KEYCODE_O43
KEYCODE_P44
KEYCODE_Q45
KEYCODE_R46
KEYCODE_S47
KEYCODE_T48
KEYCODE_U49
KEYCODE_V50
KEYCODE_W51
KEYCODE_X52
KEYCODE_Y53
KEYCODE_Z54
KEYCODE_COMMA55
KEYCODE_PERIOD56
KEYCODE_ALT_LEFT57
KEYCODE_ALT_RIGHT58
KEYCODE_SHIFT_LEFT59
KEYCODE_SHIFT_RIGHT60
KEYCODE_TAB61
KEYCODE_SPACE62
KEYCODE_SYM63
KEYCODE_EXPLORER64
KEYCODE_ENVELOPE65
KEYCODE_ENTER66
KEYCODE_DEL67
KEYCODE_GRAVE68
KEYCODE_MINUS69
KEYCODE_EQUALS70
KEYCODE_LEFT_BRACKET71
KEYCODE_RIGHT_BRACKET72
KEYCODE_BACKSLASH73
KEYCODE_SEMICOLON74
KEYCODE_APOSTROPHE75
KEYCODE_SLASH76
KEYCODE_AT77
KEYCODE_NUM78
KEYCODE_HEADSETHOOK79
KEYCODE_FOCUS80
KEYCODE_PLUS81
KEYCODE_MENU82
KEYCODE_NOTIFICATION83
KEYCODE_SEARCH84
KEYCODE_MEDIA_PLAY_PAUSE85
KEYCODE_MEDIA_STOP86
KEYCODE_MEDIA_NEXT87
KEYCODE_MEDIA_PREVIOUS88
KEYCODE_MEDIA_REWIND89
KEYCODE_MEDIA_FAST_FORWARD90
KEYCODE_MUTE91
KEYCODE_PAGE_UP92
KEYCODE_PAGE_DOWN93
KEYCODE_PICTSYMBOLS94
KEYCODE_SWITCH_CHARSET95
KEYCODE_BUTTON_A96
KEYCODE_BUTTON_B97
KEYCODE_BUTTON_C98
KEYCODE_BUTTON_X99
KEYCODE_BUTTON_Y100
KEYCODE_BUTTON_Z101
KEYCODE_BUTTON_L1102
KEYCODE_BUTTON_R1103
KEYCODE_BUTTON_L2104
KEYCODE_BUTTON_R2105
KEYCODE_BUTTON_THUMBL106
KEYCODE_BUTTON_THUMBR107
KEYCODE_BUTTON_START108
KEYCODE_BUTTON_SELECT109
KEYCODE_BUTTON_MODE110
KEYCODE_ESCAPE111
KEYCODE_FORWARD_DEL112
KEYCODE_CTRL_LEFT113
KEYCODE_CTRL_RIGHT114
KEYCODE_CAPS_LOCK115
KEYCODE_SCROLL_LOCK116
KEYCODE_META_LEFT117
KEYCODE_META_RIGHT118
KEYCODE_FUNCTION119
KEYCODE_SYSRQ120
KEYCODE_BREAK121
KEYCODE_MOVE_HOME122
KEYCODE_MOVE_END123
KEYCODE_INSERT124
KEYCODE_FORWARD125
KEYCODE_MEDIA_PLAY126
KEYCODE_MEDIA_PAUSE127
KEYCODE_MEDIA_CLOSE128
KEYCODE_MEDIA_EJECT129
KEYCODE_MEDIA_RECORD130
KEYCODE_F1131
KEYCODE_F2132
KEYCODE_F3133
KEYCODE_F4134
KEYCODE_F5135
KEYCODE_F6136
KEYCODE_F7137
KEYCODE_F8138
KEYCODE_F9139
KEYCODE_F10140
KEYCODE_F11141
KEYCODE_F12142
KEYCODE_NUM_LOCK143
KEYCODE_NUMPAD_0144
KEYCODE_NUMPAD_1145
KEYCODE_NUMPAD_2146
KEYCODE_NUMPAD_3147
KEYCODE_NUMPAD_4148
KEYCODE_NUMPAD_5149
KEYCODE_NUMPAD_6150
KEYCODE_NUMPAD_7151
KEYCODE_NUMPAD_8152
KEYCODE_NUMPAD_9153
KEYCODE_NUMPAD_DIVIDE154
KEYCODE_NUMPAD_MULTIPLY155
KEYCODE_NUMPAD_SUBTRACT156
KEYCODE_NUMPAD_ADD157
KEYCODE_NUMPAD_DOT158
KEYCODE_NUMPAD_COMMA159
KEYCODE_NUMPAD_ENTER160
KEYCODE_NUMPAD_EQUALS161
KEYCODE_NUMPAD_LEFT_PAREN162
KEYCODE_NUMPAD_RIGHT_PAREN163
KEYCODE_VOLUME_MUTE164
KEYCODE_INFO165
KEYCODE_CHANNEL_UP166
KEYCODE_CHANNEL_DOWN167
KEYCODE_ZOOM_IN168
KEYCODE_ZOOM_OUT169
KEYCODE_TV170
KEYCODE_WINDOW171
KEYCODE_GUIDE172
KEYCODE_DVR173
KEYCODE_BOOKMARK174
KEYCODE_CAPTIONS175
KEYCODE_SETTINGS176
KEYCODE_TV_POWER177
KEYCODE_TV_INPUT178
KEYCODE_STB_POWER179
KEYCODE_STB_INPUT180
KEYCODE_AVR_POWER181
KEYCODE_AVR_INPUT182
KEYCODE_PROG_GRED183
KEYCODE_PROG_GREEN184
KEYCODE_PROG_YELLOW185
KEYCODE_PROG_BLUE186
KEYCODE_APP_SWITCH187
KEYCODE_BUTTON_1188
KEYCODE_BUTTON_2189
KEYCODE_BUTTON_3190
KEYCODE_BUTTON_4191
KEYCODE_BUTTON_5192
KEYCODE_BUTTON_6193
KEYCODE_BUTTON_7194
KEYCODE_BUTTON_8195
KEYCODE_BUTTON_9196
KEYCODE_BUTTON_10197
KEYCODE_BUTTON_11198
KEYCODE_BUTTON_12199
KEYCODE_BUTTON_13200
KEYCODE_BUTTON_14201
KEYCODE_BUTTON_15202
KEYCODE_BUTTON_16203
KEYCODE_LANGUAGE_SWITCH204
KEYCODE_MANNER_MODE205
KEYCODE_3D_MODE206
KEYCODE_CONTACTS207
KEYCODE_CALENDAR208
KEYCODE_MUSIC209
KEYCODE_CALCULATOR210
KEYCODE_ZENKAKU_HANKAKU211
KEYCODE_EISU212
KEYCODE_MUHENKAN213
KEYCODE_HENKAN214
KEYCODE_KATAKANA_HIRAGANA215
KEYCODE_YEN216
KEYCODE_RO217
KEYCODE_KANA218
KEYCODE_ASSIST219
KEYCODE_BRIGHTNESS_DOWN220
KEYCODE_BRIGHTNESS_UP221
KEYCODE_MEDIA_AUDIO_TRACK222
- */ - public static final int keycode = 0x010100c5; - /** - Whether the application in question should be terminated after its - settings have been restored during a full-system restore operation. - Single-package restore operations will never cause the application to - be shut down. Full-system restore operations typically only occur once, - when the phone is first set up. Third-party applications will not usually - need to use this attribute. - -

The default is true, which means that after the application - has finished processing its data during a full-system restore, it will be - terminated. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int killAfterRestore = 0x0101029c; - /** - A user-legible name for the given item. Use with the - application tag (to supply a default label for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific label for that component). It may also be - used with the intent-filter tag to supply a label to show to the - user when an activity is being selected based on a particular Intent. - -

The given label will be used wherever the user sees information - about its associated component; for example, as the name of a - main activity that is displayed in the launcher. You should - generally set this to a reference to a string resource, so that - it can be localized, however it is also allowed to supply a plain - string for quick and dirty programming. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. - */ - public static final int label = 0x01010001; - /** - Specifies the id of a view for which this view serves as a label for - accessibility purposes. For example, a TextView before an EditText in - the UI usually specifies what infomation is contained in the EditText. - Hence, the TextView is a label for the EditText. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int labelFor = 0x010103c6; - /** - Size of the text for custom keys with some text and no icon. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int labelTextSize = 0x01010235; - /** - Request that your application's processes be created with - a large Dalvik heap. This applies to all processes - created for the application. It only applies to the first - application loaded into a process; if using a sharedUserId - to allow multiple applications to use a process, they all must - use this option consistently or will get unpredictable results. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int largeHeap = 0x0101035a; - /** - Indicates whether the application supports larger screen form-factors. - A large screen is defined as a screen that is significantly larger - than a normal phone screen, and thus may require some special care - on the application's part to make good use of it. An example would - be a VGA normal density screen, though even larger screens - are certainly possible. An application that does not support - large screens will be placed as a postage stamp on such a - screen, so that it retains the dimensions it was originally - designed for. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int largeScreens = 0x01010286; - /** - Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}, - this is the new way to specify the screens an application is - compatible with. This attribute provides the maximum - "smallest screen width" (as per the -swNNNdp resource configuration) - that the application can work well on. If this value is smaller than - the "smallest screen width" of the device it is running on, the - application will be forced in to screen compatibility mode with - no way for the user to turn it off. Currently the compatibility mode only - emulates phone screens with a 320dp width, so compatibility mode is not applied if the - value for largestWidthLimitDp is larger than 320. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int largestWidthLimitDp = 0x01010366; - /** - Specify how an activity should be launched. See the - Tasks and Back - Stack document for important information on how these options impact - the behavior of your application. - -

If this attribute is not specified, standard launch - mode will be used. Note that the particular launch behavior can - be changed in some ways at runtime through the - {@link android.content.Intent} flags - {@link android.content.Intent#FLAG_ACTIVITY_SINGLE_TOP}, - {@link android.content.Intent#FLAG_ACTIVITY_NEW_TASK}, and - {@link android.content.Intent#FLAG_ACTIVITY_MULTIPLE_TASK}. -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
standard0 The default mode, which will usually create a new instance of - the activity when it is started, though this behavior may change - with the introduction of other options such as - {@link android.content.Intent#FLAG_ACTIVITY_NEW_TASK - Intent.FLAG_ACTIVITY_NEW_TASK}.
singleTop1 If, when starting the activity, there is already an - instance of the same activity class in the foreground that is - interacting with the user, then - re-use that instance. This existing instance will receive a call to - {@link android.app.Activity#onNewIntent Activity.onNewIntent()} with - the new Intent that is being started.
singleTask2 If, when starting the activity, there is already a task running - that starts with this activity, then instead of starting a new - instance the current task is brought to the front. The existing - instance will receive a call to {@link android.app.Activity#onNewIntent - Activity.onNewIntent()} - with the new Intent that is being started, and with the - {@link android.content.Intent#FLAG_ACTIVITY_BROUGHT_TO_FRONT - Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT} flag set. This is a superset - of the singleTop mode, where if there is already an instance - of the activity being started at the top of the stack, it will - receive the Intent as described there (without the - FLAG_ACTIVITY_BROUGHT_TO_FRONT flag set). See the - Tasks and Back - Stack document for more details about tasks.
singleInstance3 Only allow one instance of this activity to ever be - running. This activity gets a unique task with only itself running - in it; if it is ever launched again with the same Intent, then that - task will be brought forward and its - {@link android.app.Activity#onNewIntent Activity.onNewIntent()} - method called. If this - activity tries to start a new activity, that new activity will be - launched in a separate task. See the - Tasks and Back - Stack document for more details about tasks.
- */ - public static final int launchMode = 0x0101001d; - /** - Specifies the type of layer backing this view. The default value is none. - Refer to {@link android.view.View#setLayerType(int, android.graphics.Paint)} - for more information. -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
none0 Don't use a layer.
software1 Use a software layer. Refer to - {@link android.view.View#setLayerType(int, android.graphics.Paint)} for - more information.
hardware2 Use a hardware layer. Refer to - {@link android.view.View#setLayerType(int, android.graphics.Paint)} for - more information.
- */ - public static final int layerType = 0x01010354; - /** - Supply an identifier for the layout resource to inflate when the ViewStub - becomes visible or when forced to do so. The layout resource must be a - valid reference to a layout. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout = 0x010100f2; - /** - Defines the layout animation to use the first time the ViewGroup is laid out. - Layout animations can also be started manually after the first layout. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layoutAnimation = 0x010100ec; - /** - Defines the direction of layout drawing. This typically is associated with writing - direction of the language script used. The possible values are "ltr" for Left-to-Right, - "rtl" for Right-to-Left, "locale" and "inherit" from parent view. If there is nothing - to inherit, "locale" is used. "locale" falls back to "en-US". "ltr" is the direction - used in "en-US". The default for this attribute is "inherit". -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
ltr0 Left-to-Right
rtl1 Right-to-Left
inherit2 Inherit from parent
locale3 Locale
- */ - public static final int layoutDirection = 0x010103b2; - /** - Defines the layout mode of this ViewGroup. -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
clipBounds0 Use the children's clip bounds when laying out this container.
opticalBounds1 Use the children's optical bounds when laying out this container.
- */ - public static final int layoutMode = 0x010103da; - /** - Positions the bottom edge of this view above the given anchor view ID. - Accommodates bottom margin of this view and top margin of anchor view. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout_above = 0x01010184; - /** - Positions the baseline of this view on the baseline of the given anchor view ID. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout_alignBaseline = 0x01010186; - /** - Makes the bottom edge of this view match the bottom edge of the given anchor view ID. - Accommodates bottom margin. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout_alignBottom = 0x0101018a; - /** - Makes the end edge of this view match the end edge of the given anchor view ID. - Accommodates end margin. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout_alignEnd = 0x010103ba; - /** - Makes the left edge of this view match the left edge of the given anchor view ID. - Accommodates left margin. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout_alignLeft = 0x01010187; - /** - If true, makes the bottom edge of this view match the bottom edge of the parent. - Accommodates bottom margin. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_alignParentBottom = 0x0101018e; - /** - If true, makes the end edge of this view match the end edge of the parent. - Accommodates end margin. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_alignParentEnd = 0x010103bc; - /** - If true, makes the left edge of this view match the left edge of the parent. - Accommodates left margin. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_alignParentLeft = 0x0101018b; - /** - If true, makes the right edge of this view match the right edge of the parent. - Accommodates right margin. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_alignParentRight = 0x0101018d; - /** - If true, makes the start edge of this view match the start edge of the parent. - Accommodates start margin. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_alignParentStart = 0x010103bb; - /** - If true, makes the top edge of this view match the top edge of the parent. - Accommodates top margin. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_alignParentTop = 0x0101018c; - /** - Makes the right edge of this view match the right edge of the given anchor view ID. - Accommodates right margin. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout_alignRight = 0x01010189; - /** - Makes the start edge of this view match the start edge of the given anchor view ID. - Accommodates start margin. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout_alignStart = 0x010103b9; - /** - Makes the top edge of this view match the top edge of the given anchor view ID. - Accommodates top margin. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout_alignTop = 0x01010188; - /** - If set to true, the parent will be used as the anchor when the anchor cannot be - be found for layout_toLeftOf, layout_toRightOf, etc. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_alignWithParentIfMissing = 0x01010192; - /** - Positions the top edge of this view below the given anchor view ID. - Accommodates top margin of this view and bottom margin of anchor view. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout_below = 0x01010185; - /** - If true, centers this child horizontally within its parent. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_centerHorizontal = 0x01010190; - /** - If true, centers this child horizontally and vertically within its parent. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_centerInParent = 0x0101018f; - /** - If true, centers this child vertically within its parent. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_centerVertical = 0x01010191; - /** - The index of the column in which this child should be. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_column = 0x0101014c; - /** - The column span: the difference between the right and left - boundaries delimiting the group of cells occupied by this view. - The default is one. - See {@link android.widget.GridLayout.Spec}. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_columnSpan = 0x0101037d; - /** - Standard gravity constant that a child supplies to its parent. - Defines how the child view should be positioned, on both the X and Y axes, within its enclosing layout. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
- */ - public static final int layout_gravity = 0x010100b3; - /** - Specifies the basic height of the view. This is a required attribute - for any view inside of a containing layout manager. Its value may - be a dimension (such as "12dip") for a constant height or one of - the special constants. -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
fill_parent-1 The view should be as big as its parent (minus padding). - This constant is deprecated starting from API Level 8 and - is replaced by {@code match_parent}.
match_parent-1 The view should be as big as its parent (minus padding). - Introduced in API Level 8.
wrap_content-2 The view should be only big enough to enclose its content (plus padding).
- */ - public static final int layout_height = 0x010100f5; - /** - Specifies extra space on the left, top, right and bottom - sides of this view. This space is outside this view's bounds. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_margin = 0x010100f6; - /** - Specifies extra space on the bottom side of this view. - This space is outside this view's bounds. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_marginBottom = 0x010100fa; - /** - Specifies extra space on the end side of this view. - This space is outside this view's bounds. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_marginEnd = 0x010103b6; - /** - Specifies extra space on the left side of this view. - This space is outside this view's bounds. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_marginLeft = 0x010100f7; - /** - Specifies extra space on the right side of this view. - This space is outside this view's bounds. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_marginRight = 0x010100f9; - /** - Specifies extra space on the start side of this view. - This space is outside this view's bounds. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_marginStart = 0x010103b5; - /** - Specifies extra space on the top side of this view. - This space is outside this view's bounds. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_marginTop = 0x010100f8; - /** - The row boundary delimiting the top of the group of cells - occupied by this view. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_row = 0x0101037b; - /** - The row span: the difference between the bottom and top - boundaries delimiting the group of cells occupied by this view. - The default is one. - See {@link android.widget.GridLayout.Spec}. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_rowSpan = 0x0101037c; - /** -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_scale = 0x01010193; - /** - Defines how many columns this child should span. Must be >= 1. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_span = 0x0101014d; - /** - Positions the start edge of this view to the end of the given anchor view ID. - Accommodates start margin of this view and end margin of anchor view. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout_toEndOf = 0x010103b8; - /** - Positions the right edge of this view to the left of the given anchor view ID. - Accommodates right margin of this view and left margin of anchor view. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout_toLeftOf = 0x01010182; - /** - Positions the left edge of this view to the right of the given anchor view ID. - Accommodates left margin of this view and right margin of anchor view. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout_toRightOf = 0x01010183; - /** - Positions the end edge of this view to the start of the given anchor view ID. - Accommodates end margin of this view and start margin of anchor view. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int layout_toStartOf = 0x010103b7; - /** -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_weight = 0x01010181; - /** - Specifies the basic width of the view. This is a required attribute - for any view inside of a containing layout manager. Its value may - be a dimension (such as "12dip") for a constant width or one of - the special constants. -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
fill_parent-1 The view should be as big as its parent (minus padding). - This constant is deprecated starting from API Level 8 and - is replaced by {@code match_parent}.
match_parent-1 The view should be as big as its parent (minus padding). - Introduced in API Level 8.
wrap_content-2 The view should be only big enough to enclose its content (plus padding).
- */ - public static final int layout_width = 0x010100f4; - /** -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_x = 0x0101017f; - /** -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int layout_y = 0x01010180; - /** - Amount of left padding inside the gradient shape. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int left = 0x010101ad; - /** - Extra spacing between lines of text. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int lineSpacingExtra = 0x01010217; - /** - Extra spacing between lines of text, as a multiplier. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int lineSpacingMultiplier = 0x01010218; - /** - Makes the TextView be exactly this many lines tall. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int lines = 0x01010154; - /** - If set to false, keeps the movement method from being set - to the link movement method even if autoLink causes links - to be found. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int linksClickable = 0x010100b1; - /** - Drawable used as a background for selected list items. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listChoiceBackgroundIndicator = 0x010102f0; - /** - Drawable to use for multiple choice indicators. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listChoiceIndicatorMultiple = 0x0101021a; - /** - Drawable to use for single choice indicators. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listChoiceIndicatorSingle = 0x01010219; - /** - The drawable for the list divider. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listDivider = 0x01010214; - /** - The list divider used in alert dialogs. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listDividerAlertDialog = 0x01010305; - /** - Default ListPopupWindow style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listPopupWindowStyle = 0x010102ff; - /** - The preferred list item height. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int listPreferredItemHeight = 0x0101004d; - /** - A larger, more robust list item height. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int listPreferredItemHeightLarge = 0x01010386; - /** - A smaller, sleeker list item height. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int listPreferredItemHeightSmall = 0x01010387; - /** - The preferred padding along the end edge of list items. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int listPreferredItemPaddingEnd = 0x010103be; - /** - The preferred padding along the left edge of list items. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int listPreferredItemPaddingLeft = 0x010103a3; - /** - The preferred padding along the right edge of list items. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int listPreferredItemPaddingRight = 0x010103a4; - /** - The preferred padding along the start edge of list items. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int listPreferredItemPaddingStart = 0x010103bd; - /** - Drawable used to indicate the currently selected item in the list. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int listSelector = 0x010100fb; - /** - TextView style for list separators. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listSeparatorTextViewStyle = 0x01010208; - /** - Default ListView style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listViewStyle = 0x01010074; - /** - ListView with white background. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int listViewWhiteStyle = 0x01010075; - /** - A Drawable resource providing an extended graphical logo for its - associated item. Use with the application tag (to supply a default - logo for all application components), or with the activity, receiver, - service, or instrumentation tag (to supply a specific logo for that - component). It may also be used with the intent-filter tag to supply - a logo to show to the user when an activity is being selected based - on a particular Intent. - -

The given logo will be used to display to the user a graphical - representation of its associated component; for example as the - header in the Action Bar. The primary differences between an icon - and a logo are that logos are often wider and more detailed, and are - used without an accompanying text caption. This must be a reference - to a Drawable resource containing the image definition. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int logo = 0x010102be; - /** - Defines whether this view reacts to long click events. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int longClickable = 0x010100e6; - /** - Defines whether the animator loops to the first view once it - has reached the end of the list. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int loopViews = 0x01010307; - /** - Name of the activity to be launched to manage application's space on - device. The specified activity gets automatically launched when the - application's space needs to be managed and is usually invoked - through user actions. Applications can thus provide their own custom - behavior for managing space for various scenarios like out of memory - conditions. This is an optional attribute and - applications can choose not to specify a default activity to - manage space. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int manageSpaceActivity = 0x01010004; - /** - Default MapView style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int mapViewStyle = 0x0101008a; - /** - The number of times to repeat the marquee animation. Only applied if the - TextView has marquee enabled. -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - -
ConstantValueDescription
marquee_forever-1 Indicates that marquee should repeat indefinitely.
- */ - public static final int marqueeRepeatLimit = 0x0101021d; - /** - Defines the maximum value the progress can take. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int max = 0x01010136; - /** - The maximal date shown by this calendar view in mm/dd/yyyy format. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int maxDate = 0x01010340; - /** - Makes the TextView be at most this many ems wide. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int maxEms = 0x01010157; - /** - An optional argument to supply a maximum height for this view. - See {see android.widget.ImageView#setMaxHeight} for details. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int maxHeight = 0x01010120; - /** - Defines the maximum number of items per row. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int maxItemsPerRow = 0x01010134; - /** - Set an input filter to constrain the text length to the - specified number. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int maxLength = 0x01010160; - /** - The maximum level allowed for this item. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int maxLevel = 0x010101b2; - /** - Makes the TextView be at most this many lines tall. - - When used on an editable text, the inputType attribute's value must be - combined with the textMultiLine flag for the maxLines attribute to apply. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int maxLines = 0x01010153; - /** - Defines the maximum number of rows displayed. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int maxRows = 0x01010133; - /** - Optional: specify the maximum version of the Android OS for which the - application wishes to request the permission. When running on a version - of Android higher than the number given here, the permission will not - be requested. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int maxSdkVersion = 0x01010271; - /** - An optional argument to supply a maximum width for this view. - See {see android.widget.ImageView#setMaxWidth} for details. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int maxWidth = 0x0101011f; - /** - Determines whether to measure all children or just those in - the VISIBLE or INVISIBLE state when measuring. Defaults to false. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int measureAllChildren = 0x0101010a; - /** - When set to true, all children with a weight will be considered having - the minimum size of the largest child. If false, all children are - measured normally. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int measureWithLargestChild = 0x010102d4; - /** - Default style for the MediaRouteButton widget. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int mediaRouteButtonStyle = 0x010103ad; - /** - The types of media routes the button and its resulting - chooser will filter by. -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - -
ConstantValueDescription
liveAudio0x1 Allow selection of live audio routes.
user0x800000 Allow selection of user (app-specified) routes.
- */ - public static final int mediaRouteTypes = 0x010103ae; - /** - The category applied to all items within this group. - (This will be or'ed with the orderInCategory attribute.) -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
container0x00010000 Items are part of a container.
system0x00020000 Items are provided by the system.
secondary0x00030000 Items are user-supplied secondary (infrequently used).
alternative0x00040000 Items are alternative actions.
- */ - public static final int menuCategory = 0x010101de; - /** - Specify a MIME type that is handled, as per - {@link android.content.IntentFilter#addDataType - IntentFilter.addDataType()}. -

Note: MIME type matching in the Android framework is - case-sensitive, unlike formal RFC MIME types. As a result, - MIME types here should always use lower case letters.

-

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int mimeType = 0x01010026; - /** - The minimal date shown by this calendar view in mm/dd/yyyy format. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int minDate = 0x0101033f; - /** - Makes the TextView be at least this many ems wide. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int minEms = 0x0101015a; - /** -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int minHeight = 0x01010140; - /** - The minimum level allowed for this item. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int minLevel = 0x010101b1; - /** - Makes the TextView be at least this many lines tall. - - When used on an editable text, the inputType attribute's value must be - combined with the textMultiLine flag for the minLines attribute to apply. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int minLines = 0x01010156; - /** - Minimum height that the AppWidget can be resized to. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int minResizeHeight = 0x01010396; - /** - Minimum width that the AppWidget can be resized to. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int minResizeWidth = 0x01010395; - /** - This is the minimum SDK version number that the application - requires. This number is an abstract integer, from the list - in {@link android.os.Build.VERSION_CODES} If - not supplied, the application will work on any SDK. This - may also be string (such as "Donut") if the application was built - against a development branch, in which case it will only work against - the development builds. -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int minSdkVersion = 0x0101020c; - /** -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int minWidth = 0x0101013f; - /** - Enables or disables the mipmap hint. See - {@link android.graphics.Bitmap#setHasMipMap(boolean)} for more information. - Default value is false. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int mipMap = 0x010103cd; - /** - Defines if the associated drawables need to be mirrored when in RTL mode. - Default is false -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int mirrorForRtl = 0x010103ce; - /** -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
oneLine1 Always show only the first line.
collapsing2 When selected show both lines, otherwise show only the first line. - This is the default mode.
twoLine3 Always show both lines.
- */ - public static final int mode = 0x0101017e; - /** - 'More' icon. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int moreIcon = 0x01010135; - /** - Specify whether a component is allowed to have multiple instances - of itself running in different processes. Use with the activity - and provider tags. - -

Normally the system will ensure that all instances of a particular - component are only running in a single process. You can use this - attribute to disable that behavior, allowing the system to create - instances wherever they are used (provided permissions allow it). - This is most often used with content providers, so that instances - of a provider can be created in each client process, allowing them - to be used without performing IPC. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int multiprocess = 0x01010013; - /** - A unique name for the given item. This must use a Java-style naming - convention to ensure the name is unique, for example - "com.mycompany.MyName". -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int name = 0x01010003; - /** - The type of navigation to use. -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
normal0 Normal static title text
listMode1 The action bar will use a selection list for navigation.
tabMode2 The action bar will use a series of horizontal tabs for navigation.
- */ - public static final int navigationMode = 0x010102cf; - /** - The negative button text for the dialog. Set to @null to hide the negative button. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int negativeButtonText = 0x010101f6; - /** - Defines the next view to give focus to when the next focus is - {@link android.view.View#FOCUS_DOWN} - - If the reference refers to a view that does not exist or is part - of a hierarchy that is invisible, a {@link java.lang.RuntimeException} - will result when the reference is accessed. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int nextFocusDown = 0x010100e4; - /** - Defines the next view to give focus to when the next focus is - {@link android.view.View#FOCUS_FORWARD} - - If the reference refers to a view that does not exist or is part - of a hierarchy that is invisible, a {@link java.lang.RuntimeException} - will result when the reference is accessed. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int nextFocusForward = 0x0101033c; - /** - Defines the next view to give focus to when the next focus is - {@link android.view.View#FOCUS_LEFT}. - - If the reference refers to a view that does not exist or is part - of a hierarchy that is invisible, a {@link java.lang.RuntimeException} - will result when the reference is accessed. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int nextFocusLeft = 0x010100e1; - /** - Defines the next view to give focus to when the next focus is - {@link android.view.View#FOCUS_RIGHT} - - If the reference refers to a view that does not exist or is part - of a hierarchy that is invisible, a {@link java.lang.RuntimeException} - will result when the reference is accessed. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int nextFocusRight = 0x010100e2; - /** - Defines the next view to give focus to when the next focus is - {@link android.view.View#FOCUS_UP} - - If the reference refers to a view that does not exist or is part - of a hierarchy that is invisible, a {@link java.lang.RuntimeException} - will result when the reference is accessed. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int nextFocusUp = 0x010100e3; - /** - Specify whether an activity should be kept in its history stack. - If this attribute is set, then as soon as the user navigates away - from the activity it will be finished and they will no longer be - able to return to it. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int noHistory = 0x0101022d; - /** - Indicates whether an application supports the normal screen - form-factors. Traditionally this is an HVGA normal density - screen, but WQVGA low density and WVGA high density are also - considered to be normal. This attribute is true by default, - and applications currently should leave it that way. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int normalScreens = 0x01010285; - /** - The minimal period in milliseconds between two accessibility events of the same type - are sent to this serivce. This setting can be changed at runtime by calling - {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) - android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int notificationTimeout = 0x01010383; - /** - Defines how many columns to show. -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - -
ConstantValueDescription
auto_fit-1 Display as many columns as possible to fill the available space.
- */ - public static final int numColumns = 0x01010118; - /** - The number of stars (or rating items) to show. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int numStars = 0x01010144; - /** - NumberPicker style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int numberPickerStyle = 0x01010403; - /** - If set, specifies that this TextView has a numeric input method. - The default is false. - {@deprecated Use inputType instead.} -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - -
ConstantValueDescription
integer0x01 Input is numeric.
signed0x03 Input is numeric, with sign allowed.
decimal0x05 Input is numeric, with decimals allowed.
- */ - @Deprecated - public static final int numeric = 0x01010165; - /** - The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key) - keyboard. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int numericShortcut = 0x010101e4; - /** - Name of the method in this View's context to invoke when the view is - clicked. This name must correspond to a public method that takes - exactly one parameter of type View. For instance, if you specify - android:onClick="sayHello", you must declare a - public void sayHello(View v) method of your context - (typically, your Activity). -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int onClick = 0x0101026f; - /** - If true, the animation will only run a single time and then - stop. If false (the default), it will continually run, - restarting at the first frame after the last has finished. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int oneshot = 0x01010197; - /** - Indicates the opacity of the layer. This can be useful to allow the - system to enable drawing optimizations. The default value is - translucent. -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
opaque-1 Indicates that the layer is opaque and contains no transparent - nor translucent pixels.
transparent-2 The layer is completely transparent (no pixel will be drawn.)
translucent-3 The layer has translucent pixels.
- */ - public static final int opacity = 0x0101031e; - /** - The order for the Preference (lower values are to be ordered first). If this is not - specified, the default orderin will be alphabetic. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int order = 0x010101ea; - /** - The order within the category applied to all items within this group. - (This will be or'ed with the category attribute.) -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int orderInCategory = 0x010101df; - /** - Name of the property being animated. -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
together0 child animations should be played together.
sequentially1 child animations should be played sequentially, in the same order as the xml.
- */ - public static final int ordering = 0x010102e2; - /** - Whether to order the Preference under this group as they appear in the XML file. - If this is false, the ordering will follow the Preference order attribute and - default to alphabetic for those without the order attribute. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int orderingFromXml = 0x010101e7; - /** - Standard orientation constant. -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
horizontal0 Defines an horizontal widget.
vertical1 Defines a vertical widget.
- */ - public static final int orientation = 0x010100c4; - /** - Identifier for the animation to use when a view is hidden. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int outAnimation = 0x01010178; - /** - Drawable to draw below list content. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int overScrollFooter = 0x010102c3; - /** - Drawable to draw above list content. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int overScrollHeader = 0x010102c2; - /** - Defines over-scrolling behavior. This property is used only if the - View is scrollable. Over-scrolling is the ability for the user to - receive feedback when attempting to scroll beyond meaningful content. -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
always0 Always show over-scroll effects, even if the content fits entirely - within the available space.
ifContentScrolls1 Only show over-scroll effects if the content is large - enough to meaningfully scroll.
never2 Never show over-scroll effects.
- */ - public static final int overScrollMode = 0x010102c1; - /** - Set true when this subtype should be selected by default if no other subtypes are - selected explicitly. Note that a subtype with this parameter being true will - not be shown in the subtypes list. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int overridesImplicitlyEnabledSubtype = 0x010103a2; - /** - Comma separated package names from which this serivce would like to receive events (leave out for all packages). - {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) - android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int packageNames = 0x01010381; - /** - Sets the padding, in pixels, of all four edges. Padding is defined as - space between the edges of the view and the view's content. A views size - will include it's padding. If a {@link android.R.attr#background} - is provided, the padding will initially be set to that (0 if the - drawable does not have padding). Explicitly setting a padding value - will override the corresponding padding found in the background. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int padding = 0x010100d5; - /** - Sets the padding, in pixels, of the bottom edge; see {@link android.R.attr#padding}. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int paddingBottom = 0x010100d9; - /** - Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int paddingEnd = 0x010103b4; - /** - Sets the padding, in pixels, of the left edge; see {@link android.R.attr#padding}. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int paddingLeft = 0x010100d6; - /** - Sets the padding, in pixels, of the right edge; see {@link android.R.attr#padding}. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int paddingRight = 0x010100d8; - /** - Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int paddingStart = 0x010103b3; - /** - Sets the padding, in pixels, of the top edge; see {@link android.R.attr#padding}. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int paddingTop = 0x010100d7; - /** - The background of a panel when it is inset from the left and right edges of the screen. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int panelBackground = 0x0101005e; - /** - Color that matches (as closely as possible) the panel background. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int panelColorBackground = 0x01010061; - /** - Default color of foreground panel imagery. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int panelColorForeground = 0x01010060; - /** - The background of a panel when it extends to the left and right edges of the screen. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int panelFullBackground = 0x0101005f; - /** - Default appearance of panel text. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int panelTextAppearance = 0x01010062; - /** - The name of the logical parent of the activity as it appears in the manifest. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int parentActivityName = 0x010103a7; - /** - Whether the characters of the field are displayed as - password dots instead of themselves. - {@deprecated Use inputType instead.} -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - @Deprecated - public static final int password = 0x0101015c; - /** - Specify a URI path that must exactly match, as per - {@link android.os.PatternMatcher} with - {@link android.os.PatternMatcher#PATTERN_LITERAL}. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int path = 0x0101002a; - /** - Specify a URI path that matches a simple pattern, as per - {@link android.os.PatternMatcher} with - {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}. - Note that because '\' is used as an escape character when - reading the string from XML (before it is parsed as a pattern), - you will need to double-escape: for example a literal "*" would - be written as "\\*" and a literal "\" would be written as - "\\\\". This is basically the same as what you would need to - write if constructing the string in Java code. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int pathPattern = 0x0101002c; - /** - Specify a URI path that must be a prefix to match, as per - {@link android.os.PatternMatcher} with - {@link android.os.PatternMatcher#PATTERN_PREFIX}. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int pathPrefix = 0x0101002b; - /** - Specify a permission that a client is required to have in order to - use the associated object. If the client does not hold the named - permission, its request will fail. See the - Security and Permissions - document for more information on permissions. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int permission = 0x01010006; - /** - Flags indicating more context for a permission. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - -
ConstantValueDescription
costsMoney0x0001 Set to indicate that this permission allows an operation that - may cost the user money. Such permissions may be highlighted - when shown to the user with this additional information.
- */ - public static final int permissionFlags = 0x010103c7; - /** - Specified the name of a group that this permission is associated - with. The group must have been defined with the - {@link android.R.styleable#AndroidManifestPermissionGroup permission-group} tag. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int permissionGroup = 0x0101000a; - /** - Flags indicating more context for a permission group. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - -
ConstantValueDescription
personalInfo0x0001 Set to indicate that this permission group contains permissions - protecting access to some information that is considered - personal to the user (such as contacts, e-mails, etc).
- */ - public static final int permissionGroupFlags = 0x010103c5; - /** - Flag to control special persistent mode of an application. This should - not normally be used by applications; it requires that the system keep - your application running at all times. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int persistent = 0x0101000d; - /** - Defines the persistence of the drawing cache. The drawing cache might be - enabled by a ViewGroup for all its children in specific situations (for - instance during a scrolling.) This property lets you persist the cache - in memory after its initial usage. Persisting the cache consumes more - memory but may prevent frequent garbage collection is the cache is created - over and over again. By default the persistence is set to scrolling. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - -
ConstantValueDescription
none0x0 The drawing cache is not persisted after use.
animation0x1 The drawing cache is persisted after a layout animation.
scrolling0x2 The drawing cache is persisted after a scroll.
all0x3 The drawing cache is always persisted.
- */ - public static final int persistentDrawingCache = 0x010100ee; - /** - If set, specifies that this TextView has a phone number input - method. The default is false. - {@deprecated Use inputType instead.} -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - @Deprecated - public static final int phoneNumber = 0x01010167; - /** -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int pivotX = 0x010101b5; - /** -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int pivotY = 0x010101b6; - /** - Reference to the Pointer style -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int pointerStyle = 0x01010420; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int popupAnimationStyle = 0x010102c9; - /** -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int popupBackground = 0x01010176; - /** - The characters to display in the popup keyboard. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int popupCharacters = 0x01010244; - /** - The XML keyboard layout of any popup keyboard. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int popupKeyboard = 0x01010243; - /** - Layout resource for popup keyboards. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int popupLayout = 0x0101023b; - /** - Default PopupMenu style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int popupMenuStyle = 0x01010300; - /** - Default PopupWindow style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int popupWindowStyle = 0x01010076; - /** - Specify a URI authority port that is handled, as per - {@link android.content.IntentFilter#addDataAuthority - IntentFilter.addDataAuthority()}. If a host is supplied - but not a port, any port is matched. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int port = 0x01010029; - /** - The positive button text for the dialog. Set to @null to hide the positive button. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int positiveButtonText = 0x010101f5; - /** - Default style for PreferenceCategory. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceCategoryStyle = 0x0101008c; - /** - Preference frame layout styles. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceFrameLayoutStyle = 0x0101041e; - /** - Default style for informational Preference. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceInformationStyle = 0x0101008d; - /** - The preference layout that has the child/tabbed effect. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceLayoutChild = 0x01010094; - /** - Default style for PreferenceScreen. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceScreenStyle = 0x0101008b; - /** - Default style for Preference. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int preferenceStyle = 0x0101008e; - /** - Theme to use for presentations spawned from this theme. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int presentationTheme = 0x010103c0; - /** - A preview of what the AppWidget will look like after it's configured. - If not supplied, the AppWidget's icon will be used. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int previewImage = 0x010102da; - /** - Specify the relative importance or ability in handling a particular - Intent. For receivers, this controls the order in which they are - executed to receive a broadcast (note that for - asynchronous broadcasts, this order is ignored). For activities, - this provides information about how good an activity is handling an - Intent; when multiple activities match an intent and have different - priorities, only those with the higher priority value will be - considered a match. - -

Only use if you really need to impose some specific - order in which the broadcasts are received, or want to forcibly - place an activity to always be preferred over others. The value is a - single integer, with higher numbers considered to be better. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int priority = 0x0101001c; - /** - An addition content type description to supply to the input - method attached to the text view, which is private to the - implementation of the input method. This simply fills in - the {@link android.view.inputmethod.EditorInfo#privateImeOptions - EditorInfo.privateImeOptions} field when the input - method is connected. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int privateImeOptions = 0x01010223; - /** - Specify a specific process that the associated code is to run in. - Use with the application tag (to supply a default process for all - application components), or with the activity, receiver, service, - or provider tag (to supply a specific icon for that component). - -

Application components are normally run in a single process that - is created for the entire application. You can use this tag to modify - where they run. If the process name begins with a ':' character, - a new process private to that application will be created when needed - to run that component (allowing you to spread your application across - multiple processes). If the process name begins with a lower-case - character, the component will be run in a global process of that name, - provided that you have permission to do so, allowing multiple - applications to share one process to reduce resource usage. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int process = 0x01010011; - /** - Defines the default progress value, between 0 and max. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int progress = 0x01010137; - /** - Specifies the horizontal padding on either end for an embedded progress bar. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int progressBarPadding = 0x01010319; - /** - Default ProgressBar style. This is a medium circular progress bar. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int progressBarStyle = 0x01010077; - /** - Horizontal ProgressBar style. This is a horizontal progress bar. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int progressBarStyleHorizontal = 0x01010078; - /** - Inverse ProgressBar style. This is a medium circular progress bar. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int progressBarStyleInverse = 0x01010287; - /** - Large ProgressBar style. This is a large circular progress bar. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int progressBarStyleLarge = 0x0101007a; - /** - Large inverse ProgressBar style. This is a large circular progress bar. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int progressBarStyleLargeInverse = 0x01010289; - /** - Small ProgressBar style. This is a small circular progress bar. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int progressBarStyleSmall = 0x01010079; - /** - Small inverse ProgressBar style. This is a small circular progress bar. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int progressBarStyleSmallInverse = 0x01010288; - /** - Small ProgressBar in title style. This is a small circular progress bar that will be placed in title bars. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int progressBarStyleSmallTitle = 0x0101020f; - /** - Drawable used for the progress mode. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int progressDrawable = 0x0101013c; - /** - The prompt to display when the spinner's dialog is shown. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int prompt = 0x0101017b; - /** - Name of the property being animated. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int propertyName = 0x010102e1; - /** - Characterizes the potential risk implied in a permission and - indicates the procedure the system should follow when determining - whether to grant the permission to an application requesting it. {@link - android.Manifest.permission Standard permissions} have a predefined and - permanent protectionLevel. If you are creating a custom permission in an - application, you can define a protectionLevel attribute with one of the - values listed below. If no protectionLevel is defined for a custom - permission, the system assigns the default ("normal"). -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - -
ConstantValueDescription
normal0 A lower-risk permission that gives an application access to isolated - application-level features, with minimal risk to other applications, - the system, or the user. The system automatically grants this type - of permission to a requesting application at installation, without - asking for the user's explicit approval (though the user always - has the option to review these permissions before installing).
dangerous1 A higher-risk permission that would give a requesting application - access to private user data or control over the device that can - negatively impact the user. Because this type of permission - introduces potential risk, the system may not automatically - grant it to the requesting application. For example, any dangerous - permissions requested by an application may be displayed to the - user and require confirmation before proceeding, or some other - approach may be taken to avoid the user automatically allowing - the use of such facilities.
signature2 A permission that the system is to grant only if the requesting - application is signed with the same certificate as the application - that declared the permission. If the certificates match, the system - automatically grants the permission without notifying the user or - asking for the user's explicit approval.
signatureOrSystem3 A permission that the system is to grant only to packages in the - Android system image or that are signed with the same - certificates. Please avoid using this option, as the - signature protection level should be sufficient for most needs and - works regardless of exactly where applications are installed. This - permission is used for certain special situations where multiple - vendors have applications built in to a system image which need - to share specific features explicitly because they are being built - together.
system0x10 Additional flag from base permission type: this permission can also - be granted to any applications installed on the system image. - Please avoid using this option, as the - signature protection level should be sufficient for most needs and - works regardless of exactly where applications are installed. This - permission flag is used for certain special situations where multiple - vendors have applications built in to a system image which need - to share specific features explicitly because they are being built - together.
development0x20 Additional flag from base permission type: this permission can also - (optionally) be granted to development applications.
- */ - public static final int protectionLevel = 0x01010009; - /** - The attribute that holds a Base64-encoded public key. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int publicKey = 0x010103a6; - /** - If you wish to handle an action key during normal search query entry, you - must define an action string here. This will be added to the - {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to your - searchable activity. To examine the string, use - {@link android.content.Intent#getStringExtra getStringExtra(SearchManager.ACTION_MSG)}. - Optional attribute. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int queryActionMsg = 0x010101db; - /** - If provided and true, this searchable activity will be invoked for all - queries in a particular session. If set to false and the activity - returned zero results for a query, it will not be invoked again in that session for - supersets of that zero-results query. For example, if the activity returned zero - results for "bo", it would not be queried again for "bob". - The default value is false. Optional attribute.. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int queryAfterZeroResults = 0x01010282; - /** - An optional query hint string to be displayed in the empty query field. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int queryHint = 0x01010358; - /** - Default quickcontact badge style with large quickcontact window. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int quickContactBadgeStyleSmallWindowLarge = 0x010102b3; - /** - Default quickcontact badge style with medium quickcontact window. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int quickContactBadgeStyleSmallWindowMedium = 0x010102b2; - /** - Default quickcontact badge style with small quickcontact window. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int quickContactBadgeStyleSmallWindowSmall = 0x010102b1; - /** - Default quickcontact badge style with large quickcontact window. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int quickContactBadgeStyleWindowLarge = 0x010102b0; - /** - Default quickcontact badge style with medium quickcontact window. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int quickContactBadgeStyleWindowMedium = 0x010102af; - /** - Default quickcontact badge style with small quickcontact window. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int quickContactBadgeStyleWindowSmall = 0x010102ae; - /** - Default RadioButton style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int radioButtonStyle = 0x0101007e; - /** - Defines the radius of the four corners. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int radius = 0x010101a8; - /** - The rating to set by default. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int rating = 0x01010145; - /** - Default RatingBar style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int ratingBarStyle = 0x0101007c; - /** - Indicator RatingBar style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int ratingBarStyleIndicator = 0x01010210; - /** - Small indicator RatingBar style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int ratingBarStyleSmall = 0x0101007d; - /** - A specific {@link android.R.attr#permission} name for read-only - access to a {@link android.content.ContentProvider}. See the - Security and Permissions - document for more information on permissions. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int readPermission = 0x01010007; - /** - Defines how many times the animation should repeat. The default value is 0. -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - -
ConstantValueDescription
infinite-1
- */ - public static final int repeatCount = 0x010101bf; - /** - Defines the animation behavior when it reaches the end and the repeat count is - greater than 0 or infinite. The default value is restart. -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
restart1 The animation starts again from the beginning.
reverse2 The animation plays backward.
- */ - public static final int repeatMode = 0x010101c0; - /** - Application's requirement for five way navigation -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int reqFiveWayNav = 0x01010232; - /** - Application's requirement for a hard keyboard -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int reqHardKeyboard = 0x01010229; - /** - The input method preferred by an application. -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
undefined0
nokeys1
qwerty2
twelvekey3
- */ - public static final int reqKeyboardType = 0x01010228; - /** - The navigation device preferred by an application. -

Must be one of the following constant values.

- - - - - - - - - - -
ConstantValueDescription
undefined0
nonav1
dpad2
trackball3
wheel4
- */ - public static final int reqNavigation = 0x0101022a; - /** - The touch screen type used by an application. -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
undefined0
notouch1
stylus2
finger3
- */ - public static final int reqTouchScreen = 0x01010227; - /** - Whether the device must be unlocked before routing data to this service. - The default is false. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int requireDeviceUnlock = 0x010103ec; - /** - Specify whether this feature is required for the application. - The default is true, meaning the application requires the - feature, and does not want to be installed on devices that - don't support it. If you set this to false, then this will - not impose a restriction on where the application can be - installed. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int required = 0x0101028e; - /** - Declare that this application requires an account of a certain - type. The default value is null and indicates that the application can work without - any accounts. The type should correspond to the account authenticator type, such as - "com.google". -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int requiredAccountType = 0x010103d6; - /** - Flag to specify if this application needs to be present for all users. Only pre-installed - applications can request this feature. Default value is false. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int requiredForAllUsers = 0x010103d0; - /** - Defines which edges should be faded on scrolling. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - -
ConstantValueDescription
none0x00000000 No edge is faded.
horizontal0x00001000 Fades horizontal edges only.
vertical0x00002000 Fades vertical edges only.
- */ - public static final int requiresFadingEdge = 0x010103a5; - /** - Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}, - this is the new way to specify the minimum screen size an application is - compatible with. This attribute provides the required minimum - "smallest screen width" (as per the -swNNNdp resource configuration) - that the application can run on. For example, a typical phone - screen is 320, a 7" tablet 600, and a 10" tablet 720. If the - smallest screen width of the device is below the value supplied here, - then the application is considered incompatible with that device. - If not supplied, then any old smallScreens, normalScreens, largeScreens, - or xlargeScreens attributes will be used instead. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int requiresSmallestWidthDp = 0x01010364; - /** - Optional parameter which indicates if and how this widget can be - resized. Supports combined values using | operator. -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one or more (separated by '|') of the following constant values.

- - - - - - - - -
ConstantValueDescription
none0x0
horizontal0x1
vertical0x2
- */ - public static final int resizeMode = 0x01010363; - /** - Indicates whether the application can resize itself to newer - screen sizes. This is mostly used to distinguish between old - applications that may not be compatible with newly introduced - screen sizes and newer applications that should be; it will be - set for you automatically based on whether you are targeting - a newer platform that supports more screens. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int resizeable = 0x0101028d; - /** - Resource identifier to assign to this piece of named meta-data. - The resource identifier can later be retrieved from the meta data - Bundle through {@link android.os.Bundle#getInt Bundle.getInt}. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int resource = 0x01010025; - /** - Indicate that the application is prepared to attempt a restore of any - backed-up dataset, even if the backup is apparently from a newer version - of the application than is currently installed on the device. Setting - this attribute to true will permit the Backup Manager to - attempt restore even when a version mismatch suggests that the data are - incompatible. Use with caution! - -

The default value of this attribute is false. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int restoreAnyVersion = 0x010102ba; - /** - @deprecated This attribute is not used by the Android operating system. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - @Deprecated - public static final int restoreNeedsApplication = 0x0101029d; - /** - Declare that this application requires access to restricted accounts of a certain - type. The default value is null and restricted accounts won\'t be visible to this - application. The type should correspond to the account authenticator type, such as - "com.google". -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int restrictedAccountType = 0x010103d5; - /** - Amount of right padding inside the gradient shape. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int right = 0x010101af; - /** - Default style for RingtonePreference. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int ringtonePreferenceStyle = 0x01010093; - /** - Which ringtone type(s) to show in the picker. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - -
ConstantValueDescription
ringtone1 Ringtones.
notification2 Notification sounds.
alarm4 Alarm sounds.
all7 All available ringtone sounds.
- */ - public static final int ringtoneType = 0x010101f9; - /** - rotation of the view, in degrees. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int rotation = 0x01010326; - /** - rotation of the view around the x axis, in degrees. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int rotationX = 0x01010327; - /** - rotation of the view around the y axis, in degrees. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int rotationY = 0x01010328; - /** - The maxmimum number of rows to create when automatically positioning children. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int rowCount = 0x01010375; - /** - Fraction of the animation duration used to delay the beginning of - the animation of each row. -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int rowDelay = 0x010101d0; - /** - Row edge flags. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - -
ConstantValueDescription
top4 Row is anchored to the top of the keyboard.
bottom8 Row is anchored to the bottom of the keyboard.
- */ - public static final int rowEdgeFlags = 0x01010241; - /** - Defines the height of each row. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int rowHeight = 0x01010132; - /** - When set to true, forces row boundaries to appear in the same order - as row indices. - The default is true. - See {@link android.widget.GridLayout#setRowOrderPreserved(boolean)}. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int rowOrderPreserved = 0x01010376; - /** - If unset, no state will be saved for this view when it is being - frozen. The default is true, allowing the view to be saved - (however it also must have an ID assigned to it for its - state to be saved). Setting this to false only disables the - state for this view, not for its children which may still - be saved. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int saveEnabled = 0x010100e7; - /** - Specifies where the drawable is positioned after scaling. The default value is - left. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
- */ - public static final int scaleGravity = 0x010101fe; - /** - Scale height, expressed as a percentage of the drawable's bound. The value's - format is XX%. For instance: 100%, 12.5%, etc. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int scaleHeight = 0x010101fd; - /** - Controls how the image should be resized or moved to match the size - of this ImageView. -

Must be one of the following constant values.

- - - - - - - - - - - - - -
ConstantValueDescription
matrix0
fitXY1
fitStart2
fitCenter3
fitEnd4
center5
centerCrop6
centerInside7
- */ - public static final int scaleType = 0x0101011d; - /** - Scale width, expressed as a percentage of the drawable's bound. The value's - format is XX%. For instance: 100%, 12.5%, etc. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int scaleWidth = 0x010101fc; - /** - scale of the view in the x direction. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int scaleX = 0x01010324; - /** - scale of the view in the y direction. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int scaleY = 0x01010325; - /** - Specify a URI scheme that is handled, as per - {@link android.content.IntentFilter#addDataScheme - IntentFilter.addDataScheme()}. -

Note: scheme matching in the Android framework is - case-sensitive, unlike the formal RFC. As a result, - schemes here should always use lower case letters.

-

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int scheme = 0x01010027; - /** - Specifies a compatible screen density, as per the device - configuration screen density bins. -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
ldpi120 A low density screen, approximately 120dpi.
mdpi160 A medium density screen, approximately 160dpi.
hdpi240 A high density screen, approximately 240dpi.
xhdpi320 An extra high density screen, approximately 320dpi.
- */ - public static final int screenDensity = 0x010102cb; - /** - Specify the orientation an activity should be run in. If not - specified, it will run in the current preferred orientation - of the screen. -

This attribute is supported by the {@code <activity>} - element. -

Must be one of the following constant values.

- - - - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
unspecified-1 No preference specified: let the system decide the best - orientation. This will either be the orientation selected - by the activity below, or the user's preferred orientation - if this activity is the bottom of a task. If the user - explicitly turned off sensor based orientation through settings - sensor based device rotation will be ignored. If not by default - sensor based orientation will be taken into account and the - orientation will changed based on how the user rotates the device. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_UNSPECIFIED}.
landscape0 Would like to have the screen in a landscape orientation: that - is, with the display wider than it is tall, ignoring sensor data. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_LANDSCAPE}.
portrait1 Would like to have the screen in a portrait orientation: that - is, with the display taller than it is wide, ignoring sensor data. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_PORTRAIT}.
user2 Use the user's current preferred orientation of the handset. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_USER}.
behind3 Keep the screen in the same orientation as whatever is behind - this activity. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_BEHIND}.
sensor4 Orientation is determined by a physical orientation sensor: - the display will rotate based on how the user moves the device. - Ignores user's setting to turn off sensor-based rotation. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_SENSOR}.
nosensor5 Always ignore orientation determined by orientation sensor: - the display will not rotate when the user moves the device. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_NOSENSOR}.
sensorLandscape6 Would like to have the screen in landscape orientation, but can - use the sensor to change which direction the screen is facing. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_SENSOR_LANDSCAPE}.
sensorPortrait7 Would like to have the screen in portrait orientation, but can - use the sensor to change which direction the screen is facing. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_SENSOR_PORTRAIT}.
reverseLandscape8 Would like to have the screen in landscape orientation, turned in - the opposite direction from normal landscape. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_REVERSE_LANDSCAPE}.
reversePortrait9 Would like to have the screen in portrait orientation, turned in - the opposite direction from normal portrait. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_REVERSE_PORTRAIT}.
fullSensor10 Orientation is determined by a physical orientation sensor: - the display will rotate based on how the user moves the device. - This allows any of the 4 possible rotations, regardless of what - the device will normally do (for example some devices won't - normally use 180 degree rotation). - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_FULL_SENSOR}.
userLandscape11 Would like to have the screen in landscape orientation, but if - the user has enabled sensor-based rotation then we can use the - sensor to change which direction the screen is facing. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_USER_LANDSCAPE}.
userPortrait12 Would like to have the screen in portrait orientation, but if - the user has enabled sensor-based rotation then we can use the - sensor to change which direction the screen is facing. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_USER_PORTRAIT}.
fullUser13 Respect the user's sensor-based rotation preference, but if - sensor-based rotation is enabled then allow the screen to rotate - in all 4 possible directions regardless of what - the device will normally do (for example some devices won't - normally use 180 degree rotation). - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_FULL_USER}.
locked14 Screen is locked to its current rotation, whatever that is. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_LOCKED}.
- */ - public static final int screenOrientation = 0x0101001e; - /** - Specifies a compatible screen size, as per the device - configuration screen size bins. -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
small200 A small screen configuration, at least 240x320dp.
normal300 A normal screen configuration, at least 320x480dp.
large400 A large screen configuration, at least 400x530dp.
xlarge500 An extra large screen configuration, at least 600x800dp.
- */ - public static final int screenSize = 0x010102ca; - /** - Whether the text is allowed to be wider than the view (and - therefore can be scrolled horizontally). -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int scrollHorizontally = 0x0101015b; - /** - Default ScrollView style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int scrollViewStyle = 0x01010080; - /** - The initial horizontal scroll offset, in pixels. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int scrollX = 0x010100d2; - /** - The initial vertical scroll offset, in pixels. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int scrollY = 0x010100d3; - /** - Defines whether the horizontal scrollbar track should always be drawn. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int scrollbarAlwaysDrawHorizontalTrack = 0x01010068; - /** - Defines whether the vertical scrollbar track should always be drawn. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int scrollbarAlwaysDrawVerticalTrack = 0x01010069; - /** - Defines the delay in milliseconds that a scrollbar waits before fade out. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int scrollbarDefaultDelayBeforeFade = 0x010102a9; - /** - Defines the delay in milliseconds that a scrollbar takes to fade out. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int scrollbarFadeDuration = 0x010102a8; - /** - Sets the width of vertical scrollbars and height of horizontal scrollbars. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int scrollbarSize = 0x01010063; - /** - Controls the scrollbar style and position. The scrollbars can be overlaid or - inset. When inset, they add to the padding of the view. And the - scrollbars can be drawn inside the padding area or on the edge of - the view. For example, if a view has a background drawable and you - want to draw the scrollbars inside the padding specified by the - drawable, you can use insideOverlay or insideInset. If you want them - to appear at the edge of the view, ignoring the padding, then you can - use outsideOverlay or outsideInset. -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
insideOverlay0x0 Inside the padding and overlaid
insideInset0x01000000 Inside the padding and inset
outsideOverlay0x02000000 Edge of the view and overlaid
outsideInset0x03000000 Edge of the view and inset
- */ - public static final int scrollbarStyle = 0x0101007f; - /** - Defines the horizontal scrollbar thumb drawable. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int scrollbarThumbHorizontal = 0x01010064; - /** - Defines the vertical scrollbar thumb drawable. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int scrollbarThumbVertical = 0x01010065; - /** - Defines the horizontal scrollbar track drawable. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int scrollbarTrackHorizontal = 0x01010066; - /** - Defines the vertical scrollbar track drawable. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int scrollbarTrackVertical = 0x01010067; - /** - Defines which scrollbars should be displayed on scrolling or not. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - -
ConstantValueDescription
none0x00000000 No scrollbar is displayed.
horizontal0x00000100 Displays horizontal scrollbar only.
vertical0x00000200 Displays vertical scrollbar only.
- */ - public static final int scrollbars = 0x010100de; - /** - When set to true, the list uses a drawing cache during scrolling. - This makes the rendering faster but uses more memory. The default - value is true. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int scrollingCache = 0x010100fe; - /** - If supplied, this string will be displayed as the text of the "Search" button. - Optional attribute. - {@deprecated This will create a non-standard UI appearance, because the search bar UI is - changing to use only icons for its buttons.} -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - @Deprecated - public static final int searchButtonText = 0x01010205; - /** - Theme to use for Search Dialogs -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int searchDialogTheme = 0x0101041d; - /** - Additional features are controlled by mode bits in this field. Omitting - this field, or setting to zero, provides default behavior. Optional attribute. - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - -
ConstantValueDescription
showSearchLabelAsBadge0x04 If set, this flag enables the display of the search target (label) within the - search bar. If neither bad mode is selected, no badge will be shown.
showSearchIconAsBadge0x08This is deprecated.
The default - application icon is now always used, so this option is - obsolete.
queryRewriteFromData0x10 If set, this flag causes the suggestion column SUGGEST_COLUMN_INTENT_DATA to - be considered as the text for suggestion query rewriting. This should only - be used when the values in SUGGEST_COLUMN_INTENT_DATA are suitable for user - inspection and editing - typically, HTTP/HTTPS Uri's.
queryRewriteFromText0x20 If set, this flag causes the suggestion column SUGGEST_COLUMN_TEXT_1 to - be considered as the text for suggestion query rewriting. This should be used - for suggestions in which no query text is provided and the SUGGEST_COLUMN_INTENT_DATA - values are not suitable for user inspection and editing.
- */ - public static final int searchMode = 0x010101d5; - /** - If provided, this string will be used to describe the searchable item in the - searchable items settings within system search settings. Optional - attribute. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int searchSettingsDescription = 0x0101028a; - /** - If provided, this is the trigger indicating that the searchable activity - provides suggestions as well. The value must be a fully-qualified content provider - authority (e.g. "com.example.android.apis.SuggestionProvider") and should match the - "android:authorities" tag in your content provider's manifest entry. Optional - attribute. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int searchSuggestAuthority = 0x010101d6; - /** - If provided, and not overridden by an action in the selected suggestion, this - string will be placed in the action field of the {@link android.content.Intent Intent} - when the user clicks a suggestion. Optional attribute. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int searchSuggestIntentAction = 0x010101d9; - /** - If provided, and not overridden by an action in the selected suggestion, this - string will be placed in the data field of the {@link android.content.Intent Intent} - when the user clicks a suggestion. Optional attribute. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int searchSuggestIntentData = 0x010101da; - /** - If provided, this will be inserted in the suggestions query Uri, after the authority - you have provide but before the standard suggestions path. Optional attribute. - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int searchSuggestPath = 0x010101d7; - /** - If provided, suggestion queries will be passed into your query function - as the selection parameter. Typically this will be a WHERE clause for your - database, and will contain a single question mark, which represents the actual query - string that has been typed by the user. If not provided, then the user query text - will be appended to the query Uri (after an additional "/".) Optional - attribute. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int searchSuggestSelection = 0x010101d8; - /** - If provided, this is the minimum number of characters needed to trigger - search suggestions. The default value is 0. Optional attribute. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int searchSuggestThreshold = 0x0101026d; - /** - SearchView Search icon -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int searchViewSearchIcon = 0x01010417; - /** - Defines the secondary progress value, between 0 and max. This progress is drawn between - the primary progress and the background. It can be ideal for media scenarios such as - showing the buffering progress while the default progress shows the play progress. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int secondaryProgress = 0x01010138; - /** - Default SeekBar style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int seekBarStyle = 0x0101007b; - /** - Style for segmented buttons - a container that houses several buttons - with the appearance of a singel button broken into segments. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int segmentedButtonStyle = 0x01010330; - /** - If the text is selectable, select it all when the view takes - focus. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int selectAllOnFocus = 0x0101015e; - /** - Whether the Preference is selectable. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int selectable = 0x010101e6; - /** - Background drawable for standalone items that need focus/pressed states. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int selectableItemBackground = 0x0101030e; - /** - Drawable for the vertical bar shown at the beginning and at the end of the selected date. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int selectedDateVerticalBar = 0x01010347; - /** - The background color for the selected week. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int selectedWeekBackgroundColor = 0x01010342; - /** - Component name of an activity that allows the user to modify - the settings for this service. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int settingsActivity = 0x01010225; - /** - Place a shadow of the specified color behind the text. -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int shadowColor = 0x01010161; - /** - Horizontal offset of the shadow. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int shadowDx = 0x01010162; - /** - Vertical offset of the shadow. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int shadowDy = 0x01010163; - /** - Radius of the shadow. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int shadowRadius = 0x01010164; - /** - Indicates what shape to fill with a gradient. -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
rectangle0 Rectangle shape, with optional rounder corners.
oval1 Oval shape.
line2 Line shape.
ring3 Ring shape.
- */ - public static final int shape = 0x0101019a; - /** -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int shareInterpolator = 0x010101bb; - /** - Specify the name of a user ID that will be shared between multiple - packages. By default, each package gets its own unique user-id. - By setting this value on two or more packages, each of these packages - will be given a single shared user ID, so they can for example run - in the same process. Note that for them to actually get the same - user ID, they must also be signed with the same signature. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int sharedUserId = 0x0101000b; - /** - Specify a label for the shared user UID of this package. This is - only used if you have also used android:sharedUserId. This must - be a reference to a string resource; it can not be an explicit - string. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int sharedUserLabel = 0x01010261; - /** - Whether the view of this Preference should be disabled when - this Preference is disabled. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int shouldDisableView = 0x010101ee; - /** - How this item should display in the Action Bar, if present. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - -
ConstantValueDescription
never0 Never show this item in an action bar, show it in the overflow menu instead. - Mutually exclusive with "ifRoom" and "always".
ifRoom1 Show this item in an action bar if there is room for it as determined - by the system. Favor this option over "always" where possible. - Mutually exclusive with "never" and "always".
always2 Always show this item in an actionbar, even if it would override - the system's limits of how much stuff to put there. This may make - your action bar look bad on some screens. In most cases you should - use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".
withText4 When this item is shown as an action in the action bar, show a text - label with it even if it has an icon representation.
collapseActionView8 This item's action view collapses to a normal menu - item. When expanded, the action view takes over a - larger segment of its container.
- */ - public static final int showAsAction = 0x010102d9; - /** - Whether to show an item for a default sound. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int showDefault = 0x010101fa; - /** - Setting for which dividers to show. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - -
ConstantValueDescription
none0
beginning1
middle2
end4
- */ - public static final int showDividers = 0x01010329; - /** - Specify that an Activity should be shown over the lock screen and, - in a multiuser environment, across all users' windows -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int showOnLockScreen = 0x010103c9; - /** - Whether to show an item for 'Silent'. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int showSilent = 0x010101fb; - /** - Whether do show week numbers. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int showWeekNumber = 0x0101033e; - /** - The number of weeks to be shown. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int shownWeekCount = 0x01010341; - /** - The zero-based index of the columns to shrink. The column indices - must be separated by a comma: 1, 2, 5. Illegal and duplicate - indices are ignored. You can shrink all columns by using the - value "*" instead. Note that a column can be marked stretchable - and shrinkable at the same time. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int shrinkColumns = 0x0101014a; - /** - Constrains the text to a single horizontally scrolling line - instead of letting it wrap onto multiple lines, and advances - focus instead of inserting a newline when you press the - enter key. - - The default value is false (multi-line wrapped text mode) for non-editable text, but if - you specify any value for inputType, the default is true (single-line input field mode). - - {@deprecated This attribute is deprecated. Use maxLines instead to change - the layout of a static text, and use the textMultiLine flag in the - inputType attribute instead for editable text views (if both singleLine and inputType - are supplied, the inputType flags will override the value of singleLine). } -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - @Deprecated - public static final int singleLine = 0x0101015d; - /** - If set to true, a single instance of this component will run for - all users. That instance will run as user 0, the default/primary - user. When the app running is in processes for other users and interacts - with this component (by binding to a service for example) those processes will - always interact with the instance running for user 0. Enabling - single user mode forces "exported" of the component to be false, to - help avoid introducing multi-user security bugs. This feature is only - available to applications built in to the system image; you must hold the - permission INTERACT_ACROSS_USERS in order - to use this feature. This flag can only be used with services, - receivers, and providers; it can not be used with activities. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int singleUser = 0x010103bf; - /** - Smaller icon of the authenticator. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int smallIcon = 0x0101029e; - /** - Indicates whether the application supports smaller screen form-factors. - A small screen is defined as one with a smaller aspect ratio than - the traditional HVGA screen; that is, for a portrait screen, less - tall than an HVGA screen. In practice, this means a QVGA low - density or VGA high density screen. An application that does - not support small screens will not be available for - small screen devices, since there is little the platform can do - to make such an application work on a smaller screen. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int smallScreens = 0x01010284; - /** - When set to true, the list will use a more refined calculation - method based on the pixels height of the items visible on screen. This - property is set to true by default but should be set to false if your adapter - will display items of varying heights. When this property is set to true and - your adapter displays items of varying heights, the scrollbar thumb will - change size as the user scrolls through the list. When set to fale, the list - will use only the number of items in the adapter and the number of items visible - on screen to determine the scrollbar's properties. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int smoothScrollbar = 0x01010231; - /** - @hide Color for the solid color background if such for optimized rendering. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int solidColor = 0x0101034a; - /** - Boolean that controls whether a view should have sound effects - enabled for events such as clicking and touching. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int soundEffectsEnabled = 0x01010215; - /** -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int spacing = 0x01010113; - /** - Default style for spinner drop down items. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int spinnerDropDownItemStyle = 0x01010087; - /** - Default spinner item style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int spinnerItemStyle = 0x01010089; - /** - Display mode for spinner options. -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
dialog0 Spinner options will be presented to the user as a dialog window.
dropdown1 Spinner options will be presented to the user as an inline dropdown - anchored to the spinner widget itself.
- */ - public static final int spinnerMode = 0x010102f1; - /** - Default Spinner style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int spinnerStyle = 0x01010081; - /** - Whether the spinners are shown. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int spinnersShown = 0x0101034b; - /** - Sets whether this ViewGroup should split MotionEvents - to separate child views during touch event dispatch. - If false (default), touch events will be dispatched to - the child view where the first pointer went down until - the last pointer goes up. - If true, touch events may be dispatched to multiple children. - MotionEvents for each pointer will be dispatched to the child - view where the initial ACTION_DOWN event happened. - See {@link android.view.ViewGroup#setMotionEventSplittingEnabled(boolean)} - for more information. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int splitMotionEvents = 0x010102ef; - /** - Sets a drawable as the content of this ImageView. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int src = 0x01010119; - /** - Specify a URI scheme specific part that must exactly match, as per - {@link android.content.IntentFilter#addDataSchemeSpecificPart - IntentFilter.addDataSchemeSpecificPart()} with - {@link android.os.PatternMatcher#PATTERN_LITERAL}. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int ssp = 0x010103e3; - /** - Specify a URI scheme specific part that matches a simple pattern, as per - {@link android.content.IntentFilter#addDataSchemeSpecificPart - IntentFilter.addDataSchemeSpecificPart()} with - {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}. - Note that because '\' is used as an escape character when - reading the string from XML (before it is parsed as a pattern), - you will need to double-escape: for example a literal "*" would - be written as "\\*" and a literal "\" would be written as - "\\\\". This is basically the same as what you would need to - write if constructing the string in Java code. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int sspPattern = 0x010103e5; - /** - Specify a URI scheme specific part that must be a prefix to match, as per - {@link android.content.IntentFilter#addDataSchemeSpecificPart - IntentFilter.addDataSchemeSpecificPart()} with - {@link android.os.PatternMatcher#PATTERN_PREFIX}. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int sspPrefix = 0x010103e4; - /** - Used by ListView and GridView to stack their content from the bottom. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int stackFromBottom = 0x010100fd; - /** - Default StackView style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int stackViewStyle = 0x01010402; - /** - Default Star style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int starStyle = 0x01010082; - /** - Start color of the gradient. -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int startColor = 0x0101019d; - /** - Delay in milliseconds before the transition starts. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int startDelay = 0x010103e2; - /** - Delay in milliseconds before the animation runs, once start time is reached. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int startOffset = 0x010101be; - /** - {@deprecated Use minDate instead.} - The first year (inclusive), for example "1940". - {@deprecated Use minDate instead.} - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - @Deprecated - public static final int startYear = 0x0101017c; - /** - Indicates that an Activity does not need to have its freeze state - (as returned by {@link android.app.Activity#onSaveInstanceState} - retained in order to be restarted. Generally you use this for activities - that do not store any state. When this flag is set, if for some reason - the activity is killed before it has a chance to save its state, - then the system will not remove it from the activity stack like - it normally would. Instead, the next time the user navigates to - it its {@link android.app.Activity#onCreate} method will be called - with a null icicle, just like it was starting for the first time. - -

This is used by the Home activity to make sure it does not get - removed if it crashes for some reason. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int stateNotNeeded = 0x01010016; - /** - State identifier indicating the popup will be above the anchor. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_above_anchor = 0x010100aa; - /** - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - indicating that the Drawable is in a view that is hardware accelerated. - This means that the device can at least render a full-screen scaled - bitmap with one layer of text and bitmaps composited on top of it - at 60fps. When this is set, the colorBackgroundCacheHint will be - ignored even if it specifies a solid color, since that optimization - is not needed. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_accelerated = 0x0101031b; - /** - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view or its parent has been "activated" meaning the user has currently - marked it as being of interest. This is an alternative representation of - state_checked for when the state should be propagated down the view hierarchy. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_activated = 0x010102fe; - /** - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_active = 0x010100a2; - /** - State identifier indicating that the object may display a check mark. - See {@link R.attr#state_checked} for the identifier that indicates whether it is - actually checked. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_checkable = 0x0101009f; - /** - State identifier indicating that the object is currently checked. See - {@link R.attr#state_checkable} for an additional identifier that can indicate if - any object may ever display a check, regardless of whether state_checked is - currently set. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_checked = 0x010100a0; - /** - State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} - indicating that the Drawable is in a view that is capable of accepting a drop of - the content currently being manipulated in a drag-and-drop operation. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_drag_can_accept = 0x01010368; - /** - State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} - indicating that a drag operation (for which the Drawable's view is a valid recipient) - is currently positioned over the Drawable. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_drag_hovered = 0x01010369; - /** - State identifier indicating the group is empty (has no children). -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_empty = 0x010100a9; - /** - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view is enabled. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_enabled = 0x0101009e; - /** - State identifier indicating the group is expanded. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_expanded = 0x010100a8; - /** - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_first = 0x010100a4; - /** - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view has input focus. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_focused = 0x0101009c; - /** - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a pointer is hovering over the view. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_hovered = 0x01010367; - /** - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_last = 0x010100a6; - /** - State for {@link android.inputmethodservice.KeyboardView KeyboardView} - key preview background. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_long_pressable = 0x0101023c; - /** - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_middle = 0x010100a5; - /** - State identifier indicating a TextView has a multi-line layout. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_multiline = 0x0101034d; - /** - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when the user is pressing down in a view. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_pressed = 0x010100a7; - /** - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view (or one of its parents) is currently selected. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_selected = 0x010100a1; - /** - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_single = 0x010100a3; - /** - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view's window has input focus. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int state_window_focused = 0x0101009d; - /** - A resource id of a static drawable. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int staticWallpaperPreview = 0x01010331; - /** - The step size of the rating. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int stepSize = 0x01010146; - /** - If set to true, this service with be automatically stopped - when the user remove a task rooted in an activity owned by - the application. The default is false. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int stopWithTask = 0x0101036a; - /** - Different audio stream types. -

Must be one of the following constant values.

- - - - - - - - - - -
ConstantValueDescription
voice0
system1
ring2
music3
alarm4
- */ - public static final int streamType = 0x01010209; - /** - The zero-based index of the columns to stretch. The column indices - must be separated by a comma: 1, 2, 5. Illegal and duplicate - indices are ignored. You can stretch all columns by using the - value "*" instead. Note that a column can be marked stretchable - and shrinkable at the same time. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int stretchColumns = 0x01010149; - /** - Defines how columns should stretch to fill the available empty space, if any. -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
none0 Stretching is disabled.
spacingWidth1 The spacing between each column is stretched.
columnWidth2 Each column is stretched equally.
spacingWidthUniform3 The spacing between each column is uniformly stretched..
- */ - public static final int stretchMode = 0x01010116; - /** - Specifies subtitle text used for navigationMode="normal" -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int subtitle = 0x010102d1; - /** - Specifies a style to use for subtitle text. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int subtitleTextStyle = 0x010102f9; - /** - The extra value of the subtype. This string can be any string and will be passed to - the SpellChecker. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int subtypeExtraValue = 0x0101039a; - /** - The unique id for the subtype. The input method framework keeps track of enabled - subtypes by ID. When the IME package gets upgraded, enabled IDs will stay enabled even - if other attributes are different. If the ID is unspecified (by calling the other - constructor or 0. Arrays.hashCode(new Object[] {locale, mode, extraValue, - isAuxiliary, overridesImplicitlyEnabledSubtype}) will be used instead. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int subtypeId = 0x010103c1; - /** - The locale of the subtype. This string should be a locale (e.g. en_US, fr_FR...) - This is also used by the framework to know the supported locales - of the spell checker. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int subtypeLocale = 0x01010399; - /** - If you wish to handle an action key while a suggestion is being displayed and - selected, there are two ways to handle this. If all of your suggestions - can handle the action key, you can simply define the action message using this - attribute. This will be added to the - {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to your - searchable activity. To examine the string, use - {@link android.content.Intent#getStringExtra getStringExtra(SearchManager.ACTION_MSG)}. - Optional attribute. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int suggestActionMsg = 0x010101dc; - /** - If you wish to handle an action key while a suggestion is being displayed and - selected, but you do not wish to enable this action key for every suggestion, - then you can use this attribute to control it on a suggestion-by-suggestion basis. - First, you must define a column (and name it here) where your suggestions will include - the action string. Then, in your content provider, you must provide this column, and - when desired, provide data in this column. - The search manager will look at your suggestion cursor, using the string - provided here in order to select a column, and will use that to select a string from - the cursor. That string will be added to the - {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to - your searchable activity. To examine the string, use - {@link android.content.Intent#getStringExtra - getStringExtra(SearchManager.ACTION_MSG)}. If the data does not exist for the - selection suggestion, the action key will be ignored.Optional attribute. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int suggestActionMsgColumn = 0x010101dd; - /** - The summary for the item. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int summary = 0x010101e9; - /** - Column in data table that summarizes this data. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int summaryColumn = 0x010102a2; - /** - The summary for the Preference in a PreferenceActivity screen when the - CheckBoxPreference is unchecked. If separate on/off summaries are not - needed, the summary attribute can be used instead. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int summaryOff = 0x010101f0; - /** - The summary for the Preference in a PreferenceActivity screen when the - CheckBoxPreference is checked. If separate on/off summaries are not - needed, the summary attribute can be used instead. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int summaryOn = 0x010101ef; - /** - Declare that your application will be able to deal with RTL (right to left) layouts. - If set to false (default value), your application will not care about RTL layouts. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int supportsRtl = 0x010103af; - /** - Set to true if this input method supports ways to switch to - a next input method (e.g. a globe key.). When this is true and - InputMethodManager#shouldOfferSwitchingToNextInputMethod() returns true, - the IME has to offer ways to to invoke InputMethodManager#switchToNextInputMethod() - accordingly. -

Note that the system determines the most appropriate next input method - and subtype in order to provide the consistent user experience in switching - between IMEs and subtypes. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int supportsSwitchingToNextInputMethod = 0x010103eb; - /** -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int supportsUploading = 0x0101029b; - /** - Minimum width for the switch component -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int switchMinWidth = 0x01010370; - /** - Minimum space between the switch and caption text -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int switchPadding = 0x01010371; - /** - Default style for switch preferences. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int switchPreferenceStyle = 0x0101036d; - /** - Default style for the Switch widget. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int switchStyle = 0x0101041f; - /** - TextAppearance style for text displayed on the switch thumb. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int switchTextAppearance = 0x0101036e; - /** - The text used on the switch itself when in the "off" state. - This should be a very SHORT string, as it appears in a small space. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int switchTextOff = 0x0101036c; - /** - The text used on the switch itself when in the "on" state. - This should be a very SHORT string, as it appears in a small space. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int switchTextOn = 0x0101036b; - /** - Flag indicating whether this content provider would like to - participate in data synchronization. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int syncable = 0x01010019; - /** - Determines whether the strip under the tab indicators is drawn or not. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int tabStripEnabled = 0x010102bd; - /** - Drawable used to draw the left part of the strip underneath the tabs. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int tabStripLeft = 0x010102bb; - /** - Drawable used to draw the right part of the strip underneath the tabs. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int tabStripRight = 0x010102bc; - /** - Default TabWidget style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int tabWidgetStyle = 0x01010083; - /** - Supply a tag for this view containing a String, to be retrieved - later with {@link android.view.View#getTag View.getTag()} or - searched for with {@link android.view.View#findViewWithTag - View.findViewWithTag()}. It is generally preferable to use - IDs (through the android:id attribute) instead of tags because - they are faster and allow for compile-time type checking. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int tag = 0x010100d1; - /** - The name of the activity this alias should launch. The activity - must be in the same manifest as the alias, and have been defined - in that manifest before the alias here. This must use a Java-style - naming convention to ensure the name is unique, for example - "com.mycompany.MyName". -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int targetActivity = 0x01010202; - /** - The class part of the ComponentName to assign to the Intent, as per - {@link android.content.Intent#setComponent Intent.setComponent()}. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int targetClass = 0x0101002f; - /** - Reference to an array resource that be used as description for the targets around the circle. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int targetDescriptions = 0x010103a0; - /** - The id of a target on which this transition will animate changes. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int targetId = 0x010103dc; - /** - The name of the application package that an Instrumentation object - will run against. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int targetPackage = 0x01010021; - /** - This is the SDK version number that the application is targeting. - It is able to run on older versions (down to minSdkVersion), but - was explicitly tested to work with the version specified here. - Specifying this version allows the platform to disable compatibility - code that are not required or enable newer features that are not - available to older applications. This may also be a string - (such as "Donut") if this is built against a development - branch, in which case minSdkVersion is also forced to be that - string. -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int targetSdkVersion = 0x01010270; - /** - Specify a task name that activities have an "affinity" to. - Use with the application tag (to supply a default affinity for all - activities in the application), or with the activity tag (to supply - a specific affinity for that component). - -

The default value for this attribute is the same as the package - name, indicating that all activities in the manifest should generally - be considered a single "application" to the user. You can use this - attribute to modify that behavior: either giving them an affinity - for another task, if the activities are intended to be part of that - task from the user's perspective, or using an empty string for - activities that have no affinity to a task. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int taskAffinity = 0x01010012; - /** - When closing the last activity of a task, this is the animation that is - run on the activity of the next task (which is entering the screen). -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int taskCloseEnterAnimation = 0x010100be; - /** - When opening an activity in a new task, this is the animation that is - run on the activity of the old task (which is exiting the screen). -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int taskCloseExitAnimation = 0x010100bf; - /** - When opening an activity in a new task, this is the animation that is - run on the activity of the new task (which is entering the screen). -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int taskOpenEnterAnimation = 0x010100bc; - /** - When opening an activity in a new task, this is the animation that is - run on the activity of the old task (which is exiting the screen). -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int taskOpenExitAnimation = 0x010100bd; - /** - When sending the current task to the background, this is the - animation that is run on the top activity of the task behind - it (which is entering the screen). -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int taskToBackEnterAnimation = 0x010100c2; - /** - When sending the current task to the background, this is the - animation that is run on the top activity of the current task - (which is exiting the screen). -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int taskToBackExitAnimation = 0x010100c3; - /** - When bringing an existing task to the foreground, this is the - animation that is run on the top activity of the task being brought - to the foreground (which is entering the screen). -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int taskToFrontEnterAnimation = 0x010100c0; - /** - When bringing an existing task to the foreground, this is the - animation that is run on the current foreground activity - (which is exiting the screen). -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int taskToFrontExitAnimation = 0x010100c1; - /** - This is the amount of tension. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int tension = 0x0101026a; - /** - Option to indicate this application is only for testing purposes. - For example, it may expose functionality or data outside of itself - that would cause a security hole, but is useful for testing. This - kind of application can not be installed without the - INSTALL_ALLOW_TEST flag, which means only through adb install. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int testOnly = 0x01010272; - /** - Text to display. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int text = 0x0101014f; - /** - Defines the alignment of the text. A heuristic is used to determine the resolved - text alignment. -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - - - - - -
ConstantValueDescription
inherit0 Default
gravity1 Default for the root view. The gravity determines the alignment, ALIGN_NORMAL, - ALIGN_CENTER, or ALIGN_OPPOSITE, which are relative to each paragraph’s - text direction
textStart2 Align to the start of the paragraph, e.g. ALIGN_NORMAL.
textEnd3 Align to the end of the paragraph, e.g. ALIGN_OPPOSITE.
center4 Center the paragraph, e.g. ALIGN_CENTER.
viewStart5 Align to the start of the view, which is ALIGN_LEFT if the view’s resolved - layoutDirection is LTR, and ALIGN_RIGHT otherwise.
viewEnd6 Align to the end of the view, which is ALIGN_RIGHT if the view’s resolved - layoutDirection is LTR, and ALIGN_LEFT otherwise
- */ - public static final int textAlignment = 0x010103b1; - /** - Present the text in ALL CAPS. This may use a small-caps form when available. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int textAllCaps = 0x0101038c; - /** - Default appearance of text: color, typeface, size, and style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearance = 0x01010034; - /** - The underline color and thickness for auto correction suggestion -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceAutoCorrectionSuggestion = 0x010103f3; - /** - Text color, typeface, size, and style for the text inside of a button. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceButton = 0x01010207; - /** - The underline color and thickness for easy correct suggestion -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceEasyCorrectSuggestion = 0x010103c3; - /** - Default appearance of text against an inverted background: - color, typeface, size, and style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceInverse = 0x01010035; - /** - Text color, typeface, size, and style for "large" text. Defaults to primary text color. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceLarge = 0x01010040; - /** - Text color, typeface, size, and style for "large" inverse text. Defaults to primary inverse text color. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceLargeInverse = 0x01010043; - /** - Text color, typeface, size, and style for the text inside of a popup menu. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceLargePopupMenu = 0x01010301; - /** - The preferred TextAppearance for the primary text of list items. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceListItem = 0x0101039e; - /** - The preferred TextAppearance for the primary text of small list items. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceListItemSmall = 0x0101039f; - /** - Text color, typeface, size, and style for "medium" text. Defaults to primary text color. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceMedium = 0x01010041; - /** - Text color, typeface, size, and style for "medium" inverse text. Defaults to primary inverse text color. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceMediumInverse = 0x01010044; - /** - The underline color and thickness for misspelled suggestion -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceMisspelledSuggestion = 0x010103f2; - /** - Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceSearchResultSubtitle = 0x010102a0; - /** - Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceSearchResultTitle = 0x010102a1; - /** - Text color, typeface, size, and style for "small" text. Defaults to secondary text color. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceSmall = 0x01010042; - /** - Text color, typeface, size, and style for "small" inverse text. Defaults to secondary inverse text color. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceSmallInverse = 0x01010045; - /** - Text color, typeface, size, and style for small text inside of a popup menu. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textAppearanceSmallPopupMenu = 0x01010302; - /** - Drawable to use for check marks. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textCheckMark = 0x01010046; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textCheckMarkInverse = 0x01010047; - /** - Color of text (usually same as colorForeground). -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColor = 0x01010098; - /** - Color of list item text in alert dialogs. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorAlertDialogListItem = 0x01010306; - /** - Color of highlighted text. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorHighlight = 0x01010099; - /** - Color of highlighted text, when used in a light theme. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorHighlightInverse = 0x0101034f; - /** - Color of hint text (displayed when the field is empty). -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorHint = 0x0101009a; - /** - Inverse hint text color. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorHintInverse = 0x0101003f; - /** - Color of link text (URLs). -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorLink = 0x0101009b; - /** - Color of link text (URLs), when used in a light theme. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorLinkInverse = 0x01010350; - /** - The most prominent text color. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorPrimary = 0x01010036; - /** - Bright text color. Only differentiates based on the disabled state. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorPrimaryDisableOnly = 0x01010037; - /** - Primary inverse text color, useful for inverted backgrounds. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorPrimaryInverse = 0x01010039; - /** - Bright inverse text color. Only differentiates based on the disabled state. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorPrimaryInverseDisableOnly = 0x0101028b; - /** - Bright inverse text color. This does not differentiate the disabled state. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorPrimaryInverseNoDisable = 0x0101003d; - /** - Bright text color. This does not differentiate the disabled state. As an example, - buttons use this since they display the disabled state via the background and not the - foreground text color. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorPrimaryNoDisable = 0x0101003b; - /** - Text color for urls in search suggestions, used by things like global search and the browser. @hide -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorSearchUrl = 0x01010267; - /** - Secondary text color. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorSecondary = 0x01010038; - /** - Secondary inverse text color, useful for inverted backgrounds. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorSecondaryInverse = 0x0101003a; - /** - Dim inverse text color. This does not differentiate the disabled state. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorSecondaryInverseNoDisable = 0x0101003e; - /** - Dim text color. This does not differentiate the disabled state. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorSecondaryNoDisable = 0x0101003c; - /** - Tertiary text color. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorTertiary = 0x01010212; - /** - Tertiary inverse text color, useful for inverted backgrounds. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int textColorTertiaryInverse = 0x01010213; - /** - Reference to a drawable that will be drawn under the insertion cursor. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textCursorDrawable = 0x01010362; - /** - Defines the direction of the text. A heuristic is used to determine the resolved text - direction of paragraphs. -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - - - - -
ConstantValueDescription
inherit0 Default
firstStrong1 Default for the root view. The first strong directional character determines the - paragraph direction. If there is no strong directional character, the paragraph - direction is the view’s resolved layout direction.
anyRtl2 The paragraph direction is RTL if it contains any strong RTL character, otherwise - it is LTR if it contains any strong LTR characters. If there are neither, the - paragraph direction is the view’s resolved layout direction.
ltr3 The paragraph direction is left to right.
rtl4 The paragraph direction is right to left.
locale5 The paragraph direction is coming from the system Locale.
- */ - public static final int textDirection = 0x010103b0; - /** - Variation of textEditPasteWindowLayout displayed when the clipboard is empty. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textEditNoPasteWindowLayout = 0x01010315; - /** - The layout of the view that is displayed on top of the cursor to paste inside a - TextEdit field. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textEditPasteWindowLayout = 0x01010314; - /** - Variation of textEditSidePasteWindowLayout displayed when the clipboard is empty. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textEditSideNoPasteWindowLayout = 0x0101035f; - /** - Used instead of textEditPasteWindowLayout when the window is moved on the side of the - insertion cursor because it would be clipped if it were positioned on top. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textEditSidePasteWindowLayout = 0x0101035e; - /** - Layout of the TextView item that will populate the suggestion popup window. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textEditSuggestionItemLayout = 0x01010374; - /** - When set to true, the list will filter results as the user types. The - List's adapter must support the Filterable interface for this to work. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int textFilterEnabled = 0x010100ff; - /** - Indicates that the content of a non-editable TextView can be selected. - Default value is false. EditText content is always selectable. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int textIsSelectable = 0x01010316; - /** - The text for the button when it is not checked. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int textOff = 0x01010125; - /** - The text for the button when it is checked. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int textOn = 0x01010124; - /** - Sets the horizontal scaling factor for the text. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int textScaleX = 0x01010151; - /** - Reference to a drawable that will be used to display a text selection - anchor for positioning the cursor within text. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textSelectHandle = 0x010102c7; - /** - Reference to a drawable that will be used to display a text selection - anchor on the left side of a selection region. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textSelectHandleLeft = 0x010102c5; - /** - Reference to a drawable that will be used to display a text selection - anchor on the right side of a selection region. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textSelectHandleRight = 0x010102c6; - /** - Reference to a style that will be used for the window containing a text - selection anchor. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textSelectHandleWindowStyle = 0x010102c8; - /** - Size of text. Recommended dimension type for text is "sp" for scaled-pixels (example: 15sp). - Supported values include the following:

-

- -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int textSize = 0x01010095; - /** - Default text typeface style. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - -
ConstantValueDescription
normal0
bold1
italic2
- */ - public static final int textStyle = 0x01010097; - /** - Reference to a style that will be used for the window containing a list of possible - text suggestions in an EditText. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textSuggestionsWindowStyle = 0x01010373; - /** - Default TextView style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int textViewStyle = 0x01010084; - /** - The overall theme to use for an activity. Use with either the - application tag (to supply a default theme for all activities) or - the activity tag (to supply a specific theme for that activity). - -

This automatically sets - your activity's Context to use this theme, and may also be used - for "starting" animations prior to the activity being launched (to - better match what the activity actually looks like). It is a reference - to a style resource defining the theme. If not set, the default - system theme will be used. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int theme = 0x01010000; - /** - Thickness of the ring. When defined, thicknessRatio is ignored. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int thickness = 0x01010260; - /** - Thickness of the ring expressed as a ratio of the ring's width. For instance, - if thicknessRatio=3, then the thickness equals the ring's width divided by 3. - This value is ignored if innerRadius is defined. Default value is 3. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int thicknessRatio = 0x0101019c; - /** - Draws the thumb on a seekbar. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int thumb = 0x01010142; - /** - An offset for the thumb that allows it to extend out of the range of the track. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int thumbOffset = 0x01010143; - /** - Amount of padding on either side of text within the switch thumb. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int thumbTextPadding = 0x01010372; - /** - Reference to a the wallpaper's thumbnail bitmap. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int thumbnail = 0x010102a5; - /** - Defines the tile mode. When the tile mode is enabled, the bitmap is repeated. - Gravity is ignored when the tile mode is enabled. Default value is "disabled". -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
disabled-1 Do not tile the bitmap. This is the default value.
clamp0 Replicates the edge color.
repeat1 Repeats the bitmap in both direction.
mirror2 Repeats the shader's image horizontally and vertically, alternating - mirror images so that adjacent images always seam.
- */ - public static final int tileMode = 0x01010201; - /** - The TimePicker style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int timePickerStyle = 0x01010404; - /** - Specifies the time zone to use. When this attribute is specified, the - TextClock will ignore the time zone of the system. To use the user's - time zone, do not specify this attribute. The default value is the - user's time zone. Please refer to {@link java.util.TimeZone} for more - information about time zone ids. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int timeZone = 0x010103cc; - /** - Set a tinting color for the image. -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int tint = 0x01010121; - /** - The title associated with the item. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int title = 0x010101e1; - /** - The condensed title associated with the item. This is used in situations where the - normal title may be too long to be displayed. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int titleCondensed = 0x010101e2; - /** - Specifies a style to use for title text. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int titleTextStyle = 0x010102f8; - /** -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int toAlpha = 0x010101cb; - /** -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int toDegrees = 0x010101b4; - /** - The destination scene in this scene change. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int toScene = 0x010103de; - /** -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int toXDelta = 0x010101c7; - /** -

May be a floating point value, such as "1.2". -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int toXScale = 0x010101c3; - /** -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int toYDelta = 0x010101c9; - /** -

May be a floating point value, such as "1.2". -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int toYScale = 0x010101c5; - /** - Amount of top padding inside the gradient shape. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int top = 0x010101ae; - /** -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int topBright = 0x010100cb; - /** -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int topDark = 0x010100c7; - /** - Radius of the top left corner. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int topLeftRadius = 0x010101a9; - /** - Extra offset for the handle at the top of the SlidingDrawer. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int topOffset = 0x01010258; - /** - Radius of the top right corner. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int topRightRadius = 0x010101aa; - /** - Drawable to use as the "track" that the switch thumb slides within. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int track = 0x0101036f; - /** - Sets the transcript mode for the list. In transcript mode, the list - scrolls to the bottom to make new items visible when they are added. -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
disabled0 Disables transcript mode. This is the default value.
normal1 The list will automatically scroll to the bottom when - a data set change notification is received and only if the last item is - already visible on screen.
alwaysScroll2 The list will automatically scroll to the bottom, no matter what items - are currently visible.
- */ - public static final int transcriptMode = 0x01010100; - /** - x location of the pivot point around which the view will rotate and scale. - This xml attribute sets the pivotX property of the View. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int transformPivotX = 0x01010320; - /** - y location of the pivot point around which the view will rotate and scale. - This xml attribute sets the pivotY property of the View. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int transformPivotY = 0x01010321; - /** - The id of a transition to be used in a particular scene change. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int transition = 0x010103df; - /** -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
together0 child transitions should be played together.
sequential1 child transitions should be played sequentially, in the same order - as the xml.
- */ - public static final int transitionOrdering = 0x010103e0; - /** - translation in x of the view. This value is added post-layout to the left - property of the view, which is set by its layout. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int translationX = 0x01010322; - /** - translation in y of the view. This value is added post-layout to the left - property of the view, which is set by its layout. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int translationY = 0x01010323; - /** - Type of gradient. The default type is linear. -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
linear0 Linear gradient.
radial1 Radial, or circular, gradient.
sweep2 Sweep, or angled or diamond, gradient.
- */ - public static final int type = 0x010101a1; - /** - Default text typeface. -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
normal0
sans1
serif2
monospace3
- */ - public static final int typeface = 0x01010096; - /** - Extra options for an activity's UI. Applies to either the {@code <activity>} or - {@code <application>} tag. If specified on the {@code <application>} - tag these will be considered defaults for all activities in the - application. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - -
ConstantValueDescription
none0 No extra UI options. This is the default.
splitActionBarWhenNarrow1 Split the options menu into a separate bar at the bottom of - the screen when severely constrained for horizontal space. - (e.g. portrait mode on a phone.) Instead of a small number - of action buttons appearing in the action bar at the top - of the screen, the action bar will split into the top navigation - section and the bottom menu section. Menu items will not be - split across the two bars; they will always appear together.
- */ - public static final int uiOptions = 0x01010398; - /** - Color used to draw the user's strokes until we are sure it's a gesture. -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int uncertainGestureColor = 0x01010276; - /** - The color for the dates of an unfocused month. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int unfocusedMonthDateColor = 0x01010344; - /** - Sets the alpha on the items that are not selected. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int unselectedAlpha = 0x0101020e; - /** - Update period in milliseconds, or 0 if the AppWidget will update itself. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int updatePeriodMillis = 0x01010250; - /** - When set to true, tells GridLayout to use default margins when none are specified - in a view's layout parameters. - The default value is false. - See {@link android.widget.GridLayout#setUseDefaultMargins(boolean)}. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int useDefaultMargins = 0x01010379; - /** - Use the drawable's intrinsic width and height as minimum size values. - Useful if the target drawable is a 9-patch or otherwise should not be scaled - down beyond a minimum size. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int useIntrinsicSizeAsMinimum = 0x01010310; - /** -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int useLevel = 0x0101019f; - /** -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int userVisible = 0x01010291; - /** - Concrete value to assign to this piece of named meta-data. - The data can later be retrieved from the meta data Bundle - through {@link android.os.Bundle#getString Bundle.getString}, - {@link android.os.Bundle#getInt Bundle.getInt}, - {@link android.os.Bundle#getBoolean Bundle.getBoolean}, - or {@link android.os.Bundle#getFloat Bundle.getFloat} depending - on the type used here. -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

May be an integer value, such as "100". -

May be a boolean value, either "true" or "false". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

May be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int value = 0x01010024; - /** - Value the animation starts from. -

May be an integer value, such as "100". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

May be a floating point value, such as "1.2". -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int valueFrom = 0x010102de; - /** - Value the animation animates to. -

May be an integer value, such as "100". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

May be a floating point value, such as "1.2". -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int valueTo = 0x010102df; - /** - The type of valueFrom and valueTo. -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
floatType0 valueFrom and valueTo are floats. This is the default value is valueType is - unspecified. Note that if either valueFrom or valueTo represent colors - (beginning with "#"), then this attribute is ignored and the color values are - interpreted as integers.
intType1 valueFrom and valueTo are integers.
- */ - public static final int valueType = 0x010102e0; - /** - If true, allows the drawable's padding to change based on the - current state that is selected. If false, the padding will - stay the same (based on the maximum padding of all the states). - Enabling this feature requires that the owner of the drawable - deal with performing layout when the state changes, which is - often not supported. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int variablePadding = 0x01010195; - /** - The vendor name if this print service is vendor specific. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int vendor = 0x010103e7; - /** - Internal version code. This is the number used to determine whether - one version is more recent than another: it has no other meaning than - that higher numbers are more recent. You could use this number to - encode a "x.y" in the lower and upper 16 bits, make it a build - number, simply increase it by one each time a new version is - released, or define it however else you want, as long as each - successive version has a higher number. This is not a version - number generally shown to the user, that is usually supplied - with {@link android.R.attr#versionName}. -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int versionCode = 0x0101021b; - /** - The text shown to the user to indicate the version they have. This - is used for no other purpose than display to the user; the actual - significant version number is given by {@link android.R.attr#versionCode}. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int versionName = 0x0101021c; - /** - Amount to offset the touch Y coordinate by, for bias correction. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int verticalCorrection = 0x0101023a; - /** - Default vertical divider between menu items. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int verticalDivider = 0x0101012e; - /** - Default vertical gap between rows of keys. -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int verticalGap = 0x01010240; - /** - Determines which side the vertical scroll bar should be placed on. -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
defaultPosition0 Place the scroll bar wherever the system default determines.
left1 Place the scroll bar on the left.
right2 Place the scroll bar on the right.
- */ - public static final int verticalScrollbarPosition = 0x01010334; - /** - Defines the default vertical spacing between rows. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int verticalSpacing = 0x01010115; - /** - Controls the initial visibility of the view. -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
visible0 Visible on screen; the default value.
invisible1 Not displayed, but taken into account during layout (space is left for it).
gone2 Completely hidden, as if the view had not been added.
- */ - public static final int visibility = 0x010100dc; - /** - Provides initial visibility state of the drawable; the default - value is false. See - {@link android.graphics.drawable.Drawable#setVisible}. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int visible = 0x01010194; - /** - Flag indicating whether the application requests the VM to operate in - the safe mode. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int vmSafeMode = 0x010102b8; - /** - If provided, this specifies the spoken language to be expected, and that it will be - different than the one set in the {@link java.util.Locale#getDefault()}. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int voiceLanguage = 0x01010255; - /** - If provided, this specifies the language model that should be used by the - voice recognition system. See - {@link android.speech.RecognizerIntent#EXTRA_LANGUAGE_MODEL } for more information. - If not provided, the default value - {@link android.speech.RecognizerIntent#LANGUAGE_MODEL_FREE_FORM } will be used. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int voiceLanguageModel = 0x01010253; - /** - If provided, enforces the maximum number of results to return, including the "best" - result which will always be provided as the SEARCH intent's primary query. Must be one - or greater. If not provided, the recognizer will choose how many results to return. - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int voiceMaxResults = 0x01010256; - /** - If provided, this specifies a prompt that will be displayed during voice input. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int voicePromptText = 0x01010254; - /** - Voice search features are controlled by mode bits in this field. Omitting - this field, or setting to zero, provides default behavior. - If showVoiceSearchButton is set, then launchWebSearch or launchRecognizer must - also be set. Optional attribute. - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - -
ConstantValueDescription
showVoiceSearchButton0x01 If set, display a voice search button. This only takes effect if voice search is - available on the device.
launchWebSearch0x02 If set, the voice search button will take the user directly to a built-in - voice web search activity. Most applications will not use this flag, as it - will take the user away from the activity in which search was invoked.
launchRecognizer0x04 If set, the voice search button will take the user directly to a built-in - voice recording activity. This activity will prompt the user to speak, - transcribe the spoken text, and forward the resulting query - text to the searchable activity, just as if the user had typed it into - the search UI and clicked the search button.
- */ - public static final int voiceSearchMode = 0x01010252; - /** - When opening a new activity that hides the wallpaper, while - currently showing the wallpaper, this is the animation that - is run on the new activity (which is entering the screen). -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int wallpaperCloseEnterAnimation = 0x01010295; - /** - When opening a new activity that hides the wallpaper, while - currently showing the wallpaper, this is the animation that - is run on the old wallpaper activity (which is exiting the screen). -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int wallpaperCloseExitAnimation = 0x01010296; - /** - When closing a foreround activity that is on top of the wallpaper - when the previous activity is also on top of the wallpaper, - this is the animation that is run on the previous activity - (which is entering the screen). The wallpaper remains - static behind the animation. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int wallpaperIntraCloseEnterAnimation = 0x01010299; - /** - When closing a foreround activity that is on top of the wallpaper - when the previous activity is also on top of the wallpaper, - this is the animation that is run on the current activity - (which is exiting the screen). The wallpaper remains - static behind the animation. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int wallpaperIntraCloseExitAnimation = 0x0101029a; - /** - When opening a new activity that is on top of the wallpaper - when the current activity is also on top of the wallpaper, - this is the animation that is run on the new activity - (which is entering the screen). The wallpaper remains - static behind the animation. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int wallpaperIntraOpenEnterAnimation = 0x01010297; - /** - When opening a new activity that is on top of the wallpaper - when the current activity is also on top of the wallpaper, - this is the animation that is run on the current activity - (which is exiting the screen). The wallpaper remains - static behind the animation. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int wallpaperIntraOpenExitAnimation = 0x01010298; - /** - When opening a new activity that shows the wallpaper, while - currently not showing the wallpaper, this is the animation that - is run on the new wallpaper activity (which is entering the screen). -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int wallpaperOpenEnterAnimation = 0x01010293; - /** - When opening a new activity that shows the wallpaper, while - currently not showing the wallpaper, this is the animation that - is run on the current activity (which is exiting the screen). -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int wallpaperOpenExitAnimation = 0x01010294; - /** - Default WebTextView style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int webTextViewStyle = 0x010102b9; - /** - Default WebView style. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int webViewStyle = 0x01010085; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int webviewchromium_select_dialog_multichoice = 0x01010481; - /** -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int webviewchromium_select_dialog_singlechoice = 0x01010482; - /** - The text appearance for the week day abbreviation of the calendar header. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int weekDayTextAppearance = 0x01010348; - /** - The color for the week numbers. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int weekNumberColor = 0x01010345; - /** - The color for the separator line between weeks. -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - */ - public static final int weekSeparatorLineColor = 0x01010346; - /** - Defines the maximum weight sum. If unspecified, the sum is computed - by adding the layout_weight of all of the children. This can be - used for instance to give a single child 50% of the total available - space by giving it a layout_weight of 0.5 and setting the weightSum - to 1.0. -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int weightSum = 0x01010128; - /** - Optional parameter which indicates where this widget can be shown, - ie. home screen, keyguard or both. - resized. Supports combined values using | operator. -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one or more (separated by '|') of the following constant values.

- - - - - - - -
ConstantValueDescription
home_screen0x1
keyguard0x2
- */ - public static final int widgetCategory = 0x010103c4; - /** - The layout for the controllable widget portion of a Preference. This is inflated - into the layout for a Preference and should be used more frequently than - the layout attribute. For example, a checkbox preference would specify - a custom layout (consisting of just the CheckBox) here. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int widgetLayout = 0x010101eb; - /** - Makes the TextView be exactly this many pixels wide. - You could get the same effect by specifying this number in the - layout parameters. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int width = 0x01010159; - /** - Flag indicating whether this window should have an Action Bar - in place of the usual title bar. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowActionBar = 0x010102cd; - /** - Flag indicating whether this window's Action Bar should overlay - application content. Does nothing if the window would not - have an Action Bar. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowActionBarOverlay = 0x010102e4; - /** - Flag indicating whether action modes should overlay window content - when there is not reserved space for their UI (such as an Action Bar). -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowActionModeOverlay = 0x010102dd; - /** - Reference to a style resource holding - the set of window animations to use, which can be - any of the attributes defined by - {@link android.R.styleable#WindowAnimation}. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int windowAnimationStyle = 0x010100ae; - /** - Drawable to use as the overall window background. As of - {@link android.os.Build.VERSION_CODES#HONEYCOMB}, this may - be a selector that uses state_accelerated to pick a non-solid - color when running on devices that can draw such a bitmap - with complex compositing on top at 60fps. - -

There are a few special considerations to use when setting this - drawable: -

-

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int windowBackground = 0x01010054; - /** - Control whether a container should automatically close itself if - the user touches outside of it. This only applies to activities - and dialogs. - -

Note: this attribute will only be respected for applications - that are targeting {@link android.os.Build.VERSION_CODES#HONEYCOMB} - or later. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowCloseOnTouchOutside = 0x0101035b; - /** - This Drawable is overlaid over the foreground of the Window's content area, usually - to place a shadow below the title. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int windowContentOverlay = 0x01010059; - /** - Flag allowing you to disable the preview animation for a window. - The default value is false; if set to true, the system can never - use the window's theme to show a preview of it before your - actual instance is shown to the user. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowDisablePreview = 0x01010222; - /** - Flag indicating that this window should allow touches to be split - across other windows that also support split touch. - The default value is true for applications with a targetSdkVersion - of Honeycomb or newer; false otherwise. - When this flag is false, the first pointer that goes down determines - the window to which all subsequent touches go until all pointers go up. - When this flag is true, each pointer (not necessarily the first) that - goes down determines the window to which all subsequent touches of that - pointer will go until that pointers go up thereby enabling touches - with multiple pointers to be split across multiple windows. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowEnableSplitTouch = 0x01010317; - /** - The animation used when a window is being added. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int windowEnterAnimation = 0x010100b4; - /** - The animation used when a window is being removed. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int windowExitAnimation = 0x010100b5; - /** - A fixed height for the window along the major axis of the screen, - that is, when in portrait. Can be either an absolute dimension - or a fraction of the screen size in that dimension. -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowFixedHeightMajor = 0x01010427; - /** - A fixed height for the window along the minor axis of the screen, - that is, when in landscape. Can be either an absolute dimension - or a fraction of the screen size in that dimension. -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowFixedHeightMinor = 0x01010425; - /** - A fixed width for the window along the major axis of the screen, - that is, when in landscape. Can be either an absolute dimension - or a fraction of the screen size in that dimension. -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowFixedWidthMajor = 0x01010424; - /** - A fixed width for the window along the minor axis of the screen, - that is, when in portrait. Can be either an absolute dimension - or a fraction of the screen size in that dimension. -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowFixedWidthMinor = 0x01010426; - /** - Drawable to use as a frame around the window. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int windowFrame = 0x01010055; - /** - Flag indicating whether this window should fill the entire screen. Corresponds - to {@link android.view.WindowManager.LayoutParams#FLAG_FULLSCREEN}. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowFullscreen = 0x0101020d; - /** - The animation used when a window is going from VISIBLE to INVISIBLE. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int windowHideAnimation = 0x010100b7; - /** - Flag indicating whether this is a floating window. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowIsFloating = 0x01010057; - /** - Flag indicating whether this is a translucent window. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowIsTranslucent = 0x01010058; - /** - The minimum width the window is allowed to be, along the major - axis of the screen. That is, when in landscape. Can be either - an absolute dimension or a fraction of the screen size in that - dimension. -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowMinWidthMajor = 0x01010356; - /** - The minimum width the window is allowed to be, along the minor - axis of the screen. That is, when in portrait. Can be either - an absolute dimension or a fraction of the screen size in that - dimension. -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowMinWidthMinor = 0x01010357; - /** - Flag indicating that this window should not be displayed at all. - The default value is false; if set to true, and this window is - the main window of an Activity, then it will never actually - be added to the window manager. This means that your activity - must immediately quit without waiting for user interaction, - because there will be no such interaction coming. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowNoDisplay = 0x0101021e; - /** - Flag indicating whether there should be no title on this window. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowNoTitle = 0x01010056; - /** - Flag indicating whether this window should extend into overscan region. Corresponds - to {@link android.view.WindowManager.LayoutParams#FLAG_LAYOUT_IN_OVERSCAN}. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowOverscan = 0x010103cf; - /** - The animation used when a window is going from INVISIBLE to VISIBLE. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int windowShowAnimation = 0x010100b6; - /** - Flag indicating that this window's background should be the - user's current wallpaper. Corresponds - to {@link android.view.WindowManager.LayoutParams#FLAG_SHOW_WALLPAPER}. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowShowWallpaper = 0x01010292; - /** - Defines the default soft input state that this window would - like when it is displayed. Corresponds - to {@link android.view.WindowManager.LayoutParams#softInputMode}. -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - -
ConstantValueDescription
stateUnspecified0 Not specified, use what the system thinks is best. This - is the default.
stateUnchanged1 Leave the soft input window as-is, in whatever state it - last was.
stateHidden2 Make the soft input area hidden when normally appropriate - (when the user is navigating forward to your window).
stateAlwaysHidden3 Always make the soft input area hidden when this window - has input focus.
stateVisible4 Make the soft input area visible when normally appropriate - (when the user is navigating forward to your window).
stateAlwaysVisible5 Always make the soft input area visible when this window - has input focus.
adjustUnspecified0x00 The window resize/pan adjustment has not been specified, - the system will automatically select between resize and pan - modes, depending - on whether the content of the window has any layout views - that can scroll their contents. If there is such a view, - then the window will be resized, with the assumption being - that the resizeable area can be reduced to make room for - the input UI.
adjustResize0x10 Always resize the window: the content area of the window is - reduced to make room for the soft input area.
adjustPan0x20 Don't resize the window to make room for the soft input area; - instead pan the contents of the window as focus moves inside - of it so that the user can see what they are typing. This is - generally less desireable than panning because the user may - need to close the input area to get at and interact with - parts of the window.
adjustNothing0x30 Don't resize or pan the window to make room for the - soft input area; the window is never adjusted for it.
- */ - public static final int windowSoftInputMode = 0x0101022b; - /** - The style resource to use for a window's title area. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int windowTitleBackgroundStyle = 0x0101005c; - /** - The style resource to use for a window's title bar height. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowTitleSize = 0x0101005a; - /** - The style resource to use for a window's title text. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int windowTitleStyle = 0x0101005b; - /** - Flag indicating whether this window requests a translucent navigation bar. Corresponds - to {@link android.view.WindowManager.LayoutParams#FLAG_TRANSLUCENT_NAVIGATION}. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowTranslucentNavigation = 0x010103f0; - /** - Flag indicating whether this window requests a translucent status bar. Corresponds - to {@link android.view.WindowManager.LayoutParams#FLAG_TRANSLUCENT_STATUS}. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int windowTranslucentStatus = 0x010103ef; - /** - A specific {@link android.R.attr#permission} name for write - access to a {@link android.content.ContentProvider}. See the - Security and Permissions - document for more information on permissions. -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int writePermission = 0x01010008; - /** - A coordinate in the X dimension. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int x = 0x010100ac; - /** - Indicates whether the application supports extra large screen form-factors. -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int xlargeScreens = 0x010102bf; - /** - A coordinate in the Y dimension. -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - */ - public static final int y = 0x010100ad; - /** - Default style for YesNoPreference. -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - */ - public static final int yesNoPreferenceStyle = 0x01010090; - /** - Allows for an adjustment of the Z ordering of the content being - animated for the duration of the animation. The default value is normal. -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
normal0 The content being animated be kept in its current Z order.
top1 The content being animated is forced on top of all other - content for the duration of the animation.
bottom-1 The content being animated is forced under all other - content for the duration of the animation.
- */ - public static final int zAdjustment = 0x010101c1; - } - public static final class - bool { - public static final int action_bar_embed_tabs = 0x01110004; - public static final int action_bar_embed_tabs_pre_jb = 0x01110005; - public static final int action_bar_expanded_action_views_exclusive = 0x01110009; - /** - Whether action menu items should obey the "withText" showAsAction - flag. This may be set to false for situations where space is - extremely limited. - */ - public static final int config_allowActionMenuItemTextWithIcon = 0x01110046; - /** - If true, the screen can be rotated via the accelerometer in all 4 - rotations as the default behavior. - If true, the screen can be rotated via the accelerometer in all 4 - rotations as the default behavior. - */ - public static final int config_allowAllRotations = 0x0111001e; - /** - * Set to true if the RSSI should always display CDMA signal strength even on EVDO - */ - public static final int config_alwaysUseCdmaRssi = 0x01110042; - /** - * If this is true, the screen will fade off. - */ - public static final int config_animateScreenLights = 0x0111001c; - /** - * Don't name config resources like this. It should look like config_annoyDianne - */ - public static final int config_annoy_dianne = 0x0111001a; - /** - Flag indicating whether the we should enable the automatic brightness in Settings. - Software implementation will be used if config_hardware_auto_brightness_available is not set - */ - public static final int config_automatic_brightness_available = 0x01110019; - /** - Device configuration indicating whether we should avoid using accelerated graphics - in certain places to reduce RAM footprint. This is ignored if ro.config.low_ram - is true (in that case this is assumed true as well). It can allow you to tune down - your device's memory use without going to the point of causing applications to turn - off features. - */ - public static final int config_avoidGfxAccel = 0x01110015; - /** - Boolean indicating if current platform need do one-time bluetooth address - re-validation - */ - public static final int config_bluetooth_address_validation = 0x01110036; - /** - Enable/disable default bluetooth profiles: - HSP_AG, ObexObjectPush, Audio, NAP - */ - public static final int config_bluetooth_default_profiles = 0x0111003a; - /** - * Boolean indicating if current platform supports BLE peripheral mode - */ - public static final int config_bluetooth_le_peripheral_mode_supported = 0x01110037; - /** - Boolean indicating if current platform supports bluetooth SCO for off call - use cases - */ - public static final int config_bluetooth_sco_off_call = 0x01110034; - /** - * Enables built-in SIP phone capability - */ - public static final int config_built_in_sip_phone = 0x0111003c; - /** - Whether camera shutter sound is forced or not (country specific). - Whether camera shutter sound is forced or not (country specific). - Whether camera shutter sound is forced or not (country specific). - */ - public static final int config_camera_sound_forced = 0x01110052; - /** - Control whether being in the car dock should enable accelerometer based - screen orientation. This defaults to true because putting a device in - a car dock make the accelerometer more a physical input (like a lid). - */ - public static final int config_carDockEnablesAccelerometer = 0x01110021; - /** - * Set to true to add links to Cell Broadcast app from Settings and MMS app. - */ - public static final int config_cellBroadcastAppLinks = 0x0111004c; - /** - Control whether being in the desk dock should enable accelerometer - based screen orientation. This defaults to true because it is - common for desk docks to be sold in a variety of form factors - with different orientations. Since we cannot always tell these docks - apart and the docks cannot report their true orientation on their own, - we rely on gravity to determine the effective orientation. - */ - public static final int config_deskDockEnablesAccelerometer = 0x01110020; - /** - * Allow the menu hard key to be disabled in LockScreen on some devices - */ - public static final int config_disableMenuKeyInLockScreen = 0x01110027; - /** - Set to true if we need to not prefer an APN. - This is being added to enable a simple scenario of pre-paid - provisioning on some carriers, working around a bug (7305641) - where if the preferred is used we don't try the others. - */ - public static final int config_dontPreferApn = 0x01110053; - /** - * If supported and enabled, are dreams activated when docked? (by default) - */ - public static final int config_dreamsActivatedOnDockByDefault = 0x0111004a; - /** - * If supported and enabled, are dreams activated when asleep and charging? (by default) - */ - public static final int config_dreamsActivatedOnSleepByDefault = 0x0111004b; - /** - * If supported, are dreams enabled? (by default) - */ - public static final int config_dreamsEnabledByDefault = 0x01110049; - /** - * Is the dreams feature supported? - */ - public static final int config_dreamsSupported = 0x01110048; - /** - If this value is true, duplicate Source/Destination port fields - in WDP header of some carriers OMADM wap push are supported. - ex: MSGTYPE-TotalSegments-CurrentSegment - -SourcePortDestPort-SourcePortDestPort-OMADM PDU - If false, not supported. - */ - public static final int config_duplicate_port_omadm_wappush = 0x01110043; - /** - Whether to enable fused location provider overlay which allows fused - location provider to be replaced by an app at run-time. When disabled, - only the config_fusedLocationProviderPackageName package will be - searched for fused location provider, otherwise packages whose - signature matches the signatures of config_locationProviderPackageNames - will be searched, and the service with the highest version number will - be picked. Anyone who wants to disable the overlay mechanism can set it - to false. - - */ - public static final int config_enableFusedLocationOverlay = 0x01110031; - /** - Whether to enable geocoder overlay which allows geocoder to be replaced - by an app at run-time. When disabled, only the - config_geocoderProviderPackageName package will be searched for - geocoder, otherwise packages whose signature matches the signatures of - config_locationProviderPackageNames will be searched, and the service - with the highest version number will be picked. Anyone who wants to - disable the overlay mechanism can set it to false. - - */ - public static final int config_enableGeocoderOverlay = 0x01110032; - /** - Whether to enable geofence overlay which allows geofence to be replaced - by an app at run-time. When disabled, only the - config_geofenceProviderPackageName package will be searched for - geofence implementation, otherwise packages whose signature matches the - signatures of config_locationProviderPackageNames will be searched, and - the service with the highest version number will be picked. Anyone who - wants to disable the overlay mechanism can set it to false. - - */ - public static final int config_enableGeofenceOverlay = 0x01110033; - /** - * Don't show lock screen before unlock screen (PIN/pattern/password) - */ - public static final int config_enableLockBeforeUnlockScreen = 0x01110028; - /** - Disable lockscreen rotation by default - Enable lockscreen rotation - */ - public static final int config_enableLockScreenRotation = 0x01110029; - /** - * Enable lockscreen translucent decor by default - */ - public static final int config_enableLockScreenTranslucentDecor = 0x0111002a; - /** - Whether to enable network location overlay which allows network - location provider to be replaced by an app at run-time. When disabled, - only the config_networkLocationProviderPackageName package will be - searched for network location provider, otherwise packages whose - signature matches the signatures of config_locationProviderPackageNames - will be searched, and the service with the highest version number will - be picked. Anyone who wants to disable the overlay mechanism can set it - to false. - - */ - public static final int config_enableNetworkLocationOverlay = 0x01110030; - /** - * If this is true, key chords can be used to take a screenshot on the device. - */ - public static final int config_enableScreenshotChord = 0x0111001d; - /** - * Enable translucent decor by default - */ - public static final int config_enableTranslucentDecor = 0x0111002b; - /** - * True if WallpaperService is enabled - */ - public static final int config_enableWallpaperService = 0x0111002f; - /** - Whether WiFi display is supported by this device. - There are many prerequisites for this feature to work correctly. - Here are a few of them: - * The WiFi radio must support WiFi P2P. - * The WiFi radio must support concurrent connections to the WiFi display and - to an access point. - * The Audio Flinger audio_policy.conf file must specify a rule for the "r_submix" - remote submix module. This module is used to record and stream system - audio output to the WiFi display encoder in the media server. - * The remote submix module "audio.r_submix.default" must be installed on the device. - * The device must be provisioned with HDCP keys (for protected content). - - */ - public static final int config_enableWifiDisplay = 0x0111004e; - /** - Enable emergency call when sim is locked or puk locked. Some countries/carriers do not - allow emergency calls to be placed without the IMSI, which is locked in the SIM. - If so, this should be set to 'false' in an overlay. - */ - public static final int config_enable_emergency_call_while_sim_locked = 0x0111002d; - /** - Enable puk unlockscreen by default. - If unlock screen is disabled, the puk should be unlocked through Emergency Dialer - */ - public static final int config_enable_puk_unlock_screen = 0x0111002c; - /** - Flag indicating that this device does not rotate and will always remain in its default - orientation. Activities that desire to run in a non-compatible orientation will be run - from an emulated display within the physical display. - */ - public static final int config_forceDefaultOrientation = 0x01110057; - /** - * Is the notification LED intrusive? Used to decide if there should be a disable option - */ - public static final int config_intrusiveNotificationLed = 0x01110026; - /** - Indicate whether closing the lid causes the device to go to sleep and opening - it causes the device to wake up. - The default is false. - */ - public static final int config_lidControlsSleep = 0x01110022; - /** - If this value is true, The mms content-disposition field is supported correctly. - If false, Content-disposition fragments are ignored - */ - public static final int config_mms_content_disposition_support = 0x01110041; - /** - * Set to true if after a provisioning apn the radio should be restarted - */ - public static final int config_restartRadioAfterProvisioning = 0x01110054; - /** - If true, the direction rotation is applied to get to an application's requested - orientation is reversed. Normally, the model is that landscape is - clockwise from portrait; thus on a portrait device an app requesting - landscape will cause a clockwise rotation, and on a landscape device an - app requesting portrait will cause a counter-clockwise rotation. Setting - true here reverses that logic. - */ - public static final int config_reverseDefaultRotation = 0x0111001f; - /** - Whether safe headphone volume is enabled or not (country specific). - Whether safe headphone volume is enabled or not (country specific). - Whether safe headphone volume is enabled or not (country specific). - Whether safe headphone volume is enabled or not (country specific). - Whether safe headphone volume is enabled or not (country specific). - Whether safe headphone volume is enabled or not (country specific). - Whether safe headphone volume is enabled or not (country specific). - Whether safe headphone volume is enabled or not (country specific). - */ - public static final int config_safe_media_volume_enabled = 0x01110050; - /** - Flag indicating whether the AUDIO_BECOMING_NOISY notification should - be sent during a change to the audio output device. - */ - public static final int config_sendAudioBecomingNoisy = 0x01110012; - /** - Flag indicating whether the surface flinger has limited - alpha compositing functionality in hardware. If set, the window - manager will disable alpha trasformation in animations where not - strictly needed. - */ - public static final int config_sf_limitedAlpha = 0x0111000d; - /** - Flag indicating whether the surface flinger is inefficient - at performing a blur. Used by parts of the UI to turn off - the blur effect where it isn't worth the performance hit. - As of Honeycomb, blurring is not supported anymore. - */ - public static final int config_sf_slowBlur = 0x0111000f; - /** - Sets whether menu shortcuts should be displayed on panel menus when - a keyboard is present. - */ - public static final int config_showMenuShortcutsWhenKeyboardPresent = 0x0111003e; - /** - Whether a software navigation bar should be shown. NOTE: in the future this may be - autodetected from the Configuration. - */ - public static final int config_showNavigationBar = 0x01110044; - /** - * Enables SIP on WIFI only - */ - public static final int config_sip_wifi_only = 0x0111003b; - /** - Flag indicating whether the current device allows sms service. - If true, this means that the device supports both sending and - receiving sms via the telephony network. - This can be overridden to false for "data only" devices - which can't send and receive sms message. - - Note: Disable SMS also disable voicemail waiting sms, - cell broadcasting sms, and MMS. - */ - public static final int config_sms_capable = 0x01110039; - /** - If this value is true, Sms encoded as octet is decoded by utf8 decoder. - If false, decoded by Latin decoder. - */ - public static final int config_sms_utf8_support = 0x01110040; - /** - * Flag indicating if the speed up audio on mt call code should be executed - */ - public static final int config_speed_up_audio_on_mt_calls = 0x01110055; - /** - set to false if we need to show user confirmation - when alpha identifier is not provided by the UICC - */ - public static final int config_stkNoAlphaUsrCnf = 0x01110058; - /** - Indicate whether to allow the device to suspend when the screen is off - due to the proximity sensor. This resource should only be set to true - if the sensor HAL correctly handles the proximity sensor as a wake-up source. - Otherwise, the device may fail to wake out of suspend reliably. - The default is false. - */ - public static final int config_suspendWhenScreenOffDueToProximity = 0x01110023; - /** - * Enables swipe versus poly-finger touch disambiguation in the KeyboardView - */ - public static final int config_swipeDisambiguation = 0x0111002e; - /** - * The default value if the SyncStorageEngine should sync automatically or not - */ - public static final int config_syncstorageengine_masterSyncAutomatically = 0x0111004d; - /** - * The VoiceMail default value is displayed to my own number if it is true - */ - public static final int config_telephony_use_own_number_for_voicemail = 0x0111003f; - /** - * Enables or disables fading edges when marquee is enabled in TextView. - */ - public static final int config_ui_enableFadingMarquee = 0x01110013; - /** - XXXXXX END OF RESOURCES USING WRONG NAMING CONVENTION - If this is true, the screen will come on when you unplug usb/power/whatever. - */ - public static final int config_unplugTurnsOnScreen = 0x0111001b; - /** - When true use the linux /dev/input/event subsystem to detect the switch changes - on the headphone/microphone jack. When false use the older uevent framework. - */ - public static final int config_useDevInputEventForAudioJack = 0x0111004f; - /** - Flag indicating that the media framework should not allow changes or mute on any - stream or master volumes. - */ - public static final int config_useFixedVolume = 0x01110056; - /** - Flag indicating that the media framework should allow changing - master volume stream and nothing else . - */ - public static final int config_useMasterVolume = 0x01110010; - /** - Flag indicating that the media framework should support playing of sounds on volume - key usage. This adds noticeable additional overhead to volume key processing, so - is disableable for products for which it is irrelevant. - */ - public static final int config_useVolumeKeySounds = 0x01110011; - public static final int config_use_strict_phone_number_comparation = 0x01110025; - /** - Flag indicating whether the current device is "voice capable". - If true, this means that the device supports circuit-switched - (i.e. voice) phone calls over the telephony network, and is - allowed to display the in-call UI while a cellular voice call is - active. This can be overridden to false for "data only" devices - which can't make voice calls and don't support any in-call UI. - - Note: this flag is subtly different from the - PackageManager.FEATURE_TELEPHONY system feature, which is - available on *any* device with a telephony radio, even if the - device is data-only. - */ - public static final int config_voice_capable = 0x01110038; - /** - Set to true if the wifi display supports compositing content stored - in gralloc protected buffers. For this to be true, there must exist - a protected hardware path for surface flinger to composite and send - protected buffers to the wifi display video encoder. - - If this flag is false, we advise applications not to use protected - buffers (if possible) when presenting content to a wifi display because - the content may be blanked. - - This flag controls whether the {@link Display#FLAG_SUPPORTS_PROTECTED_BUFFERS} - flag is set for wifi displays. - - */ - public static final int config_wifiDisplaySupportsProtectedBuffers = 0x01110051; - /** - Boolean indicating whether the wifi chipset supports background scanning mechanism. - This mechanism allows the host to remain in suspend state and the dongle to actively - scan and wake the host when a configured SSID is detected by the dongle. This chipset - capability can provide power savings when wifi needs to be always kept on. - */ - public static final int config_wifi_background_scan_support = 0x01110017; - /** - * Wifi driver supports batched scan - */ - public static final int config_wifi_batched_scan_supported = 0x01110018; - /** - * Boolean indicating whether the wifi chipset has dual frequency band support - */ - public static final int config_wifi_dual_band_support = 0x01110016; - /** - * Set and Unsets WiMAX - */ - public static final int config_wimaxEnabled = 0x01110047; - public static final int preferences_prefer_dual_pane = 0x01110007; - public static final int show_ongoing_ime_switcher = 0x01110008; - /** - Boolean indicating if restoring network selection should be skipped - The restoring is handled by modem if it is true - */ - public static final int skip_restoring_network_selection = 0x0111003d; - public static final int split_action_bar_is_narrow = 0x01110006; - public static final int target_honeycomb_needs_options_menu = 0x0111000a; - } - public static final class color { - public static final int background_dark = 0x0106000e; - public static final int background_light = 0x0106000f; - public static final int black = 0x0106000c; - /** - * Default color for notification LED. - */ - public static final int config_defaultNotificationColor = 0x0106006f; - public static final int darker_gray = 0x01060000; - /** - * A really bright Holo shade of blue - */ - public static final int holo_blue_bright = 0x0106001b; - /** - * A dark Holo shade of blue - */ - public static final int holo_blue_dark = 0x01060013; - /** - * A light Holo shade of blue - */ - public static final int holo_blue_light = 0x01060012; - /** - * A dark Holo shade of green - */ - public static final int holo_green_dark = 0x01060015; - /** - * A light Holo shade of green - */ - public static final int holo_green_light = 0x01060014; - /** - * A dark Holo shade of orange - */ - public static final int holo_orange_dark = 0x01060019; - /** - * A light Holo shade of orange - */ - public static final int holo_orange_light = 0x01060018; - /** - * A Holo shade of purple - */ - public static final int holo_purple = 0x0106001a; - /** - * A dark Holo shade of red - */ - public static final int holo_red_dark = 0x01060017; - /** - * A light Holo shade of red - */ - public static final int holo_red_light = 0x01060016; - public static final int input_method_navigation_guard = 0x01060032; - public static final int primary_text_dark = 0x01060001; - public static final int primary_text_dark_nodisable = 0x01060002; - public static final int primary_text_light = 0x01060003; - public static final int primary_text_light_nodisable = 0x01060004; - public static final int secondary_text_dark = 0x01060005; - public static final int secondary_text_dark_nodisable = 0x01060006; - public static final int secondary_text_light = 0x01060007; - public static final int secondary_text_light_nodisable = 0x01060008; - public static final int tab_indicator_text = 0x01060009; - public static final int tab_indicator_text_v4 = 0x01060085; - public static final int tertiary_text_dark = 0x01060010; - public static final int tertiary_text_light = 0x01060011; - public static final int transparent = 0x0106000d; - public static final int webviewchromium_autofill_dark_divider_color = 0x01060073; - public static final int webviewchromium_autofill_divider_color = 0x01060072; - public static final int webviewchromium_color_picker_background_color = 0x01060071; - public static final int webviewchromium_color_picker_border_color = 0x01060070; - public static final int white = 0x0106000b; - public static final int widget_edittext_dark = 0x0106000a; - } - public static final class dimen { - /** - * Touch slop for the global toggle accessibility gesture - */ - public static final int accessibility_touch_slop = 0x0105006d; - /** - * Maximum height for a stacked tab bar as part of an action bar - */ - public static final int action_bar_stacked_max_height = 0x01050055; - /** - Maximum width for a stacked action bar tab. This prevents - action bar tabs from becoming too wide on a wide screen when only - a few are present. - */ - public static final int action_bar_stacked_tab_max_width = 0x01050056; - /** - The standard size (both width and height) of an application icon that - will be displayed in the app launcher and elsewhere. - */ - public static final int app_icon_size = 0x01050000; - /** - Minimum span needed to begin a touch scaling gesture. - If the span is equal to or greater than this size, a scaling gesture - will begin, where supported. (See android.view.ScaleGestureDetector) - - This also takes into account the size of any active touch points. - Devices with screens that deviate too far from their assigned density - bucket should consider tuning this value in a device-specific overlay. - For best results, care should be taken such that this value remains - larger than the minimum reported touchMajor/touchMinor values - reported by the hardware. - Use a larger scaling span for larger screen devices. - */ - public static final int config_minScalingSpan = 0x01050009; - /** - Minimum accepted value for touchMajor while scaling. This may be tuned - per-device in overlays. - */ - public static final int config_minScalingTouchMajor = 0x0105000a; - /** - The maximum width we would prefer dialogs to be. 0 if there is no - maximum (let them grow as large as the screen). Actual values are - specified for -large and -xlarge configurations. - see comment in values/config.xml - see comment in values/config.xml - */ - public static final int config_prefDialogWidth = 0x01050007; - /** - Base "touch slop" value used by ViewConfiguration as a - movement threshold where scrolling should begin. - */ - public static final int config_viewConfigurationTouchSlop = 0x01050008; - public static final int default_app_widget_padding_bottom = 0x01050053; - /** - Default padding to apply to AppWidgetHostViews containing widgets targeting API level 14 and up. - insideOverlay - Default padding to apply to AppWidgetHostViews containing widgets targeting API level 14 and up. - */ - public static final int default_app_widget_padding_left = 0x01050050; - public static final int default_app_widget_padding_right = 0x01050052; - public static final int default_app_widget_padding_top = 0x01050051; - /** - * The default gap between components in a layout. - */ - public static final int default_gap = 0x0105004a; - /** - The platform's desired minimum size for a dialog's width when it - is along the major axis (that is the screen is landscape). This may - be either a fraction or a dimension. - */ - public static final int dialog_min_width_major = 0x01050003; - /** - The platform's desired minimum size for a dialog's width when it - is along the minor axis (that is the screen is portrait). This may - be either a fraction or a dimension. - */ - public static final int dialog_min_width_minor = 0x01050004; - /** - * Width of the icon in a dropdown list - */ - public static final int dropdownitem_icon_width = 0x0105004d; - /** - * Text padding for dropdown items - */ - public static final int dropdownitem_text_padding_left = 0x0105004b; - /** - * Padding of the fastscroll overlay - */ - public static final int fastscroll_overlay_padding = 0x01050017; - /** - * Minimum size of the fastscroll overlay - */ - public static final int fastscroll_overlay_size = 0x01050015; - /** - * Text size of the fastscroll overlay - */ - public static final int fastscroll_overlay_text_size = 0x01050016; - /** - * Height of the fastscroll thumb - */ - public static final int fastscroll_thumb_height = 0x01050019; - /** - * Width of the fastscroll thumb - */ - public static final int fastscroll_thumb_width = 0x01050018; - /** - width of ImmersiveModeConfirmation (-1 for match_parent) - width of ImmersiveModeConfirmation (-1 for match_parent) - width of ImmersiveModeConfirmation (-1 for match_parent) - */ - public static final int immersive_mode_cling_width = 0x0105007d; - /** - * Height of the bottom navigation / system bar. - */ - public static final int navigation_bar_height = 0x0105000d; - /** - * Height of the bottom navigation bar in portrait; often the same as @dimen/navigation_bar_height - */ - public static final int navigation_bar_height_landscape = 0x0105000e; - /** - * Width of the navigation bar when it is placed vertically on the screen - */ - public static final int navigation_bar_width = 0x0105000f; - /** - * The width of the big icons in notifications. - */ - public static final int notification_large_icon_height = 0x01050006; - /** - * The width of the big icons in notifications. - */ - public static final int notification_large_icon_width = 0x01050005; - /** - * Size of smaller notification text (see TextAppearance.StatusBar.EventContent.Line2, Info, Time) - */ - public static final int notification_subtext_size = 0x01050059; - /** - * Size of notification text (see TextAppearance.StatusBar.EventContent) - */ - public static final int notification_text_size = 0x01050057; - /** - * Size of notification text titles (see TextAppearance.StatusBar.EventContent.Title) - */ - public static final int notification_title_text_size = 0x01050058; - /** - Default correction for the space key in the password keyboard (used by keyguard) - Default correction for the space key in the password keyboard - */ - public static final int password_keyboard_spacebar_vertical_correction = 0x0105001d; - /** - Preference fragment padding, bottom - Preference fragment padding, bottom - Preference fragment padding, bottom - */ - public static final int preference_fragment_padding_bottom = 0x0105002a; - /** - Preference fragment padding, sides - Preference fragment padding, sides - Preference fragment padding, sides - Preference fragment padding, sides - Preference fragment padding, sides - */ - public static final int preference_fragment_padding_side = 0x0105002b; - /** - * Preferred width of the search view. - */ - public static final int search_view_preferred_width = 0x01050039; - /** - * Height of the status bar - */ - public static final int status_bar_height = 0x0105000c; - /** - * Height of notification icons in the status bar - */ - public static final int status_bar_icon_size = 0x01050010; - /** - * Rounded corner radius for video subtitles. - */ - public static final int subtitle_corner_radius = 0x01050079; - /** - * Outline width for video subtitles. - */ - public static final int subtitle_outline_width = 0x0105007c; - /** - * Shadow offset for video subtitles. - */ - public static final int subtitle_shadow_offset = 0x0105007b; - /** - * Shadow radius for video subtitles. - */ - public static final int subtitle_shadow_radius = 0x0105007a; - /** - * Height of notification icons in the system bar - */ - public static final int system_bar_icon_size = 0x01050013; - /** - * Default width for a textview error popup - */ - public static final int textview_error_popup_default_width = 0x0105004e; - /** - The height that is used when creating thumbnails of applications. - The height that is used when creating thumbnails of applications. - The height that is used when creating thumbnails of applications. - */ - public static final int thumbnail_height = 0x01050001; - /** - The width that is used when creating thumbnails of applications. - The width that is used when creating thumbnails of applications. - The width that is used when creating thumbnails of applications. - */ - public static final int thumbnail_width = 0x01050002; - public static final int toast_y_offset = 0x0105000b; - /** - * Volume panel y offset - */ - public static final int volume_panel_top = 0x0105004f; - public static final int webviewchromium_autofill_text_divider_height = 0x01050087; - public static final int webviewchromium_autofill_text_height = 0x01050086; - /** - 14.5 = Seekbar thumb width - border width, but it depends on the width - of the seek bar icon. - - */ - public static final int webviewchromium_color_button_height = 0x01050084; - public static final int webviewchromium_color_picker_gradient_margin = 0x01050085; - /** - * Link Preview dimensions - */ - public static final int webviewchromium_link_preview_overlay_radius = 0x01050083; - } - public static final class drawable { - public static final int alert_dark_frame = 0x01080000; - public static final int alert_light_frame = 0x01080001; - public static final int arrow_down_float = 0x01080002; - public static final int arrow_up_float = 0x01080003; - public static final int bottom_bar = 0x0108009a; - public static final int btn_check_off = 0x010800de; - public static final int btn_code_lock_default_holo = 0x01080112; - public static final int btn_code_lock_touched_holo = 0x01080114; - public static final int btn_default = 0x01080004; - public static final int btn_default_small = 0x01080005; - public static final int btn_dialog = 0x01080017; - public static final int btn_dropdown = 0x01080006; - public static final int btn_minus = 0x01080007; - public static final int btn_plus = 0x01080008; - public static final int btn_radio = 0x01080009; - public static final int btn_star = 0x0108000a; - public static final int btn_star_big_off = 0x0108000b; - public static final int btn_star_big_on = 0x0108000c; - public static final int button_onoff_indicator_off = 0x0108000e; - public static final int button_onoff_indicator_on = 0x0108000d; - public static final int call_contact = 0x0108020c; - public static final int checkbox_off_background = 0x0108000f; - public static final int checkbox_on_background = 0x01080010; - public static final int cling_arrow_up = 0x0108020d; - public static final int cling_bg = 0x0108020e; - public static final int cling_button = 0x0108020f; - public static final int clock_dial = 0x01080212; - public static final int clock_hand_hour = 0x01080213; - public static final int clock_hand_minute = 0x01080214; - public static final int compass_arrow = 0x0108021a; - public static final int compass_base = 0x0108021b; - public static final int create_contact = 0x0108021d; - /** - * Drawable to use as a background for separators on a list with a dark background - */ - public static final int dark_header = 0x010800a5; - public static final int default_wallpaper = 0x01080220; - public static final int dialog_frame = 0x01080011; - public static final int dialog_holo_dark_frame = 0x010800b2; - public static final int dialog_holo_light_frame = 0x010800b3; - public static final int divider_horizontal_bright = 0x01080012; - public static final int divider_horizontal_dark = 0x01080014; - public static final int divider_horizontal_dim_dark = 0x01080015; - public static final int divider_horizontal_textfield = 0x01080013; - public static final int edit_text = 0x01080016; - public static final int editbox_background = 0x01080018; - public static final int editbox_background_normal = 0x01080019; - public static final int editbox_dropdown_dark_frame = 0x0108001a; - public static final int editbox_dropdown_light_frame = 0x0108001b; - public static final int emo_im_angel = 0x0108025c; - public static final int emo_im_cool = 0x0108025d; - public static final int emo_im_crying = 0x0108025e; - public static final int emo_im_embarrassed = 0x0108025f; - public static final int emo_im_foot_in_mouth = 0x01080260; - public static final int emo_im_happy = 0x01080261; - public static final int emo_im_kissing = 0x01080262; - public static final int emo_im_laughing = 0x01080263; - public static final int emo_im_lips_are_sealed = 0x01080264; - public static final int emo_im_money_mouth = 0x01080265; - public static final int emo_im_sad = 0x01080266; - public static final int emo_im_surprised = 0x01080267; - public static final int emo_im_tongue_sticking_out = 0x01080268; - public static final int emo_im_undecided = 0x01080269; - public static final int emo_im_winking = 0x0108026a; - public static final int emo_im_wtf = 0x0108026b; - public static final int emo_im_yelling = 0x0108026c; - public static final int expander_close_holo_dark = 0x0108026d; - public static final int expander_ic_maximized = 0x01080272; - public static final int expander_ic_minimized = 0x01080273; - public static final int expander_open_holo_dark = 0x01080274; - public static final int gallery_thumb = 0x0108001c; - public static final int ic_action_assist_generic = 0x01080298; - public static final int ic_audio_alarm = 0x0108029c; - public static final int ic_audio_alarm_mute = 0x0108029d; - public static final int ic_audio_bt = 0x0108029e; - public static final int ic_audio_bt_mute = 0x0108029f; - public static final int ic_audio_notification = 0x010802a0; - public static final int ic_audio_notification_mute = 0x010802a2; - public static final int ic_audio_phone = 0x010802a4; - public static final int ic_audio_ring_notif = 0x010802a6; - public static final int ic_audio_ring_notif_mute = 0x010802a8; - public static final int ic_audio_ring_notif_vibrate = 0x010802aa; - public static final int ic_audio_vol = 0x010802ac; - public static final int ic_audio_vol_mute = 0x010802ae; - public static final int ic_btn_speak_now = 0x010800a4; - public static final int ic_bullet_key_permission = 0x010802ba; - public static final int ic_contact_picture = 0x010802ca; - public static final int ic_delete = 0x0108001d; - public static final int ic_dialog_alert = 0x01080027; - public static final int ic_dialog_dialer = 0x01080028; - public static final int ic_dialog_email = 0x01080029; - public static final int ic_dialog_info = 0x0108009b; - public static final int ic_dialog_map = 0x0108002a; - public static final int ic_dialog_usb = 0x010802d7; - public static final int ic_emergency = 0x010802d8; - public static final int ic_grayedout_printer = 0x010802df; - public static final int ic_input_add = 0x0108002b; - public static final int ic_input_delete = 0x0108002c; - public static final int ic_input_get = 0x0108002d; - public static final int ic_jog_dial_sound_off = 0x010802e4; - public static final int ic_jog_dial_sound_on = 0x010802e5; - public static final int ic_jog_dial_unlock = 0x010802e6; - public static final int ic_jog_dial_vibrate_on = 0x010802e7; - public static final int ic_lock_airplane_mode = 0x010802e9; - public static final int ic_lock_airplane_mode_off = 0x010802ea; - public static final int ic_lock_idle_alarm = 0x0108002e; - public static final int ic_lock_idle_charging = 0x0108001e; - public static final int ic_lock_idle_lock = 0x0108001f; - public static final int ic_lock_idle_low_battery = 0x01080020; - public static final int ic_lock_lock = 0x0108002f; - public static final int ic_lock_power_off = 0x01080030; - public static final int ic_lock_silent_mode = 0x01080031; - public static final int ic_lock_silent_mode_off = 0x01080032; - public static final int ic_maps_indicator_current_position_anim = 0x01080318; - public static final int ic_media_ff = 0x01080021; - public static final int ic_media_next = 0x01080022; - public static final int ic_media_pause = 0x01080023; - public static final int ic_media_play = 0x01080024; - public static final int ic_media_previous = 0x01080025; - public static final int ic_media_rew = 0x01080026; - public static final int ic_media_route_connecting_holo_dark = 0x0108031e; - public static final int ic_media_route_disabled_holo_dark = 0x01080320; - public static final int ic_media_route_off_holo_dark = 0x01080324; - public static final int ic_media_route_on_holo_dark = 0x0108032c; - public static final int ic_media_stop = 0x0108032e; - public static final int ic_media_video_poster = 0x0108032f; - public static final int ic_menu_add = 0x01080033; - public static final int ic_menu_agenda = 0x01080034; - public static final int ic_menu_always_landscape_portrait = 0x01080035; - public static final int ic_menu_archive = 0x01080332; - public static final int ic_menu_call = 0x01080036; - public static final int ic_menu_camera = 0x01080037; - public static final int ic_menu_cc = 0x01080338; - public static final int ic_menu_close_clear_cancel = 0x01080038; - public static final int ic_menu_compass = 0x01080039; - public static final int ic_menu_crop = 0x0108003a; - public static final int ic_menu_day = 0x0108003b; - public static final int ic_menu_delete = 0x0108003c; - public static final int ic_menu_directions = 0x0108003d; - public static final int ic_menu_edit = 0x0108003e; - public static final int ic_menu_gallery = 0x0108003f; - public static final int ic_menu_goto = 0x0108034a; - public static final int ic_menu_help = 0x01080040; - public static final int ic_menu_info_details = 0x01080041; - public static final int ic_menu_manage = 0x01080042; - public static final int ic_menu_mapmode = 0x01080043; - public static final int ic_menu_month = 0x01080044; - public static final int ic_menu_more = 0x01080045; - public static final int ic_menu_moreoverflow_normal_holo_dark = 0x01080355; - public static final int ic_menu_my_calendar = 0x01080046; - public static final int ic_menu_mylocation = 0x01080047; - public static final int ic_menu_myplaces = 0x01080048; - public static final int ic_menu_play_clip = 0x0108035b; - public static final int ic_menu_preferences = 0x01080049; - public static final int ic_menu_recent_history = 0x0108004a; - public static final int ic_menu_refresh = 0x0108035c; - public static final int ic_menu_report_image = 0x0108004b; - public static final int ic_menu_revert = 0x0108004c; - public static final int ic_menu_rotate = 0x0108004d; - public static final int ic_menu_save = 0x0108004e; - public static final int ic_menu_search = 0x0108004f; - public static final int ic_menu_send = 0x01080050; - public static final int ic_menu_set_as = 0x01080051; - public static final int ic_menu_share = 0x01080052; - public static final int ic_menu_slideshow = 0x01080053; - public static final int ic_menu_sort_alphabetically = 0x0108009c; - public static final int ic_menu_sort_by_size = 0x0108009d; - public static final int ic_menu_today = 0x01080054; - public static final int ic_menu_upload = 0x01080055; - public static final int ic_menu_upload_you_tube = 0x01080056; - public static final int ic_menu_view = 0x01080057; - public static final int ic_menu_week = 0x01080058; - public static final int ic_menu_zoom = 0x01080059; - public static final int ic_notification_cast_connecting = 0x0108036a; - public static final int ic_notification_cast_on = 0x0108036b; - public static final int ic_notification_clear_all = 0x0108005a; - public static final int ic_notification_ime_default = 0x0108036c; - public static final int ic_notification_overlay = 0x0108005b; - public static final int ic_partial_secure = 0x0108005c; - public static final int ic_popup_disk_full = 0x0108005d; - public static final int ic_popup_reminder = 0x0108005e; - public static final int ic_popup_sync = 0x0108005f; - public static final int ic_print = 0x01080390; - public static final int ic_print_error = 0x01080391; - public static final int ic_search_category_default = 0x01080060; - public static final int ic_secure = 0x01080061; - public static final int ic_settings_language = 0x01080394; - public static final int ic_text_dot = 0x01080398; - public static final int ic_volume = 0x0108039d; - public static final int indicator_code_lock_drag_direction_green_up = 0x010803a8; - public static final int indicator_code_lock_drag_direction_red_up = 0x010803a9; - public static final int indicator_code_lock_point_area_default_holo = 0x010803ab; - public static final int indicator_code_lock_point_area_green_holo = 0x010803ad; - public static final int indicator_code_lock_point_area_red_holo = 0x010803af; - public static final int indicator_input_error = 0x010803b0; - public static final int jog_dial_arrow_long_left_green = 0x010803b5; - public static final int jog_dial_arrow_long_right_red = 0x010803b8; - public static final int jog_dial_arrow_short_left_and_right = 0x010803bb; - public static final int jog_dial_bg = 0x010803bd; - public static final int jog_dial_dimple = 0x010803be; - public static final int jog_dial_dimple_dim = 0x010803bf; - public static final int jog_tab_bar_left_generic = 0x010803c7; - public static final int jog_tab_bar_left_unlock = 0x010803c8; - public static final int jog_tab_bar_right_generic = 0x010803d0; - public static final int jog_tab_bar_right_sound_off = 0x010803d1; - public static final int jog_tab_bar_right_sound_on = 0x010803d2; - public static final int jog_tab_left_generic = 0x010803d8; - public static final int jog_tab_left_unlock = 0x010803db; - public static final int jog_tab_right_generic = 0x010803e1; - public static final int jog_tab_right_sound_off = 0x010803e4; - public static final int jog_tab_right_sound_on = 0x010803e5; - public static final int jog_tab_target_gray = 0x010803e6; - public static final int jog_tab_target_green = 0x010803e7; - public static final int jog_tab_target_yellow = 0x010803e9; - public static final int list_selector_background = 0x01080062; - public static final int list_selector_pressed_holo_dark = 0x01080425; - public static final int loading_tile_android = 0x01080429; - public static final int magnified_region_frame = 0x0108042b; - public static final int maps_google_logo = 0x0108042c; - public static final int menu_background = 0x0108042e; - public static final int menu_frame = 0x01080063; - public static final int menu_full_frame = 0x01080064; - public static final int menuitem_background = 0x01080065; - public static final int no_tile_256 = 0x01080449; - public static final int notification_bg = 0x0108044a; - public static final int notification_bg_low = 0x0108044b; - public static final int notification_template_icon_bg = 0x0108068c; - public static final int notification_template_icon_low_bg = 0x0108068d; - public static final int overscroll_edge = 0x0108047c; - public static final int overscroll_glow = 0x0108047d; - public static final int picture_emergency = 0x010804a4; - public static final int picture_frame = 0x01080066; - public static final int platlogo = 0x010804a5; - public static final int popup_bottom_bright = 0x010804ae; - public static final int popup_bottom_dark = 0x010804af; - public static final int popup_bottom_medium = 0x010804b0; - public static final int popup_center_bright = 0x010804b1; - public static final int popup_center_dark = 0x010804b2; - public static final int popup_full_bright = 0x010804b4; - public static final int popup_full_dark = 0x010804b5; - public static final int popup_top_bright = 0x010804c2; - public static final int popup_top_dark = 0x010804c3; - public static final int presence_audio_away = 0x010800af; - public static final int presence_audio_busy = 0x010800b0; - public static final int presence_audio_online = 0x010800b1; - public static final int presence_away = 0x01080067; - public static final int presence_busy = 0x01080068; - public static final int presence_invisible = 0x01080069; - public static final int presence_offline = 0x0108006a; - public static final int presence_online = 0x0108006b; - /** - * presence drawables for videochat or audiochat capable contacts - */ - public static final int presence_video_away = 0x010800ac; - public static final int presence_video_busy = 0x010800ad; - public static final int presence_video_online = 0x010800ae; - public static final int progress_horizontal = 0x0108006c; - public static final int progress_indeterminate_horizontal = 0x0108006d; - public static final int quickcontact_badge_overlay_dark = 0x010804eb; - public static final int radiobutton_off_background = 0x0108006e; - public static final int radiobutton_on_background = 0x0108006f; - public static final int reticle = 0x01080524; - public static final int screen_background_dark = 0x01080098; - /** - Semi-transparent background that can be used when placing a dark - themed UI on top of some arbitrary background (such as the - wallpaper). This darkens the background sufficiently that the UI - can be seen. - Background drawable that can be used for a transparent activity to - be able to display a dark UI: this darkens its background to make - a dark (default theme) UI more visible. - */ - public static final int screen_background_dark_transparent = 0x010800a9; - public static final int screen_background_light = 0x01080099; - /** - Background drawable that can be used for a transparent activity to - be able to display a light UI: this lightens its background to make - a light UI more visible. - */ - public static final int screen_background_light_transparent = 0x010800aa; - public static final int scrubber_control_disabled_holo = 0x0108052c; - public static final int scrubber_control_selector_holo = 0x01080530; - public static final int scrubber_progress_horizontal_holo_dark = 0x01080532; - public static final int search_spinner = 0x0108053c; - public static final int spinner_background = 0x01080070; - public static final int spinner_dropdown_background = 0x01080071; - public static final int star_big_off = 0x01080073; - public static final int star_big_on = 0x01080072; - public static final int star_off = 0x01080075; - public static final int star_on = 0x01080074; - public static final int stat_notify_call_mute = 0x01080076; - public static final int stat_notify_car_mode = 0x01080583; - public static final int stat_notify_chat = 0x01080077; - public static final int stat_notify_disabled = 0x01080584; - public static final int stat_notify_disk_full = 0x01080585; - public static final int stat_notify_error = 0x01080078; - public static final int stat_notify_missed_call = 0x0108007f; - public static final int stat_notify_more = 0x01080079; - public static final int stat_notify_rssi_in_range = 0x01080588; - public static final int stat_notify_sdcard = 0x0108007a; - public static final int stat_notify_sdcard_prepare = 0x010800ab; - public static final int stat_notify_sdcard_usb = 0x0108007b; - public static final int stat_notify_sim_toolkit = 0x01080589; - public static final int stat_notify_sync = 0x0108007c; - public static final int stat_notify_sync_error = 0x0108058b; - public static final int stat_notify_sync_noanim = 0x0108007d; - public static final int stat_notify_voicemail = 0x0108007e; - public static final int stat_notify_wifi_in_range = 0x0108058c; - public static final int stat_sys_adb = 0x0108058d; - public static final int stat_sys_battery = 0x0108058f; - public static final int stat_sys_battery_charge = 0x0108059d; - public static final int stat_sys_battery_unknown = 0x010805ab; - public static final int stat_sys_certificate_info = 0x010805ac; - public static final int stat_sys_data_bluetooth = 0x01080080; - public static final int stat_sys_data_usb = 0x010805ad; - public static final int stat_sys_download = 0x01080081; - public static final int stat_sys_download_done = 0x01080082; - public static final int stat_sys_gps_on = 0x010805b7; - public static final int stat_sys_headset = 0x01080083; - /** - * @deprecated Replaced by a private asset in the phone app. - */ - @Deprecated - public static final int stat_sys_phone_call = 0x01080084; - /** - * @deprecated Replaced by a private asset in the phone app. - */ - @Deprecated - public static final int stat_sys_phone_call_forward = 0x01080085; - /** - * @deprecated Replaced by a private asset in the phone app. - */ - @Deprecated - public static final int stat_sys_phone_call_on_hold = 0x01080086; - public static final int stat_sys_speakerphone = 0x01080087; - public static final int stat_sys_tether_bluetooth = 0x010805cc; - public static final int stat_sys_tether_general = 0x010805cd; - public static final int stat_sys_tether_usb = 0x010805ce; - public static final int stat_sys_tether_wifi = 0x010805cf; - public static final int stat_sys_throttled = 0x010805d0; - public static final int stat_sys_upload = 0x01080088; - public static final int stat_sys_upload_done = 0x01080089; - /** - * @deprecated Replaced by a private asset in the phone app. - */ - @Deprecated - public static final int stat_sys_vp_phone_call = 0x010800a7; - /** - * @deprecated Replaced by a private asset in the phone app. - */ - @Deprecated - public static final int stat_sys_vp_phone_call_on_hold = 0x010800a8; - public static final int stat_sys_warning = 0x0108008a; - public static final int status_bar_background = 0x010805d7; - public static final int status_bar_item_app_background = 0x0108008b; - public static final int status_bar_item_background = 0x0108008c; - public static final int sym_action_call = 0x0108008d; - public static final int sym_action_chat = 0x0108008e; - public static final int sym_action_email = 0x0108008f; - public static final int sym_app_on_sd_unavailable_icon = 0x010805f4; - public static final int sym_call_incoming = 0x01080090; - public static final int sym_call_missed = 0x01080091; - public static final int sym_call_outgoing = 0x01080092; - public static final int sym_contact_card = 0x01080094; - public static final int sym_def_app_icon = 0x01080093; - public static final int sym_keyboard_return_holo = 0x0108060c; - public static final int sym_keyboard_shift = 0x0108060d; - public static final int sym_keyboard_shift_locked = 0x0108060e; - public static final int tab_bottom_left = 0x01080611; - public static final int tab_bottom_left_v4 = 0x01080612; - public static final int tab_bottom_right = 0x01080613; - public static final int tab_bottom_right_v4 = 0x01080614; - public static final int tab_indicator_v4 = 0x0108061b; - public static final int text_edit_paste_window = 0x01080630; - public static final int text_edit_side_paste_window = 0x01080631; - public static final int text_select_handle_left = 0x01080633; - public static final int text_select_handle_middle = 0x01080634; - public static final int text_select_handle_right = 0x01080635; - public static final int title_bar = 0x01080095; - public static final int title_bar_medium = 0x01080669; - /** - * Drawable to use as a background for a taller version of the titlebar - */ - public static final int title_bar_tall = 0x010800a6; - public static final int toast_frame = 0x01080096; - public static final int unknown_image = 0x0108066d; - public static final int unlock_default = 0x0108066e; - public static final int unlock_halo = 0x0108066f; - public static final int unlock_ring = 0x01080670; - public static final int unlock_wave = 0x01080671; - public static final int usb_android = 0x01080672; - public static final int usb_android_connected = 0x01080673; - public static final int vpn_connected = 0x01080675; - public static final int vpn_disconnected = 0x01080676; - public static final int webviewchromium_bubble = 0x0108067a; - public static final int webviewchromium_bubble_arrow_up = 0x0108067b; - public static final int webviewchromium_color_button_background = 0x0108067c; - public static final int webviewchromium_color_picker_advanced_select_handle = 0x0108067d; - public static final int webviewchromium_color_picker_border = 0x0108067e; - public static final int webviewchromium_ondemand_overlay = 0x0108067f; - public static final int webviewchromium_pageinfo_warning_major = 0x01080680; - public static final int zoom_plate = 0x01080097; - } - public static final class fraction { - /** - Duration for the dim animation behind a dialog. This may be either - a percentage, which is relative to the duration of the enter/open - animation of the window being shown that is dimming behind, or it may - be an integer for a constant duration. - */ - public static final int config_dimBehindFadeDuration = 0x01120000; - } - public static final class id { - public static final int account_name = 0x010202a2; - public static final int account_row_icon = 0x0102028f; - public static final int account_row_text = 0x01020290; - public static final int account_type = 0x010202a1; - public static final int action0 = 0x010202d2; - public static final int action1 = 0x010202d4; - public static final int action2 = 0x010202d5; - public static final int action_bar = 0x01020315; - public static final int action_bar_container = 0x01020314; - public static final int action_bar_overlay_layout = 0x01020313; - public static final int action_bar_spinner = 0x01020261; - public static final int action_bar_subtitle = 0x01020266; - public static final int action_bar_title = 0x01020265; - public static final int action_context_bar = 0x01020316; - public static final int action_divider = 0x010202dc; - public static final int action_menu_presenter = 0x0102025e; - public static final int action_mode_bar_stub = 0x0102030e; - public static final int action_mode_close_button = 0x01020267; - public static final int actions = 0x010202d3; - public static final int activity_chooser_view_content = 0x01020268; - /** - * Menu ID to perform a "add to dictionary" operation. - */ - public static final int addToDictionary = 0x0102002a; - public static final int alertTitle = 0x01020270; - public static final int allow_button = 0x010202a7; - public static final int alwaysUse = 0x0102027b; - public static final int amPm = 0x0102034c; - public static final int ask_checkbox = 0x0102027e; - public static final int authtoken_type = 0x010202a3; - public static final int back_button = 0x010202f7; - public static final int background = 0x01020000; - public static final int banner = 0x0102035a; - public static final int big_picture = 0x010202dd; - public static final int big_text = 0x010202db; - public static final int body = 0x010202fc; - public static final int breadcrumb_section = 0x0102028a; - public static final int button0 = 0x010202fe; - public static final int button1 = 0x01020019; - public static final int button2 = 0x0102001a; - public static final int button3 = 0x0102001b; - public static final int button4 = 0x010202ff; - public static final int button5 = 0x01020300; - public static final int button6 = 0x01020301; - public static final int button7 = 0x01020302; - public static final int buttonPanel = 0x01020272; - public static final int button_always = 0x01020305; - public static final int button_bar = 0x01020281; - public static final int button_once = 0x01020306; - public static final int by_common = 0x0102033a; - public static final int by_org = 0x0102033c; - public static final int by_org_unit = 0x0102033e; - public static final int calendar_view = 0x01020295; - public static final int cancel = 0x0102028e; - /** - The part of the UI shown by an - {@link android.inputmethodservice.InputMethodService} that contains the - views for displaying candidates for what the user has entered. - */ - public static final int candidatesArea = 0x0102001d; - public static final int characterPicker = 0x0102028d; - public static final int checkbox = 0x01020001; - public static final int chronometer = 0x010202d8; - public static final int clearDefaultHint = 0x0102027c; - /** - * View ID of a {@link android.view.View} to close a popup keyboard - */ - public static final int closeButton = 0x01020027; - public static final int compat_checkbox = 0x0102027d; - public static final int content = 0x01020002; - public static final int contentPanel = 0x01020275; - /** - Context menu ID for the "Copy" menu item to copy the currently - selected (or all) text in a text view to the clipboard. - */ - public static final int copy = 0x01020021; - /** - Context menu ID for the "Copy URL" menu item to copy the currently - selected URL from the text view to the clipboard. - */ - public static final int copyUrl = 0x01020023; - public static final int current_scene = 0x01020262; - public static final int custom = 0x0102002b; - public static final int customPanel = 0x01020277; - /** - Context menu ID for the "Cut" menu item to copy and delete the currently - selected (or all) text in a text view to the clipboard. - */ - public static final int cut = 0x01020020; - public static final int date = 0x01020063; - public static final int datePicker = 0x01020296; - public static final int day = 0x01020293; - public static final int day_names = 0x0102028c; - public static final int decrement = 0x010202ea; - public static final int default_activity_button = 0x0102026b; - public static final int deny_button = 0x010202a6; - public static final int description = 0x01020280; - public static final int divider = 0x0102034e; - public static final int edit = 0x01020003; - public static final int edit_query = 0x0102031b; - public static final int edittext_container = 0x010202f2; - public static final int eight = 0x01020356; - public static final int empty = 0x01020004; - public static final int enter_pin_section = 0x01020388; - public static final int expand_activities_button = 0x01020269; - public static final int expand_button = 0x01020360; - public static final int expand_button_divider = 0x0102035f; - public static final int expires_on = 0x01020343; - /** - The part of the UI shown by an - {@link android.inputmethodservice.InputMethodService} that contains the - views for interacting with the user in extraction mode. - */ - public static final int extractArea = 0x0102001c; - public static final int ffwd = 0x010202c6; - public static final int fillInIntent = 0x01020258; - public static final int find = 0x01020395; - public static final int find_next = 0x01020398; - public static final int find_prev = 0x01020397; - public static final int five = 0x01020353; - public static final int four = 0x01020352; - public static final int fullscreenArea = 0x010202b2; - public static final int hard_keyboard_section = 0x010202b6; - public static final int hard_keyboard_switch = 0x010202b7; - public static final int headers = 0x010202f3; - public static final int hint = 0x01020005; - public static final int home = 0x0102002c; - public static final int hour = 0x0102034a; - public static final int icon = 0x01020006; - public static final int icon1 = 0x01020007; - public static final int icon2 = 0x01020008; - public static final int icon_menu_presenter = 0x0102025c; - public static final int image = 0x0102026a; - public static final int inbox_end_pad = 0x010202e7; - public static final int inbox_more = 0x010202e6; - public static final int inbox_text0 = 0x010202df; - public static final int inbox_text1 = 0x010202e0; - public static final int inbox_text2 = 0x010202e1; - public static final int inbox_text3 = 0x010202e2; - public static final int inbox_text4 = 0x010202e3; - public static final int inbox_text5 = 0x010202e4; - public static final int inbox_text6 = 0x010202e5; - public static final int increment = 0x010202e8; - public static final int info = 0x010202da; - public static final int input = 0x01020009; - /** - The part of the UI shown by an - {@link android.inputmethodservice.InputMethodService} that contains the - views for entering text using the screen. - */ - public static final int inputArea = 0x0102001e; - public static final int inputExtractAccessories = 0x010202b3; - public static final int inputExtractAction = 0x010202b4; - public static final int inputExtractEditButton = 0x010202b5; - /** - * View ID of the text editor inside of an extracted text layout. - */ - public static final int inputExtractEditText = 0x01020025; - public static final int internalEmpty = 0x010202c0; - public static final int issued_on = 0x01020341; - public static final int keyboard = 0x01020232; - /** - View ID of the {@link android.inputmethodservice.KeyboardView} within - an input method's input area. - */ - public static final int keyboardView = 0x01020026; - public static final int leftSpacer = 0x01020273; - public static final int left_icon = 0x01020251; - public static final int line1 = 0x010202d7; - public static final int line3 = 0x010202d9; - public static final int list = 0x0102000a; - public static final int listContainer = 0x010202bf; - public static final int list_footer = 0x010202f4; - public static final int list_item = 0x0102026c; - public static final int list_menu_presenter = 0x0102025d; - public static final int locale = 0x0102017a; - public static final int lock_screen = 0x01020255; - public static final int matches = 0x01020364; - public static final int media_route_control_frame = 0x010202ce; - public static final int media_route_disconnect_button = 0x010202cf; - public static final int media_route_extended_settings_button = 0x010202cb; - public static final int media_route_list = 0x010202ca; - public static final int media_route_volume_layout = 0x010202cc; - public static final int media_route_volume_slider = 0x010202cd; - public static final int mediacontroller_progress = 0x010202c9; - public static final int message = 0x0102000b; - public static final int minute = 0x0102034b; - public static final int mode_normal = 0x01020391; - public static final int month = 0x01020292; - public static final int month_name = 0x0102028b; - public static final int mount_button = 0x0102035b; - public static final int name = 0x0102038a; - public static final int new_app_action = 0x010202ae; - public static final int new_app_description = 0x010202af; - public static final int new_app_icon = 0x010202ad; - public static final int next = 0x010202c7; - public static final int next_button = 0x010202f9; - public static final int nine = 0x01020357; - public static final int no_applications_message = 0x010202fd; - public static final int no_permissions = 0x01020288; - public static final int numberpicker_input = 0x010202e9; - public static final int ok = 0x010202b1; - public static final int old_app_action = 0x010202aa; - public static final int old_app_description = 0x010202ab; - public static final int old_app_icon = 0x010202a9; - public static final int one = 0x0102034f; - public static final int option1 = 0x0102029b; - public static final int option2 = 0x0102029c; - public static final int option3 = 0x0102029d; - public static final int original_app_icon = 0x010202bc; - public static final int original_message = 0x010202bd; - public static final int overflow_divider = 0x010202de; - public static final int overlay_display_window_texture = 0x010202eb; - public static final int overlay_display_window_title = 0x010202ec; - public static final int package_label = 0x010202ee; - public static final int packages_list = 0x0102029f; - /** - Context menu ID for the "Paste" menu item to copy the current contents - of the clipboard into the text view. - */ - public static final int paste = 0x01020022; - public static final int pause = 0x010202c5; - public static final int perm_icon = 0x01020282; - public static final int perm_name = 0x01020283; - public static final int permission_group = 0x01020286; - public static final int permission_list = 0x01020287; - public static final int perms_list = 0x01020289; - public static final int pickers = 0x01020291; - public static final int pin_cancel_button = 0x01020309; - public static final int pin_confirm_text = 0x0102030d; - public static final int pin_error_message = 0x01020308; - public static final int pin_new_text = 0x0102030c; - public static final int pin_ok_button = 0x0102030a; - public static final int pin_text = 0x01020307; - public static final int placeholder = 0x0102032e; - public static final int prefs = 0x010202f6; - public static final int prefs_frame = 0x010202f5; - public static final int prev = 0x010202c3; - public static final int primary = 0x0102000c; - public static final int progress = 0x0102000d; - public static final int progressContainer = 0x010202be; - public static final int progress_circular = 0x01020311; - public static final int progress_horizontal = 0x01020312; - public static final int progress_number = 0x0102027a; - public static final int progress_percent = 0x01020279; - public static final int radio = 0x010202c2; - public static final int reask_hint = 0x0102027f; - public static final int replace_app_icon = 0x010202ba; - public static final int replace_message = 0x010202bb; - public static final int resolver_list = 0x01020304; - public static final int rew = 0x010202c4; - public static final int rightSpacer = 0x01020274; - public static final int right_icon = 0x01020253; - public static final int rowTypeId = 0x01020259; - public static final int scene_layoutid_cache = 0x01020263; - public static final int scrollView = 0x01020276; - public static final int search_app_icon = 0x01020319; - public static final int search_badge = 0x0102031c; - public static final int search_bar = 0x01020318; - public static final int search_button = 0x0102031d; - public static final int search_close_btn = 0x01020322; - public static final int search_edit_frame = 0x0102031e; - public static final int search_go_btn = 0x01020324; - public static final int search_mag_icon = 0x0102031f; - public static final int search_plate = 0x01020320; - public static final int search_src_text = 0x01020321; - public static final int search_view = 0x0102031a; - public static final int search_voice_btn = 0x01020325; - public static final int secondaryProgress = 0x0102000f; - public static final int seekbar = 0x010202fa; - /** - Context menu ID for the "Select All" menu item to select all text - in a text view. - */ - public static final int selectAll = 0x0102001f; - /** - Context menu ID for the "Select text..." menu item to switch to text - selection context mode in text views. - */ - public static final int selectTextMode = 0x0102002d; - public static final int select_all = 0x01020393; - public static final int selectedIcon = 0x0102000e; - public static final int serial_number = 0x01020338; - public static final int seven = 0x01020355; - public static final int sha1_fingerprint = 0x01020348; - public static final int sha256_fingerprint = 0x01020346; - public static final int share = 0x01020394; - public static final int shortcut = 0x010202c1; - public static final int six = 0x01020354; - public static final int skip_button = 0x010202f8; - public static final int slider_group = 0x0102035e; - public static final int sms_short_code_confirm_message = 0x01020327; - public static final int sms_short_code_detail_layout = 0x01020328; - public static final int sms_short_code_detail_message = 0x0102032a; - public static final int sms_short_code_remember_choice_checkbox = 0x0102032b; - public static final int sms_short_code_remember_undo_instruction = 0x0102032d; - public static final int split_action_bar = 0x01020317; - /** - * Menu ID to perform a "start selecting text" operation. - */ - public static final int startSelectingText = 0x01020028; - public static final int status = 0x0102029a; - public static final int status_bar_latest_event_content = 0x010202d6; - /** - * Menu ID to perform a "stop selecting text" operation. - */ - public static final int stopSelectingText = 0x01020029; - public static final int stream_icon = 0x01020361; - public static final int submit_area = 0x01020323; - public static final int summary = 0x01020010; - /** - Context menu ID for the "Input Method" menu item to being up the - input method picker dialog, allowing the user to switch to another - input method. - */ - public static final int switchInputMethod = 0x01020024; - public static final int switchWidget = 0x010202fb; - public static final int switch_new = 0x010202ac; - public static final int switch_old = 0x010202a8; - public static final int tabcontent = 0x01020011; - public static final int tabhost = 0x01020012; - public static final int tabs = 0x01020013; - public static final int text = 0x01020046; - public static final int text1 = 0x01020014; - public static final int text2 = 0x01020015; - public static final int three = 0x01020351; - public static final int time = 0x01020064; - public static final int timePicker = 0x0102034d; - public static final int timePickerLayout = 0x01020349; - public static final int time_current = 0x010202c8; - public static final int title = 0x01020016; - public static final int titleDivider = 0x01020271; - public static final int titleDividerTop = 0x01020278; - public static final int title_container = 0x01020254; - public static final int title_template = 0x0102026f; - public static final int to_common = 0x01020332; - public static final int to_org = 0x01020334; - public static final int to_org_unit = 0x01020336; - public static final int toggle = 0x01020017; - public static final int topPanel = 0x0102026e; - public static final int two = 0x01020350; - public static final int unmount_button = 0x0102035c; - public static final int up = 0x0102025a; - public static final int value = 0x010202b8; - public static final int visible_panel = 0x0102035d; - public static final int websearch = 0x01020396; - public static final int webviewchromium_ampm = 0x0102037e; - public static final int webviewchromium_autofill_label = 0x01020366; - public static final int webviewchromium_autofill_popup_window = 0x01020264; - public static final int webviewchromium_autofill_sublabel = 0x01020367; - public static final int webviewchromium_color_button_swatch = 0x01020392; - public static final int webviewchromium_color_picker_advanced = 0x0102036c; - public static final int webviewchromium_color_picker_gradient = 0x0102036a; - public static final int webviewchromium_color_picker_more_colors_button = 0x0102036f; - public static final int webviewchromium_color_picker_more_colors_button_border = 0x0102036e; - public static final int webviewchromium_color_picker_seek_bar = 0x0102036b; - public static final int webviewchromium_color_picker_selected_color_view = 0x01020372; - public static final int webviewchromium_color_picker_simple = 0x0102036d; - public static final int webviewchromium_color_picker_text = 0x01020368; - public static final int webviewchromium_color_picker_title = 0x01020370; - public static final int webviewchromium_date_picker = 0x01020373; - public static final int webviewchromium_date_time_suggestion_label = 0x01020377; - public static final int webviewchromium_date_time_suggestion_value = 0x01020376; - public static final int webviewchromium_hour = 0x01020378; - public static final int webviewchromium_milli = 0x0102037d; - public static final int webviewchromium_minute = 0x01020379; - public static final int webviewchromium_pickers = 0x0102037f; - public static final int webviewchromium_position_in_year = 0x01020380; - public static final int webviewchromium_second = 0x0102037b; - public static final int webviewchromium_second_colon = 0x0102037a; - public static final int webviewchromium_second_dot = 0x0102037c; - public static final int webviewchromium_select_action_menu_copy = 0x0102039b; - public static final int webviewchromium_select_action_menu_cut = 0x0102039a; - public static final int webviewchromium_select_action_menu_paste = 0x0102039c; - public static final int webviewchromium_select_action_menu_select_all = 0x01020399; - public static final int webviewchromium_select_action_menu_share = 0x0102039d; - public static final int webviewchromium_select_action_menu_web_search = 0x0102039e; - public static final int webviewchromium_time_picker = 0x01020374; - public static final int webviewchromium_validation_bubble_arrow_image = 0x01020385; - public static final int webviewchromium_validation_bubble_main_text = 0x01020386; - public static final int webviewchromium_validation_bubble_sub_text = 0x01020387; - public static final int webviewchromium_year = 0x01020381; - public static final int widget_frame = 0x01020018; - public static final int wifi_p2p_wps_pin = 0x01020389; - public static final int year = 0x01020294; - public static final int zero = 0x01020358; - public static final int zoomControls = 0x0102038d; - public static final int zoomIn = 0x0102038f; - public static final int zoomMagnify = 0x01020390; - public static final int zoomOut = 0x0102038e; - } - public static final class integer { - /** - * Max number of downloads allowed to proceed concurrently - */ - public static final int config_MaxConcurrentDownloadsAllowed = 0x010e0039; - /** - Control whether being in the car dock (and powered) always - keeps the screen on. By default it stays on when plugged in to - AC. 0 will not keep it on; or together 1 to stay on when plugged - in to AC and 2 to stay on when plugged in to USB. (So 3 for both.) - */ - public static final int config_carDockKeepsScreenOn = 0x010e0019; - /** - The number of degrees to rotate the display when the device is in a car dock. - A value of -1 means no change in orientation by default. - */ - public static final int config_carDockRotation = 0x010e0015; - /** - Display low battery warning when battery level dips to this value. - Also, the battery stats are flushed to disk when we hit this level. - */ - public static final int config_criticalBatteryWarningLevel = 0x010e001d; - /** - When a database query is executed, the results retuned are paginated - in pages of size (in KB) indicated by this value - */ - public static final int config_cursorWindowSize = 0x010e003b; - /** - The default reduced-datarate notification mask - 2 means give warning - */ - public static final int config_datause_notification_type = 0x010e0033; - /** - * The default data-use polling period. - */ - public static final int config_datause_polling_period_sec = 0x010e0030; - /** - * The default data-use threshold in bytes. 0 disables - */ - public static final int config_datause_threshold_bytes = 0x010e0031; - /** - * The default reduced-datarate value in kilobits per sec - */ - public static final int config_datause_throttle_kbitsps = 0x010e0032; - /** - * Default LED off time for notification LED in milliseconds. - */ - public static final int config_defaultNotificationLedOff = 0x010e0022; - /** - * Default LED on time for notification LED in milliseconds. - */ - public static final int config_defaultNotificationLedOn = 0x010e0021; - /** - Control the default UI mode type to use when there is no other type override - happening. One of the following values (See Configuration.java): - 1 UI_MODE_TYPE_NORMAL - 4 UI_MODE_TYPE_TELEVISION - 5 UI_MODE_TYPE_APPLIANCE - Any other values will have surprising consequences. - */ - public static final int config_defaultUiModeType = 0x010e0017; - /** - Control whether being in the desk dock (and powered) always - keeps the screen on. By default it stays on when plugged in to - AC. 0 will not keep it on; or together 1 to stay on when plugged - in to AC and 2 to stay on when plugged in to USB. (So 3 for both.) - */ - public static final int config_deskDockKeepsScreenOn = 0x010e0018; - /** - The number of degrees to rotate the display when the device is in a desk dock. - A value of -1 means no change in orientation by default. - */ - public static final int config_deskDockRotation = 0x010e0014; - /** - Control the behavior when the user double-taps the home button. - 0 - Nothing - 1 - Recent apps view in SystemUI - This needs to match the constants in - policy/src/com/android/internal/policy/impl/PhoneWindowManager.java - - */ - public static final int config_doubleTapOnHomeBehavior = 0x010e0029; - /** - When the free space available in DownloadManager's data dir falls - below the percentage value specified by this param, DownloadManager - starts removing files to try to make percentage of available - free space above this threshold value. - */ - public static final int config_downloadDataDirLowSpaceThreshold = 0x010e003a; - /** - Max space (in MB) allocated to DownloadManager to store the downloaded - files if they are to be stored in DownloadManager's data dir, - which typically is /data/data/com.android.providers.downloads/files - */ - public static final int config_downloadDataDirSize = 0x010e0038; - /** - Device configuration setting the /proc/sys/vm/extra_free_kbytes tunable in the kernel - (if it exists). A high value will increase the amount of memory that the kernel - tries to keep free, reducing allocation time and causing the lowmemorykiller to kill - earlier. A low value allows more memory to be used by processes but may cause more - allocations to block waiting on disk I/O or lowmemorykiller. Overrides the default - value chosen by ActivityManager based on screen size. 0 prevents keeping any extra - memory over what the kernel keeps by default. -1 keeps the default. - */ - public static final int config_extraFreeKbytesAbsolute = 0x010e000a; - /** - Device configuration adjusting the /proc/sys/vm/extra_free_kbytes tunable in the kernel - (if it exists). 0 uses the default value chosen by ActivityManager. A positive value - will increase the amount of memory that the kernel tries to keep free, reducing - allocation time and causing the lowmemorykiller to kill earlier. A negative value - allows more memory to be used by processes but may cause more allocations to block - waiting on disk I/O or lowmemorykiller. Directly added to the default value chosen by - ActivityManager based on screen size. - */ - public static final int config_extraFreeKbytesAdjust = 0x010e000b; - /** - Threshold (in ms) under which a screen off / screen on will be considered a reset of the - immersive mode confirmation prompt. - */ - public static final int config_immersive_mode_confirmation_panic = 0x010e0047; - /** - Indicate whether the lid state impacts the accessibility of - the physical keyboard. 0 means it doesn't, 1 means it is accessible - when the lid is open, 2 means it is accessible when the lid is - closed. The default is 0. - */ - public static final int config_lidKeyboardAccessibility = 0x010e001a; - /** - Indicate whether the lid state impacts the accessibility of - the navigation buttons. 0 means it doesn't, 1 means it is accessible - when the lid is open, 2 means it is accessible when the lid is - closed. The default is 0. - */ - public static final int config_lidNavigationAccessibility = 0x010e001b; - /** - The number of degrees to rotate the display when the keyboard is open. - A value of -1 means no change in orientation by default. - */ - public static final int config_lidOpenRotation = 0x010e0013; - /** - Amount of time it takes for the light sensor to warm up in milliseconds. - For this time after the screen turns on, the Power Manager - will not debounce light sensor readings - */ - public static final int config_lightSensorWarmupTime = 0x010e002e; - /** - * The attenuation in dB applied to the lock/unlock sounds. - */ - public static final int config_lockSoundVolumeDb = 0x010e0005; - /** - * The duration (in milliseconds) of a long animation. - */ - public static final int config_longAnimTime = 0x010e0002; - /** - Control the behavior when the user long presses the home button. - 0 - Nothing - 1 - Recent apps view in SystemUI - 2 - Launch assist intent - This needs to match the constants in - policy/src/com/android/internal/policy/impl/PhoneWindowManager.java - - see comment in values/config.xml - see comment in values/config.xml - */ - public static final int config_longPressOnHomeBehavior = 0x010e0028; - /** - Control the behavior when the user long presses the power button. - 0 - Nothing - 1 - Global actions menu - 2 - Power off (with confirmation) - - */ - public static final int config_longPressOnPowerBehavior = 0x010e001c; - /** - * Close low battery warning when battery level reaches this value - */ - public static final int config_lowBatteryCloseWarningLevel = 0x010e0020; - /** - * Display low battery warning when battery level dips to this value - */ - public static final int config_lowBatteryWarningLevel = 0x010e001f; - /** - Device configuration setting the minfree tunable in the lowmemorykiller in the kernel. - A high value will cause the lowmemorykiller to fire earlier, keeping more memory - in the file cache and preventing I/O thrashing, but allowing fewer processes to - stay in memory. A low value will keep more processes in memory but may cause - thrashing if set too low. Overrides the default value chosen by ActivityManager - based on screen size and total memory for the largest lowmemorykiller bucket, and - scaled proportionally to the smaller buckets. -1 keeps the default. - */ - public static final int config_lowMemoryKillerMinFreeKbytesAbsolute = 0x010e0008; - /** - Device configuration adjusting the minfree tunable in the lowmemorykiller in the - kernel. A high value will cause the lowmemorykiller to fire earlier, keeping more - memory in the file cache and preventing I/O thrashing, but allowing fewer processes - to stay in memory. A low value will keep more processes in memory but may cause - thrashing if set too low. Directly added to the default value chosen by - ActivityManager based on screen size and total memory for the largest lowmemorykiller - bucket, and scaled proportionally to the smaller buckets. 0 keeps the default. - */ - public static final int config_lowMemoryKillerMinFreeKbytesAdjust = 0x010e0009; - /** - Maximum number of grid columns permitted in the ResolverActivity - used for picking activities to handle an intent. - Maximum number of grid columns permitted in the ResolverActivity - used for picking activities to handle an intent. - Maximum number of grid columns permitted in the ResolverActivity - used for picking activities to handle an intent. - */ - public static final int config_maxResolverActivityColumns = 0x010e0042; - /** - Max number of Bluetooth tethering connections allowed. If this is - updated config_tether_dhcp_range has to be updated appropriately. - */ - public static final int config_max_pan_devices = 0x010e000e; - /** - * The duration (in milliseconds) of a medium-length animation. - */ - public static final int config_mediumAnimTime = 0x010e0001; - /** - Configure mobile network MTU. The standard default is set here but each carrier - may have a specific value set in an overlay config.xml file. - Configure mobile network MTU. Carrier specific value is set here. - - Configure mobile network MTU. Carrier specific value is set here. - - Configure mobile network MTU. Carrier specific value is set here. - - Configure mobile network MTU. Carrier specific value is set here. - - Configure mobile network MTU. Carrier specific value is set here. - - Configure mobile network MTU. Carrier specific value is set here. - - Configure mobile network MTU. Carrier specific value is set here. - - Configure mobile network MTU. Carrier specific value is set here. - - Configure mobile network MTU. Carrier specific value is set here. - - Configure mobile network MTU. Carrier specific value is set here. - - Configure mobile network MTU. Carrier specific value is set here. - - Configure mobile network MTU. Carrier specific value is set here. - - Configure mobile network MTU. Carrier specific value is set here. - - Configure mobile network MTU. Carrier specific value is set here. - - Configure mobile network MTU. Carrier specific value is set here. - - Configure mobile network MTU. Carrier specific value is set here. - - Configure mobile network MTU. Carrier specific value is set here. - - Configure mobile network MTU. Carrier specific value is set here. - - */ - public static final int config_mobile_mtu = 0x010e0045; - /** - * Maximum number of supported users - */ - public static final int config_multiuserMaximumUsers = 0x010e0043; - /** - * Default network policy warning threshold, in megabytes. - */ - public static final int config_networkPolicyDefaultWarning = 0x010e0041; - /** - * The maximum duration (in milliseconds) we expect a network transition to take - */ - public static final int config_networkTransitionTimeout = 0x010e000d; - /** - * Default value for led color when battery is fully charged - */ - public static final int config_notificationsBatteryFullARGB = 0x010e0025; - /** - * Default value for LED off time when the battery is low on charge in miliseconds - */ - public static final int config_notificationsBatteryLedOff = 0x010e0027; - /** - * Default value for LED on time when the battery is low on charge in miliseconds - */ - public static final int config_notificationsBatteryLedOn = 0x010e0026; - /** - * Default value for led color when battery is low on charge - */ - public static final int config_notificationsBatteryLowARGB = 0x010e0023; - /** - * Default value for led color when battery is medium charged - */ - public static final int config_notificationsBatteryMediumARGB = 0x010e0024; - /** - * Normal polling frequency in milliseconds - */ - public static final int config_ntpPollingInterval = 0x010e003c; - /** - * Try-again polling interval in milliseconds, in case the network request failed - */ - public static final int config_ntpPollingIntervalShorter = 0x010e003d; - /** - Number of times to try again with the shorter interval, before backing - off until the normal polling interval. A value < 0 indicates infinite. - */ - public static final int config_ntpRetry = 0x010e003e; - /** - If the time difference is greater than this threshold in milliseconds, - then update the time. - */ - public static final int config_ntpThreshold = 0x010e003f; - /** - * Timeout to wait for NTP server response. - */ - public static final int config_ntpTimeout = 0x010e0040; - /** - Override the default detection behavior for the framework method - android.view.ViewConfiguration#hasPermanentMenuKey(). - Valid settings are: - 0 - No change. Use the default autodetection behavior. - 1 - The device DOES have a permanent menu key; ignore autodetection. - 2 - The device DOES NOT have a permanent menu key; ignore autodetection. - */ - public static final int config_overrideHasPermanentMenuKey = 0x010e0049; - /** - The duration (in milliseconds) that the radio will scan for a signal - when there's no network connection. If the scan doesn't timeout, use zero - */ - public static final int config_radioScanningTimeout = 0x010e000c; - /** - Safe headphone volume index. When music stream volume is below this index - the SPL on headphone output is compliant to EN 60950 requirements for portable music - players. - */ - public static final int config_safe_media_volume_index = 0x010e0044; - /** - Screen brightness used to dim the screen when the user activity - timeout expires. May be less than the minimum allowed brightness setting - that can be set by the user. - */ - public static final int config_screenBrightnessDim = 0x010e002d; - /** - Default screen brightness setting. - Must be in the range specified by minimum and maximum. - */ - public static final int config_screenBrightnessSettingDefault = 0x010e002c; - /** - Maximum screen brightness allowed by the power manager. - The user is forbidden from setting the brightness above this level. - */ - public static final int config_screenBrightnessSettingMaximum = 0x010e002b; - /** - Minimum screen brightness setting allowed by the power manager. - The user is forbidden from setting the brightness below this level. - */ - public static final int config_screenBrightnessSettingMinimum = 0x010e002a; - /** - * The duration (in milliseconds) of a short animation. - */ - public static final int config_shortAnimTime = 0x010e0000; - /** - * Shutdown if the battery temperature exceeds (this value * 0.1) Celsius. - */ - public static final int config_shutdownBatteryTemperature = 0x010e001e; - /** - The attenuation in dB applied to the sound effects played - through AudioManager.playSoundEffect() when no volume is specified. - */ - public static final int config_soundEffectVolumeDb = 0x010e0004; - /** - * Default Gravity setting for the system Toast view. Equivalent to: Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM - */ - public static final int config_toastDefaultGravity = 0x010e0046; - /** - The number of degrees to rotate the display when the device has HDMI connected - but is not in a dock. A value of -1 means no change in orientation by default. - Use -1 except on older devices whose Hardware Composer HAL does not - provide full support for multiple displays. - */ - public static final int config_undockedHdmiRotation = 0x010e0016; - /** - * For some operators, PDU has garbages. To fix it, need to use valid index - */ - public static final int config_valid_wappush_index = 0x010e0048; - /** - Specifies the amount of time to disable virtual keys after the screen is touched - in order to filter out accidental virtual key presses due to swiping gestures - or taps near the edge of the display. May be 0 to disable the feature. - It is recommended that this value be no more than 250 ms. - This feature should be disabled for most devices. - */ - public static final int config_virtualKeyQuietTimeMillis = 0x010e002f; - /** - If Voice Radio Technology is RIL_RADIO_TECHNOLOGY_LTE:14 this is the value - that should be used instead. A value of RIL_RADIO_TECHNOLOGY_UNKNOWN:0 means - there is no replacement value and VoLTE is assumed to be supported - */ - public static final int config_volte_replacement_rat = 0x010e0034; - /** - Wifi driver stop delay, in milliseconds. - Default value is 2 minutes. - */ - public static final int config_wifi_driver_stop_delay = 0x010e0012; - /** - Integer indicating the framework scan interval in milliseconds. This is used in the scenario - where the chipset does not support background scanning (config_wifi_background_scan_suport - is false) to set up a periodic wake up scan so that the device can connect to a new access - point on the move. A value of 0 means no periodic scans will be used in the framework. - */ - public static final int config_wifi_framework_scan_interval = 0x010e0011; - /** - * Integer indicating wpa_supplicant scan interval when p2p is connected in milliseconds - */ - public static final int config_wifi_scan_interval_p2p_connected = 0x010e0010; - /** - * Integer indicating wpa_supplicant scan interval in milliseconds - */ - public static final int config_wifi_supplicant_scan_interval = 0x010e000f; - /** - Maximum number of database connections opened and managed by framework layer - to handle queries on each database when using Write-Ahead Logging. - */ - public static final int db_connection_pool_size = 0x010e0035; - /** - Maximum size of the persistent journal file in bytes. - If the journal file grows to be larger than this amount then SQLite will - truncate it after committing the transaction. - */ - public static final int db_journal_size_limit = 0x010e0036; - /** - The Write-Ahead Log auto-checkpoint interval in database pages (typically 1 to 4KB). - The log is checkpointed automatically whenever it exceeds this many pages. - When a database is reopened, its journal mode is set back to the default - journal mode, which may cause a checkpoint operation to occur. Checkpoints - can also happen at other times when transactions are committed. - The bigger the WAL file, the longer a checkpoint operation takes, so we try - to keep the WAL file relatively small to avoid long delays. - The size of the WAL file is also constrained by 'db_journal_size_limit'. - */ - public static final int db_wal_autocheckpoint = 0x010e0037; - /** - The maximum number of action buttons that should be permitted within - an action bar/action mode. This will be used to determine how many - showAsAction="ifRoom" items can fit. "always" items can override this. - The maximum number of action buttons that should be permitted within - an action bar/action mode. This will be used to determine how many - showAsAction="ifRoom" items can fit. "always" items can override this. - The maximum number of action buttons that should be permitted within - an action bar/action mode. This will be used to determine how many - showAsAction="ifRoom" items can fit. "always" items can override this. - The maximum number of action buttons that should be permitted within - an action bar/action mode. This will be used to determine how many - showAsAction="ifRoom" items can fit. "always" items can override this. - The maximum number of action buttons that should be permitted within - an action bar/action mode. This will be used to determine how many - showAsAction="ifRoom" items can fit. "always" items can override this. - */ - public static final int max_action_buttons = 0x010e004a; - /** - Maximum numerical value that will be shown in a status bar - notification icon or in the notification itself. Will be replaced - with @string/status_bar_notification_info_overflow when shown in the - UI. - */ - public static final int status_bar_notification_info_maxnum = 0x010e0003; - } - public static final class interpolator { - /** - * Acceleration curve matching a cubic ease out function. - */ - public static final int accelerate_cubic = 0x010c0002; - /** - * Acceleration curve matching an ease in + ease out function - */ - public static final int accelerate_decelerate = 0x010c0006; - /** - * Acceleration curve matching a quadtratic ease out function. - */ - public static final int accelerate_quad = 0x010c0000; - /** - * Acceleration curve matching a quint ease out function. - */ - public static final int accelerate_quint = 0x010c0004; - /** - * An interpolator where the change starts backward then flings forward. - */ - public static final int anticipate = 0x010c0007; - /** - An interpolator where the change starts backward then flings forward and - overshoots the target value and finally goes back to the final value. - */ - public static final int anticipate_overshoot = 0x010c0009; - /** - * An interpolator where the change bounces at the end. - */ - public static final int bounce = 0x010c000a; - /** - Repeats the animation for one cycle. The rate of change follows a - sinusoidal pattern. - */ - public static final int cycle = 0x010c000c; - /** - * Acceleration curve matching a cubic ease in function. - */ - public static final int decelerate_cubic = 0x010c0003; - /** - * Acceleration curve matching a quadtratic ease in function. - */ - public static final int decelerate_quad = 0x010c0001; - /** - * Acceleration curve matching a quint ease in function. - */ - public static final int decelerate_quint = 0x010c0005; - /** - * An interpolator where the rate of change is constant. - */ - public static final int linear = 0x010c000b; - /** - An interpolator where the change flings forward and overshoots the last - value then comes back. - */ - public static final int overshoot = 0x010c0008; - } - public static final class layout { - public static final int action_bar_home = 0x01090018; - public static final int action_bar_title_item = 0x01090019; - public static final int action_bar_up_container = 0x0109001a; - public static final int action_menu_item_layout = 0x0109001b; - public static final int action_menu_layout = 0x0109001c; - public static final int action_mode_close_item = 0x0109001e; - public static final int activity_chooser_view = 0x0109001f; - public static final int activity_chooser_view_list_item = 0x01090020; - public static final int activity_list = 0x01090021; - public static final int activity_list_item = 0x01090000; - public static final int activity_list_item_2 = 0x01090022; - public static final int alert_dialog = 0x01090024; - public static final int alert_dialog_progress = 0x01090026; - public static final int always_use_checkbox = 0x01090028; - public static final int am_compat_mode_dialog = 0x01090029; - public static final int app_not_authorized = 0x0109002a; - public static final int app_permission_item = 0x0109002b; - public static final int app_permission_item_money = 0x0109002c; - public static final int app_permission_item_old = 0x0109002d; - public static final int app_perms_summary = 0x0109002e; - public static final int auto_complete_list = 0x0109002f; - public static final int browser_link_context_header = 0x0109000e; - public static final int calendar_view = 0x01090031; - public static final int character_picker = 0x01090032; - public static final int character_picker_button = 0x01090033; - public static final int choose_account = 0x01090034; - public static final int choose_account_row = 0x01090035; - public static final int choose_account_type = 0x01090036; - public static final int choose_type_and_account = 0x01090037; - public static final int date_picker = 0x01090038; - public static final int date_picker_dialog = 0x01090039; - public static final int expandable_list_content = 0x01090001; - public static final int expanded_menu_layout = 0x01090042; - public static final int fragment_bread_crumb_item = 0x01090043; - public static final int fragment_bread_crumbs = 0x01090044; - public static final int global_actions_item = 0x01090045; - public static final int global_actions_silent_mode = 0x01090046; - public static final int grant_credentials_permission = 0x01090047; - public static final int heavy_weight_switcher = 0x01090048; - public static final int icon_menu_item_layout = 0x01090049; - public static final int icon_menu_layout = 0x0109004a; - public static final int immersive_mode_cling = 0x0109004b; - public static final int input_method = 0x0109004c; - public static final int input_method_extract_view = 0x0109004d; - public static final int input_method_switch_dialog_title = 0x0109004e; - public static final int js_prompt = 0x0109004f; - public static final int launch_warning = 0x01090053; - /** - Standard content view for a {@link android.app.ListFragment}. - If you are implementing a subclass of ListFragment with your - own customized content, you can include this layout in that - content to still retain all of the standard functionality of - the base class. - */ - public static final int list_content = 0x01090014; - public static final int list_content_simple = 0x01090054; - public static final int list_menu_item_checkbox = 0x01090056; - public static final int list_menu_item_icon = 0x01090057; - public static final int list_menu_item_layout = 0x01090058; - public static final int list_menu_item_radio = 0x01090059; - public static final int locale_picker_item = 0x0109005a; - public static final int media_controller = 0x0109005b; - public static final int media_route_chooser_dialog = 0x0109005c; - public static final int media_route_controller_dialog = 0x0109005d; - public static final int media_route_list_item = 0x0109005e; - public static final int notification_action = 0x01090060; - public static final int notification_action_tombstone = 0x01090062; - public static final int notification_intruder_content = 0x01090063; - public static final int notification_template_base = 0x01090064; - public static final int notification_template_big_base = 0x01090065; - public static final int notification_template_big_picture = 0x01090066; - public static final int notification_template_big_text = 0x01090067; - public static final int notification_template_inbox = 0x01090068; - public static final int notification_template_part_chronometer = 0x01090069; - public static final int notification_template_part_time = 0x0109006a; - public static final int number_picker = 0x0109006b; - public static final int overlay_display_window = 0x0109006d; - public static final int permissions_package_list_item = 0x0109006f; - public static final int popup_menu_item_layout = 0x01090070; - public static final int preference = 0x01090072; - public static final int preference_category = 0x01090002; - public static final int preference_header_item = 0x01090077; - public static final int preference_list_content = 0x0109007b; - public static final int preference_list_content_single = 0x0109007c; - public static final int preference_list_fragment = 0x0109007d; - public static final int preference_widget_seekbar = 0x0109007f; - public static final int progress_dialog = 0x01090082; - public static final int recent_apps_dialog = 0x01090084; - public static final int remote_views_adapter_default_loading_view = 0x01090086; - public static final int resolve_list_item = 0x01090087; - public static final int resolver_list = 0x01090088; - public static final int restrictions_pin_challenge = 0x01090089; - public static final int restrictions_pin_setup = 0x0109008a; - public static final int safe_mode = 0x0109008b; - public static final int screen_action_bar = 0x0109008d; - public static final int screen_custom_title = 0x0109008e; - public static final int screen_progress = 0x0109008f; - public static final int screen_simple = 0x01090090; - public static final int screen_simple_overlay_action_mode = 0x01090091; - public static final int screen_title = 0x01090092; - public static final int screen_title_icons = 0x01090093; - public static final int search_bar = 0x01090094; - public static final int search_dropdown_item_icons_2line = 0x01090096; - public static final int search_view = 0x01090097; - public static final int seekbar_dialog = 0x01090098; - public static final int select_dialog = 0x01090099; - public static final int select_dialog_item = 0x01090011; - public static final int select_dialog_multichoice = 0x01090013; - public static final int select_dialog_singlechoice = 0x01090012; - public static final int select_dialog_singlechoice_holo = 0x0109009d; - public static final int simple_dropdown_hint = 0x0109009e; - public static final int simple_dropdown_item_1line = 0x0109000a; - public static final int simple_expandable_list_item_1 = 0x01090006; - public static final int simple_expandable_list_item_2 = 0x01090007; - public static final int simple_gallery_item = 0x0109000b; - public static final int simple_list_item_1 = 0x01090003; - public static final int simple_list_item_2 = 0x01090004; - public static final int simple_list_item_2_single_choice = 0x010900a0; - /** - A version of {@link #simple_list_item_1} that is able to change its - background state to indicate when it is activated (that is checked by - a ListView). - */ - public static final int simple_list_item_activated_1 = 0x01090016; - /** - A version of {@link #simple_list_item_2} that is able to change its - background state to indicate when it is activated (that is checked by - a ListView). - */ - public static final int simple_list_item_activated_2 = 0x01090017; - public static final int simple_list_item_checked = 0x01090005; - public static final int simple_list_item_multiple_choice = 0x01090010; - public static final int simple_list_item_single_choice = 0x0109000f; - /** - * A simple ListView item layout which can contain text and support (single or multiple) item selection. - */ - public static final int simple_selectable_list_item = 0x01090015; - public static final int simple_spinner_dropdown_item = 0x01090009; - public static final int simple_spinner_item = 0x01090008; - public static final int sms_short_code_confirmation_dialog = 0x010900a1; - public static final int ssl_certificate = 0x010900a2; - public static final int status_bar_latest_event_content = 0x010900a3; - public static final int status_bar_latest_event_ticker = 0x010900a4; - public static final int status_bar_latest_event_ticker_large_icon = 0x010900a5; - public static final int tab_content = 0x010900a6; - public static final int tab_indicator_holo = 0x010900a8; - public static final int test_list_item = 0x0109000c; - public static final int text_drag_thumbnail = 0x010900a9; - public static final int text_edit_action_popup_text = 0x010900aa; - public static final int textview_hint = 0x010900b1; - public static final int time_picker = 0x010900b2; - public static final int time_picker_dialog = 0x010900b3; - public static final int transient_notification = 0x010900b5; - public static final int two_line_list_item = 0x0109000d; - public static final int typing_filter = 0x010900b7; - public static final int usb_storage_activity = 0x010900b8; - public static final int volume_adjust = 0x010900b9; - public static final int volume_adjust_item = 0x010900ba; - public static final int web_text_view_dropdown = 0x010900bc; - public static final int webview_find = 0x010900bd; - public static final int webview_select_singlechoice = 0x010900be; - public static final int webviewchromium_autofill_text = 0x010900bf; - public static final int webviewchromium_color_picker_advanced_component = 0x010900c0; - public static final int webviewchromium_color_picker_dialog_content = 0x010900c1; - public static final int webviewchromium_color_picker_dialog_title = 0x010900c2; - public static final int webviewchromium_date_time_picker_dialog = 0x010900c3; - public static final int webviewchromium_date_time_suggestion = 0x010900c4; - public static final int webviewchromium_multi_field_time_picker_dialog = 0x010900c5; - public static final int webviewchromium_two_field_date_picker = 0x010900c6; - public static final int webviewchromium_validation_message_bubble = 0x010900c7; - public static final int wifi_p2p_dialog = 0x010900c8; - public static final int wifi_p2p_dialog_row = 0x010900c9; - public static final int zoom_container = 0x010900cb; - public static final int zoom_controls = 0x010900cc; - public static final int zoom_magnify = 0x010900cd; - } - public static final class menu { - public static final int webview_copy = 0x01140000; - public static final int webview_find = 0x01140001; - public static final int webviewchromium_select_action_menu = 0x01140002; - } - public static final class mipmap { - /** - * Default icon for applications that don't specify an icon. - */ - public static final int sym_def_app_icon = 0x010d0000; - } - public static final class plurals { - /** - * This is used to express that something will occur some number of abbreviated days in the future (e.g., in 5 days). - */ - public static final int abbrev_in_num_days = 0x01130011; - /** - * This is used to express that something will occur some number of abbreviated hours in the future (e.g., in 5 hrs). - */ - public static final int abbrev_in_num_hours = 0x01130010; - /** - * This is used to express that something will occur some number of abbreviated minutes in the future (e.g., in 5 mins). - */ - public static final int abbrev_in_num_minutes = 0x0113000f; - /** - * This is used to express that something will occur some number of abbreviated seconds in the future (e.g., in 5 secs). - */ - public static final int abbrev_in_num_seconds = 0x0113000e; - /** - * This is used to express that something occurred some number of abbreviated days in the past (e.g., 5 days ago). - */ - public static final int abbrev_num_days_ago = 0x0113000d; - /** - * This is used to express that something occurred some number of abbreviated hours in the past (e.g., 5 hrs ago). - */ - public static final int abbrev_num_hours_ago = 0x0113000c; - /** - * This is used to express that something occurred some number of abbreviated minutes in the past (e.g., 5 mins ago). - */ - public static final int abbrev_num_minutes_ago = 0x0113000b; - /** - * This is used to express that something occurred some number of abbreviated seconds in the past (e.g., 5 secs ago). - */ - public static final int abbrev_num_seconds_ago = 0x0113000a; - /** - * Phrase describing a time duration using hours [CHAR LIMIT=16] - */ - public static final int duration_hours = 0x01130014; - /** - * Phrase describing a time duration using minutes [CHAR LIMIT=16] - */ - public static final int duration_minutes = 0x01130013; - /** - * Phrase describing a time duration using seconds [CHAR LIMIT=16] - */ - public static final int duration_seconds = 0x01130012; - /** - * This is used to express that something will occur some number of days in the future (e.g., in 5 days). - */ - public static final int in_num_days = 0x01130009; - /** - * This is used to express that something will occur some number of hours in the future (e.g., in 5 hours). - */ - public static final int in_num_hours = 0x01130008; - /** - * This is used to express that something will occur some number of minutes in the future (e.g., in 5 minutes). - */ - public static final int in_num_minutes = 0x01130007; - /** - * This is used to express that something will occur some number of seconds in the future (e.g., in 5 seconds). - */ - public static final int in_num_seconds = 0x01130006; - /** - * This is used to express that something occurred within the last X days (e.g., Last 7 days). - */ - public static final int last_num_days = 0x01130004; - /** - Displayed on the Find dialog to display the index of the highlighted - match and total number of matches found in the current page. [CHAR LIMIT=NONE] - */ - public static final int matches_found = 0x01130017; - /** - * This is used to express that something occurred some number of days in the past (e.g., 5 days ago). - */ - public static final int num_days_ago = 0x01130005; - /** - * This is used to express that something occurred some number of hours in the past (e.g., 5 hours ago). - */ - public static final int num_hours_ago = 0x01130003; - /** - * This is used to express that something occurred some number of minutes in the past (e.g., 5 minutes ago). - */ - public static final int num_minutes_ago = 0x01130002; - /** - * This is used to express that something occurred some number of seconds in the past (e.g., 5 seconds ago). - */ - public static final int num_seconds_ago = 0x01130001; - /** - * Displayed when a SIM PIN/PUK is entered incorrectly. - */ - public static final int pinpuk_attempts = 0x01130000; - /** - PIN entry dialog countdown message for next chance to enter the PIN [CHAR LIMIT=none] - Phrase describing a time duration using seconds [CHAR LIMIT=none] - */ - public static final int restr_pin_countdown = 0x01130018; - /** - * A notification is shown when there are open wireless networks nearby. This is the notification's title. - */ - public static final int wifi_available = 0x01130015; - /** - * A notification is shown when there are open wireless networks nearby. This is the notification's message. - */ - public static final int wifi_available_detailed = 0x01130016; - } - public static final class raw { - public static final int accessibility_gestures = 0x01100000; - public static final int fallbackring = 0x01100001; - public static final int incognito_mode_start_page = 0x01100002; - public static final int loaderror = 0x01100003; - public static final int nodomain = 0x01100004; - } - public static final class string { - /** - * Displayed as the title for a success/failure report enabling/disabling call barring. - */ - public static final int BaMmi = 0x01040068; - /** - * Displayed to confirm to the user that caller ID will not be restricted on the next call or in general. - */ - public static final int CLIRDefaultOffNextCallOff = 0x01040074; - /** - * Displayed to confirm to the user that caller ID will not be restricted on the next call but usually is. - */ - public static final int CLIRDefaultOffNextCallOn = 0x01040073; - /** - * Displayed to confirm to the user that caller ID will be not restricted on the next call even though it usually is. - */ - public static final int CLIRDefaultOnNextCallOff = 0x01040072; - /** - * Displayed to confirm to the user that caller ID will be restricted on the next call as usual. - */ - public static final int CLIRDefaultOnNextCallOn = 0x01040071; - /** - * Displayed to tell the user that they cannot change the caller ID setting. - */ - public static final int CLIRPermanent = 0x01040076; - /** - * Displayed as the title for a success/failure report enabling/disabling call forwarding. - */ - public static final int CfMmi = 0x01040066; - /** - * Displayed as the title for a success/failure report enabling/disabling caller ID. - */ - public static final int ClipMmi = 0x01040064; - /** - * Displayed as the title for a success/failure report enabling/disabling caller ID. - */ - public static final int ClirMmi = 0x01040065; - /** - * Displayed as the title for a success/failure report enabling/disabling call waiting. - */ - public static final int CwMmi = 0x01040067; - /** - * Quoted name for 12am, uppercase first letter - */ - public static final int Midnight = 0x010403e5; - /** - * Quoted name for 12pm, uppercase first letter - */ - public static final int Noon = 0x010403e3; - /** - * Displayed as the title for a success/failure report changing the SIM PIN. - */ - public static final int PinMmi = 0x0104006a; - /** - * Displayed as the title for a success/failure report changing the SIM password. - */ - public static final int PwdMmi = 0x01040069; - /** - * Notification title to tell the user that restricted state is changed by access control. - */ - public static final int RestrictedChangedTitle = 0x01040077; - /** - * Displayed to tell the user that all emergency and normal voice services are blocked by access control. - */ - public static final int RestrictedOnAllVoice = 0x0104007b; - /** - * Displayed to tell the user that data service is blocked by access control. - */ - public static final int RestrictedOnData = 0x01040078; - /** - * Displayed to tell the user that emergency service is blocked by access control. - */ - public static final int RestrictedOnEmergency = 0x01040079; - /** - * Displayed to tell the user that normal service is blocked by access control. - */ - public static final int RestrictedOnNormal = 0x0104007a; - /** - * STK setup Call - */ - public static final int SetupCallDefault = 0x0104053d; - /** - * Button to close error alert when a video cannot be played - */ - public static final int VideoView_error_button = 0x01040010; - /** - * Text for error alert when a video container is not valid for progressive download/playback. - */ - public static final int VideoView_error_text_invalid_progressive_playback = 0x01040015; - /** - * Text for error alert when a video cannot be played. it can be used by any app. - */ - public static final int VideoView_error_text_unknown = 0x01040011; - /** - * Title for error alert when a video cannot be played. it can be used by any app. - */ - public static final int VideoView_error_title = 0x01040012; - public static final int accept = 0x0104043c; - /** - * Label to show for a service that is running because it is an accessibility module. - */ - public static final int accessibility_binding_label = 0x010404b1; - /** - * Text spoken when the user enabled accessibility. [CHAR LIMIT=none] - */ - public static final int accessibility_enabled = 0x01040581; - /** - * Content description for the action bar "home" affordance. [CHAR LIMIT=NONE] - */ - public static final int action_bar_home_description = 0x01040512; - /** - Formatting string for describing the action bar's title/home/up affordance. - This is a single tappable "button" that includes the app icon, the Up indicator - (usually a "<" chevron) and the window title text. - %1$s is the title. %2$s is the description of what tapping/clicking the whole - thing is going to do. - */ - public static final int action_bar_home_description_format = 0x01040515; - /** - Just like action_bar_home_description_format, but this one will be used - if the window is also providing subtitle text. - %1$s is the title. %2$s is the subtitle. %3$s is the description of what - tapping/clicking the whole thing is going to do. - */ - public static final int action_bar_home_subtitle_description_format = 0x01040516; - /** - * Content description for the action bar "up" affordance. [CHAR LIMIT=NONE] - */ - public static final int action_bar_up_description = 0x01040513; - /** - * Title for a button to expand the list of activities in ActivityChooserView [CHAR LIMIT=25] - */ - public static final int activity_chooser_view_see_all = 0x01040537; - /** - ActivityChooserView - accessibility support - Description of the shwoing of a popup window with activities to choose from. [CHAR LIMIT=NONE] - */ - public static final int activitychooserview_choose_application = 0x01040501; - /** - * Error message if the share target app cannto be launched. [CHAR LIMIT=NONE] - */ - public static final int activitychooserview_choose_application_error = 0x01040502; - /** - * Message of notification shown when ADB is actively connected to the phone. - */ - public static final int adb_active_notification_message = 0x0104047b; - /** - * Title of notification shown when ADB is actively connected to the phone. - */ - public static final int adb_active_notification_title = 0x0104047a; - /** - * Option to add the current misspelled word to the user dictionary. [CHAR LIMIT=25] - */ - public static final int addToDictionary = 0x010403eb; - /** - * List item to add an account [CHAR LIMIT=20] - */ - public static final int add_account_button_label = 0x010404e9; - /** - * Text of the alert that is displayed when an application has crashed. - */ - public static final int aerr_application = 0x010403fe; - /** - * Text of the alert that is displayed when an application has crashed. - */ - public static final int aerr_process = 0x010403ff; - /** - * Title of the alert when an application has crashed. - */ - public static final int aerr_title = 0x010403fd; - /** - * Do Not Translate: Alternate eri.xml - */ - public static final int alternate_eri_file = 0x010404b5; - /** - * Option to always use the selected application resolution in the future. See the "Complete action using" dialog title - */ - public static final int alwaysUse = 0x010403f8; - /** - * [CHAR LIMIT=NONE] Message shown in upgrading dialog for each .apk that is optimized. - */ - public static final int android_upgrading_apk = 0x01040412; - /** - * [CHAR LIMIT=NONE] Message to show in upgrading dialog when the bulk of the upgrade work is done. - */ - public static final int android_upgrading_complete = 0x01040414; - /** - * [CHAR LIMIT=NONE] Message to show in upgrading dialog when reached the point of starting apps. - */ - public static final int android_upgrading_starting_apps = 0x01040413; - /** - * [CHAR LIMIT=40] Title of dialog that is shown when performing a system upgrade. - */ - public static final int android_upgrading_title = 0x01040411; - /** - * Text of the alert that is displayed when an application is not responding. - */ - public static final int anr_activity_application = 0x01040401; - /** - * Text of the alert that is displayed when an application is not responding. - */ - public static final int anr_activity_process = 0x01040402; - /** - * Text of the alert that is displayed when an application is not responding. - */ - public static final int anr_application_process = 0x01040403; - /** - * Text of the alert that is displayed when an application is not responding. - */ - public static final int anr_process = 0x01040404; - /** - * Title of the alert when an application is not responding. - */ - public static final int anr_title = 0x01040400; - /** - [CHAR LIMIT=NONE] Stub notification text for an app running a service that has provided - a bad bad notification for itself. - */ - public static final int app_running_notification_text = 0x010403f2; - /** - [CHAR LIMIT=NONE] Stub notification title for an app running a service that has provided - a bad bad notification for itself. - */ - public static final int app_running_notification_title = 0x010403f1; - /** - Do not translate. Regex used by AutoFill. - fr-FR - it-IT - ja-JP - zh-CN - */ - public static final int autofill_address_line_1_label_re = 0x01040377; - /** - Do not translate. Regex used by AutoFill. - de-DE - en-GB - es - fr-FR - it-IT - ja-JP - pt-BR, pt-PT - ru - zh-CN - */ - public static final int autofill_address_line_1_re = 0x01040376; - /** - Do not translate. Regex used by AutoFill. - de-DE - es - fr-FR - it-IT - ja-JP - */ - public static final int autofill_address_line_2_re = 0x01040378; - /** - Do not translate. Regex used by AutoFill. - es - fr-FR - it-IT - */ - public static final int autofill_address_line_3_re = 0x01040379; - /** - String used to separate FirstName and LastName when writing out a local name - e.g. JohnSmith [CHAR-LIMIT=NONE] - */ - public static final int autofill_address_name_separator = 0x0104036f; - /** - Format string for displaying a name and address summary. $1 is the Full Name, $2 is autofill_address_summary_separator, $3 is the Address - e.g. (John Smith)(, )(123 Main Street) - */ - public static final int autofill_address_summary_format = 0x01040372; - /** - Format string for displaying a name. $1 is First Name, $2 is autofill_address_name_separator, $3 is Last Name. - e.g. (John)( )(Smith) - */ - public static final int autofill_address_summary_name_format = 0x01040370; - /** - String used to separate Name and Address Line 1 - e.g. John Smith123 Main Street [CHAR-LIMIT=NONE] - */ - public static final int autofill_address_summary_separator = 0x01040371; - /** - * Do not translate. Regex used by AutoFill. - */ - public static final int autofill_address_type_same_as_re = 0x0104037f; - /** - * Do not translate. Regex used by AutoFill. - */ - public static final int autofill_address_type_use_my_re = 0x01040380; - /** - * Label in a web form for "Area" [CHAR-LIMIT=NONE] - */ - public static final int autofill_area = 0x010403a6; - /** - * Do not translate. Regex used by AutoFill. - */ - public static final int autofill_area_code_notext_re = 0x01040399; - /** - * Do not translate. Regex used by AutoFill. - */ - public static final int autofill_area_code_re = 0x0104038c; - /** - * Do not translate. Regex used by AutoFill. - */ - public static final int autofill_attention_ignored_re = 0x01040373; - /** - * Do not translate. Regex used by AutoFill. - */ - public static final int autofill_billing_designator_re = 0x01040381; - /** - * Do not translate. Regex used by AutoFill. - */ - public static final int autofill_card_cvc_re = 0x01040392; - /** - * Do not translate. Regex used by AutoFill. - */ - public static final int autofill_card_ignored_re = 0x01040396; - /** - Do not translate. Regex used by AutoFill. - de-DE - es - fr-FR - ja-JP - ru - zh-CN - zh-TW - */ - public static final int autofill_card_number_re = 0x01040393; - /** - Do not translate. Regex used by AutoFill. - de-DE - en-AU - es - fr-FR - it-IT - ja-JP - pt-BR, pt-PT - ru - zh-CN - zh-TW - */ - public static final int autofill_city_re = 0x0104037d; - /** - Do not translate. Regex used by AutoFill. - de-DE - es - fr-FR - it-IT - ja-JP - ru - zh-CN - */ - public static final int autofill_company_re = 0x01040375; - /** - * Do not translate. Regex used by AutoFill. - */ - public static final int autofill_country_code_re = 0x01040398; - /** - Do not translate. Regex used by AutoFill. - ja-JP - zh-CN - */ - public static final int autofill_country_re = 0x0104037a; - /** - * Label in a web form for "County" [CHAR-LIMIT=NONE] - */ - public static final int autofill_county = 0x010403a0; - /** - * Label in a web form for "Department" [CHAR-LIMIT=NONE] - */ - public static final int autofill_department = 0x010403a3; - /** - * Label in a web form for "District" [CHAR-LIMIT=NONE] - */ - public static final int autofill_district = 0x010403a2; - /** - Do not translate. Regex used by AutoFill. - ja-JP - ru - zh-CN - zh-TW - */ - public static final int autofill_email_re = 0x01040383; - /** - * Label in a web form for "Emirate" [CHAR-LIMIT=NONE] - */ - public static final int autofill_emirate = 0x010403a7; - /** - Do not translate. Regex used by AutoFill. - de-DE - es - it-IT - ja-JP - pt-BR, pt-PT - ru - zh-CN - */ - public static final int autofill_expiration_date_re = 0x01040395; - /** - Do not translate. Regex used by AutoFill. - de-DE - es - fr-FR - it-IT - ja-JP - pt-BR, pt-PT - ru - zh-CN - */ - public static final int autofill_expiration_month_re = 0x01040394; - /** - Do not translate. Regex used by AutoFill. - fr-FR - ja-JP - ru - zh-CN - zh-TW - */ - public static final int autofill_fax_re = 0x01040397; - /** - Do not translate. Regex used by AutoFill. - de-DE - es - fr-FR - ja-JP - pt-BR, pt-PT - ru - */ - public static final int autofill_first_name_re = 0x01040387; - /** - * Label in a web form for "Island" [CHAR-LIMIT=NONE] - */ - public static final int autofill_island = 0x010403a1; - /** - Do not translate. Regex used by AutoFill. - de-DE - es - fr-FR - it-IT - ja-JP - pt-BR, pt-PT - ru - */ - public static final int autofill_last_name_re = 0x0104038a; - /** - * Do not translate. Regex used by AutoFill. - */ - public static final int autofill_middle_initial_re = 0x01040388; - /** - Do not translate. Regex used by AutoFill. - es - */ - public static final int autofill_middle_name_re = 0x01040389; - /** - * Do not translate. Regex used by AutoFill. - */ - public static final int autofill_name_on_card_contextual_re = 0x01040391; - /** - Do not translate. Regex used by AutoFill. - de-DE - es - fr-FR - it-IT - ja-JP - ru - zh-CN - zh-TW - */ - public static final int autofill_name_on_card_re = 0x01040390; - /** - Do not translate. Regex used by AutoFill. - es - fr-FR - ja-JP - pt-BR, pt-PT - zh-CN - */ - public static final int autofill_name_re = 0x01040385; - /** - Do not translate. Regex used by AutoFill. - fr-FR - pt-BR, pt-PT - */ - public static final int autofill_name_specific_re = 0x01040386; - /** - * Label in a web form for "Parish" [CHAR-LIMIT=NONE] - */ - public static final int autofill_parish = 0x010403a5; - /** - Do not translate. Regex used by AutoFill. - pt-BR, pt-PT - */ - public static final int autofill_phone_extension_re = 0x0104038f; - /** - Do not translate. Regex used by AutoFill. - fr-FR - pt-BR, pt-PT - */ - public static final int autofill_phone_prefix_re = 0x0104038d; - /** - * Do not translate. Regex used by AutoFill. - */ - public static final int autofill_phone_prefix_separator_re = 0x0104039a; - /** - Do not translate. Regex used by AutoFill. - de-DE - es - fr-FR - ja-JP - pt-BR, pt-PT - ru - zh-CN - */ - public static final int autofill_phone_re = 0x0104038b; - /** - * Do not translate. Regex used by AutoFill. - */ - public static final int autofill_phone_suffix_re = 0x0104038e; - /** - * Do not translate. Regex used by AutoFill. - */ - public static final int autofill_phone_suffix_separator_re = 0x0104039b; - /** - * Label in a web form for "Postal code" [CHAR-LIMIT=NONE] - */ - public static final int autofill_postal_code = 0x0104039d; - /** - * Label in a web form for "Prefecture" [CHAR-LIMIT=NONE] - */ - public static final int autofill_prefecture = 0x010403a4; - /** - * Label in a web form for "Province" [CHAR-LIMIT=NONE] - */ - public static final int autofill_province = 0x0104039c; - /** - Do not translate. Regex used by AutoFill. - es - pt-BR, pt-PT - */ - public static final int autofill_region_ignored_re = 0x01040374; - /** - * Do not translate. Regex used by AutoFill. - */ - public static final int autofill_shipping_designator_re = 0x01040382; - /** - * Label in a web form for "State" [CHAR-LIMIT=NONE] - */ - public static final int autofill_state = 0x0104039e; - /** - Do not translate. Regex used by AutoFill. - de-DE - en-UK - ja-JP - pt-BR, pt-PT - ru - zh-CN - zh-TW - */ - public static final int autofill_state_re = 0x0104037e; - /** - * Text to show in the auto complete drop down list on a text view when the WebView can auto fill the entire form, and the user has configured an AutoFill profile [CHAR-LIMIT=8] - */ - public static final int autofill_this_form = 0x0104036d; - /** - Do not translate. Regex used by AutoFill. - de-DE - zh-CN - */ - public static final int autofill_username_re = 0x01040384; - /** - Do not translate. Regex used by AutoFill. - pt-BR, pt-PT - */ - public static final int autofill_zip_4_re = 0x0104037c; - /** - * Label in a web form for "ZIP code" [CHAR-LIMIT=NONE] - */ - public static final int autofill_zip_code = 0x0104039f; - /** - Do not translate. Regex used by AutoFill. - de-DE - es - fr-FR - it-IT - ja-JP - pt-BR, pt-PT - ru - zh-CN - zh-TW - */ - public static final int autofill_zip_code_re = 0x0104037b; - /** - * Displayed when a SIM PIN password is entered incorrectly. - */ - public static final int badPin = 0x0104005a; - /** - * Displayed when a SIM PUK password is entered incorrectly. - */ - public static final int badPuk = 0x0104005b; - /** - * Description of the bluetooth a2dp audio route. [CHAR LIMIT=50] - */ - public static final int bluetooth_a2dp_audio_route_name = 0x01040545; - /** - * Message in bugreport dialog describing what it does [CHAR LIMIT=NONE] - */ - public static final int bugreport_message = 0x010400c9; - /** - * Take bug report menu title [CHAR LIMIT=NONE] - */ - public static final int bugreport_title = 0x010400c8; - /** - * Suffix added to a number to signify size in bytes. - */ - public static final int byteShort = 0x01040048; - /** - * Preference framework strings. - */ - public static final int cancel = 0x01040000; - /** - * Description for the capability of an accessibility service to request enhanced web accessibility. - */ - public static final int capability_desc_canRequestEnhancedWebAccessibility = 0x01040115; - /** - * Description for the capability of an accessibility service to request to filter key events. - */ - public static final int capability_desc_canRequestFilterKeyEvents = 0x01040117; - /** - * Description for the capability of an accessibility service to request touch exploration. - */ - public static final int capability_desc_canRequestTouchExploration = 0x01040113; - /** - * Description for the capability of an accessibility service to retrieve window content. - */ - public static final int capability_desc_canRetrieveWindowContent = 0x01040111; - /** - * Title for the capability of an accessibility service to request enhanced web accessibility. - */ - public static final int capability_title_canRequestEnhancedWebAccessibility = 0x01040114; - /** - * Title for the capability of an accessibility service to request to filter key events. - */ - public static final int capability_title_canRequestFilterKeyEvents = 0x01040116; - /** - * Title for the capability of an accessibility service to request touch exploration. - */ - public static final int capability_title_canRequestTouchExploration = 0x01040112; - /** - * Title for the capability of an accessibility service to retrieve window content. - */ - public static final int capability_title_canRetrieveWindowContent = 0x01040110; - public static final int car_mode_disable_notification_message = 0x010404c3; - /** - Strings for car mode notification - Shown when car mode is enabled - */ - public static final int car_mode_disable_notification_title = 0x010404c2; - /** - * Displayed when the call forwarding query was forwarded. - */ - public static final int cfTemplateForwarded = 0x01040097; - /** - * Displayed when the call forwarding query will be forwarded after some time. - */ - public static final int cfTemplateForwardedTime = 0x01040098; - /** - * Displayed when the call forwarding query was not able to be forwarded. - */ - public static final int cfTemplateNotForwarded = 0x01040096; - /** - * Displayed when the call forwarding query was set but forwarding is not enabled. - */ - public static final int cfTemplateRegistered = 0x01040099; - /** - * Displayed when the call forwarding query was set but forwarding is not enabled. - */ - public static final int cfTemplateRegisteredTime = 0x0104009a; - /** - * Default title for the activity chooser, when one is not given. Android allows multiple activities to perform an action. for example, there may be many ringtone pickers installed. A dialog is shown to the user allowing him to pick which activity should be used. This is the title. - */ - public static final int chooseActivity = 0x010403fa; - /** - * title for the USB activity chooser. - */ - public static final int chooseUsbActivity = 0x010403fb; - /** - * Dialog title for user to select a different wallpaper from service list - */ - public static final int chooser_wallpaper = 0x010404b3; - public static final int common_last_name_prefixes = 0x01040042; - public static final int common_name_conjunctions = 0x01040043; - public static final int common_name_prefixes = 0x01040040; - public static final int common_name_suffixes = 0x01040041; - /** - * Apps that are authorized to access shared accounts, overridden by product overlays - */ - public static final int config_appsAuthorizedForSharedAccounts = 0x0104003a; - /** - Class name of the framework account picker activity. - Can be customized for other product types - */ - public static final int config_chooseAccountActivity = 0x01040037; - /** - Class name of the account type and account picker activity. - Can be customized for other product types - */ - public static final int config_chooseTypeAndAccountActivity = 0x01040038; - /** - Component name of a custom ResolverActivity (Intent resolver) to be used instead of - the default framework version. If left empty, then the framework version will be used. - Example: com.google.android.myapp/.resolver.MyResolverActivity - */ - public static final int config_customResolverActivity = 0x01040039; - /** - * The default iface on which to monitor data use - */ - public static final int config_datause_iface = 0x01040022; - /** - * IP address of the dns server to use if nobody else suggests one - */ - public static final int config_default_dns_server = 0x01040024; - /** - * ComponentName of the default dream (Settings.Secure.SCREENSAVER_COMPONENT) - */ - public static final int config_dreamsDefaultComponent = 0x01040036; - /** - * Regex of wired ethernet ifaces - */ - public static final int config_ethernet_iface_regex = 0x01040018; - /** - Package name providing fused location support. Used only when - config_enableFusedLocationOverlay is false. - */ - public static final int config_fusedLocationProviderPackageName = 0x0104001f; - /** - Package name providing geocoder API support. Used only when - config_enableGeocoderOverlay is false. - */ - public static final int config_geocoderProviderPackageName = 0x01040020; - /** - Package name providing geofence API support. Used only when - config_enableGeofenceOverlay is false. - */ - public static final int config_geofenceProviderPackageName = 0x01040021; - /** - * MMS user agent string - */ - public static final int config_mms_user_agent = 0x0104002d; - /** - * MMS user agent prolfile url - */ - public static final int config_mms_user_agent_profile_url = 0x0104002e; - /** - Package name providing network location support. Used only when - config_enableNetworkLocationOverlay is false. - */ - public static final int config_networkLocationProviderPackageName = 0x0104001e; - /** - * Remote server that can provide NTP responses. - */ - public static final int config_ntpServer = 0x01040030; - /** - String containing the apn value for tethering. May be overriden by secure settings - TETHER_DUN_APN. Value is a comma separated series of strings: - "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type" - note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" - String containing the apn value for tethering. May be overriden by secure settings - TETHER_DUN_APN. Value is a comma separated series of strings: - "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type" - note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" - String containing the apn value for tethering. May be overriden by secure settings - TETHER_DUN_APN. Value is a comma separated series of strings: - "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type" - note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" - String containing the apn value for tethering. May be overriden by secure settings - TETHER_DUN_APN. Value is a comma separated series of strings: - "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type" - note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" - String containing the apn value for tethering. May be overriden by secure settings - TETHER_DUN_APN. Value is a comma separated series of strings: - "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type" - note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" - String containing the apn value for tethering. May be overriden by secure settings - TETHER_DUN_APN. Value is a comma separated series of strings: - "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type" - note that empty fields can be ommitted: "name,apn,,,,,,,,,310,270,,DUN" - String containing the apn value for tethering. May be overriden by secure settings - TETHER_DUN_APN. Value is a comma separated series of strings: - "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type" - note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" - String containing the apn value for tethering. May be overriden by secure settings - TETHER_DUN_APN. Value is a comma separated series of strings: - "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type" - note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" - String containing the apn value for tethering. May be overriden by secure settings - TETHER_DUN_APN. Value is a comma separated series of strings: - "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type" - note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" - String containing the apn value for tethering. May be overriden by secure settings - TETHER_DUN_APN. Value is a comma separated series of strings: - "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type" - note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" - String containing the apn value for tethering. May be overriden by secure settings - TETHER_DUN_APN. Value is a comma separated series of strings: - "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type" - note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" - String containing the apn value for tethering. May be overriden by secure settings - TETHER_DUN_APN. Value is a comma separated series of strings: - "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type" - note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" - String containing the apn value for tethering. May be overriden by secure settings - TETHER_DUN_APN. Value is a comma separated series of strings: - "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type" - note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" - String containing the apn value for tethering. May be overriden by secure settings - TETHER_DUN_APN. Value is a comma separated series of strings: - "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type" - note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" - String containing the apn value for tethering. May be overriden by secure settings - TETHER_DUN_APN. Value is a comma separated series of strings: - "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type" - note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" - String containing the apn value for tethering. May be overriden by secure settings - TETHER_DUN_APN. Value is a comma separated series of strings: - "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type" - note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" - */ - public static final int config_tether_apndata = 0x01040019; - /** - The URL that should be sent in an x-wap-profile header with an HTTP request, - as defined in the Open Mobile Alliance User Agent Profile specification - OMA-TS-UAProf-V2_0-20060206-A Section 8.1.1.1. If the URL contains a '%s' - format string then that substring will be replaced with the value of - Build.MODEL. The format string shall not be escaped. - */ - public static final int config_useragentprofile_url = 0x0104002c; - /** - Device type information conforming to Annex B format in WiFi Direct specification. - The default represents a dual-mode smartphone - */ - public static final int config_wifi_p2p_device_type = 0x0104001a; - /** - * Name of the wimax manager class - */ - public static final int config_wimaxManagerClassname = 0x01040033; - /** - * Location of the wimax native library locaiton - */ - public static final int config_wimaxNativeLibLocation = 0x01040032; - /** - * Name of the wimax service class - */ - public static final int config_wimaxServiceClassname = 0x01040034; - /** - * Location of the wimax framwork jar location - */ - public static final int config_wimaxServiceJarLocation = 0x01040031; - /** - * Name of the wimax state tracker clas - */ - public static final int config_wimaxStateTrackerClassname = 0x01040035; - /** - * Title of a button to open the settings for input methods [CHAR LIMIT=30] - */ - public static final int configure_input_methods = 0x0104047e; - /** - * A notification is shown when there is a sync error. This is the text that will scroll through the notification bar (will be seen by the user as he uses another application). - */ - public static final int contentServiceSync = 0x010400ac; - /** - * A notification is shown when there is a sync error. This is the title of the notification. It will be seen in the pull-down notification tray. - */ - public static final int contentServiceSyncNotificationTitle = 0x010400ad; - /** - * A notification is shown when there is a sync error. This is the message of the notification. It describes the error, in this case is there were too many deletes. The argument is the type of content, for example Gmail or Calendar. It will be seen in the pull-down notification tray. - */ - public static final int contentServiceTooManyDeletesNotificationDesc = 0x010400ae; - /** - * Text spoken when the user is performing a gesture that will enable accessibility. [CHAR LIMIT=none] - */ - public static final int continue_to_enable_accessibility = 0x01040580; - /** - * Item on EditText context menu. This action is used to cut selected the text into the clipboard. - */ - public static final int copy = 0x01040001; - /** - * Item on EditText context menu. This action is used to copy a URL from the edit field into the clipboard. - */ - public static final int copyUrl = 0x01040002; - /** - * This string appears (on two lines) when you type a number into contacts search, to let you create a contact whose phone number is the number you typed. The first line will be in bigger type than the second. - */ - public static final int create_contact_using = 0x010404a7; - /** - * Item on EditText context menu. This action is used to cut selected the text into the clipboard. - */ - public static final int cut = 0x01040003; - /** - * Notification title when 2G-3G data usage has exceeded limit threshold. [CHAR LIMIT=32] - */ - public static final int data_usage_3g_limit_snoozed_title = 0x01040522; - /** - * Notification title when 2G-3G data usage has exceeded limit threshold, and has been disabled. [CHAR LIMIT=32] - */ - public static final int data_usage_3g_limit_title = 0x0104051d; - /** - * Notification title when 4G data usage has exceeded limit threshold. [CHAR LIMIT=32] - */ - public static final int data_usage_4g_limit_snoozed_title = 0x01040523; - /** - * Notification title when 4G data usage has exceeded limit threshold, and has been disabled. [CHAR LIMIT=32] - */ - public static final int data_usage_4g_limit_title = 0x0104051e; - /** - * Notification body when data usage has exceeded limit threshold, and has been disabled. [CHAR LIMIT=32] - */ - public static final int data_usage_limit_body = 0x01040521; - /** - * Notification body when data usage has exceeded limit threshold. [CHAR LIMIT=32] - */ - public static final int data_usage_limit_snoozed_body = 0x01040526; - /** - * Notification title when mobile data usage has exceeded limit threshold. [CHAR LIMIT=32] - */ - public static final int data_usage_mobile_limit_snoozed_title = 0x01040524; - /** - * Notification title when mobile data usage has exceeded limit threshold, and has been disabled. [CHAR LIMIT=32] - */ - public static final int data_usage_mobile_limit_title = 0x0104051f; - /** - * Notification body when background data usage is limited. [CHAR LIMIT=32] - */ - public static final int data_usage_restricted_body = 0x01040528; - /** - * Notification title when background data usage is limited. [CHAR LIMIT=32] - */ - public static final int data_usage_restricted_title = 0x01040527; - /** - * Notification body when data usage has exceeded warning threshold. [CHAR LIMIT=32] - */ - public static final int data_usage_warning_body = 0x0104051c; - /** - * Notification title when data usage has exceeded warning threshold. [CHAR LIMIT=32] - */ - public static final int data_usage_warning_title = 0x0104051b; - /** - * Notification title when Wi-Fi data usage has exceeded limit threshold. [CHAR LIMIT=32] - */ - public static final int data_usage_wifi_limit_snoozed_title = 0x01040525; - /** - * Notification title when Wi-Fi data usage has exceeded limit threshold, and has been disabled. [CHAR LIMIT=32] - */ - public static final int data_usage_wifi_limit_title = 0x01040520; - public static final int date_and_time = 0x0104003e; - /** - * Description of the button to decrease the DatePicker's day value. [CHAR LIMIT=NONE] - */ - public static final int date_picker_decrement_day_button = 0x010404f7; - /** - * Description of the button to decrease the DatePicker's month value. [CHAR LIMIT=NONE] - */ - public static final int date_picker_decrement_month_button = 0x010404f5; - /** - * Description of the button to decrease the DatePicker's year value. [CHAR LIMIT=NONE] - */ - public static final int date_picker_decrement_year_button = 0x010404f9; - /** - * The title of the date picker dialog. [CHAR LIMIT=NONE] - */ - public static final int date_picker_dialog_title = 0x0104045a; - /** - * Description of the button to increase the DatePicker's day value. [CHAR LIMIT=NONE] - */ - public static final int date_picker_increment_day_button = 0x010404f6; - /** - DatePicker - accessibility support - Description of the button to increase the DatePicker's month value. [CHAR LIMIT=NONE] - */ - public static final int date_picker_increment_month_button = 0x010404f4; - /** - * Description of the button to increase the DatePicker's year value. [CHAR LIMIT=NONE] - */ - public static final int date_picker_increment_year_button = 0x010404f8; - public static final int date_time = 0x0104003f; - /** - * Name of the button in the date/time picker to accept the date/time change - */ - public static final int date_time_done = 0x0104045c; - /** - * Name of the button in the date/time picker to accept the date/time change - */ - public static final int date_time_set = 0x0104045b; - /** - The default journal mode to use use when Write-Ahead Logging is not active. - Choices are: OFF, DELETE, TRUNCATE, PERSIST and MEMORY. - PERSIST may improve performance by reducing how often journal blocks are - reallocated (compared to truncation) resulting in better data block locality - and less churn of the storage media. - */ - public static final int db_default_journal_mode = 0x01040029; - /** - The database synchronization mode when using the default journal mode. - FULL is safest and preserves durability at the cost of extra fsyncs. - NORMAL also preserves durability in non-WAL modes and uses checksums to ensure - integrity although there is a small chance that an error might go unnoticed. - Choices are: FULL, NORMAL, OFF. - */ - public static final int db_default_sync_mode = 0x0104002a; - /** - The database synchronization mode when using Write-Ahead Logging. - FULL is safest and preserves durability at the cost of extra fsyncs. - NORMAL sacrifices durability in WAL mode because syncs are only performed before - and after checkpoint operations. If checkpoints are infrequent and power loss - occurs, then committed transactions could be lost and applications might break. - Choices are: FULL, NORMAL, OFF. - */ - public static final int db_wal_sync_mode = 0x0104002b; - public static final int decline = 0x0104043d; - /** - * What the UI should display for "Msisdn" unless overridden by the SIM - */ - public static final int defaultMsisdnAlphaTag = 0x01040005; - /** - * What the UI should display for "voice mail" unless overridden by the SIM - */ - public static final int defaultVoiceMailAlphaTag = 0x01040004; - /** - * Name of the default audio route category. [CHAR LIMIT=50] - */ - public static final int default_audio_route_category_name = 0x01040544; - /** - Name of the default audio route when nothing is connected to - a headphone or other wired audio output jack. [CHAR LIMIT=50] - */ - public static final int default_audio_route_name = 0x01040540; - /** - * Name of the default audio route when an audio dock is connected. [CHAR LIMIT=50] - */ - public static final int default_audio_route_name_dock_speakers = 0x01040542; - /** - Name of the default audio route when wired headphones are - connected. [CHAR LIMIT=50] - */ - public static final int default_audio_route_name_headphones = 0x01040541; - /** - * Name of the default media route when HDMI is connected. [CHAR LIMIT=50] - */ - public static final int default_media_route_name_hdmi = 0x01040543; - /** - Default SMS Application. This will be the default SMS application when - the phone first boots. The user can then change the default app to oe - of their choosing. - This can be overridden for devices where a different default SMS - application is desired. - */ - public static final int default_sms_application = 0x01040023; - /** - Default text encoding for WebSettings. - Default text encoding for WebSettings. - */ - public static final int default_text_encoding = 0x01040044; - /** - Component name of the default wallpaper. This will be ImageWallpaper if not - specified - */ - public static final int default_wallpaper_component = 0x0104001d; - /** - * Item on EditText pop-up window. This action is used to delete the text that the user recently added. [CHAR LIMIT=15] - */ - public static final int delete = 0x010403e9; - /** - * Option to delete the highlighted part of the text from the suggestion popup. [CHAR LIMIT=25] - */ - public static final int deleteText = 0x010403ec; - /** - * Description of the unlock handle in the Slide unlock screen for tablets. [CHAR LIMIT=NONE] - */ - public static final int description_target_unlock_tablet = 0x0104050f; - /** - * This string appears (on two lines) when you type a number into contacts search, to let you dial the phone number you typed. The first line will be in bigger type than the second. - */ - public static final int dial_number_using = 0x010404a6; - /** - This is the generic "attention" string to be used in attention dialogs. Typically - combined with setIconAttribute(android.R.attr.alertDialogIcon) - (or setIcon(android.R.drawable.ic_dialog_alert) on legacy versions of the platform) - */ - public static final int dialog_alert_title = 0x01040014; - /** - Display manager service - Name of the built-in display. [CHAR LIMIT=50] - */ - public static final int display_manager_built_in_display_name = 0x01040552; - /** - * Name of the HDMI display. [CHAR LIMIT=50] - */ - public static final int display_manager_hdmi_display_name = 0x01040553; - /** - * Name of the N'th overlay display for testing. [CHAR LIMIT=50] - */ - public static final int display_manager_overlay_display_name = 0x01040554; - /** - * Title text to append when the display is secure. [CHAR LIMIT=30] - */ - public static final int display_manager_overlay_display_secure_suffix = 0x01040556; - /** - * Title text to show within the overlay. [CHAR LIMIT=50] - */ - public static final int display_manager_overlay_display_title = 0x01040555; - /** - * USB_STORAGE_KILL_STORAGE_USERS dialog message text - */ - public static final int dlg_confirm_kill_storage_users_text = 0x0104046f; - /** - * USB_STORAGE_KILL_STORAGE_USERS dialog - */ - public static final int dlg_confirm_kill_storage_users_title = 0x0104046e; - /** - * USB_STORAGE_ERROR dialog dialog - */ - public static final int dlg_error_title = 0x01040470; - /** - * USB_STORAGE_ERROR dialog ok button - */ - public static final int dlg_ok = 0x01040471; - /** - * Toast for double-tap - */ - public static final int double_tap_toast = 0x0104036c; - /** - Format string for times like "1:43:33" (1 hour, 43 minutes, 33 seconds) - no translation found for elapsed_time_short_format_h_mm_ss (2997059666628785039) - no translation found for elapsed_time_short_format_h_mm_ss (2997059666628785039) - */ - public static final int elapsed_time_short_format_h_mm_ss = 0x010403e7; - /** - Format string for durations like "01:23" (1 minute, 23 seconds) - no translation found for elapsed_time_short_format_mm_ss (1294409362352514646) - no translation found for elapsed_time_short_format_mm_ss (1294409362352514646) - */ - public static final int elapsed_time_short_format_mm_ss = 0x010403e6; - /** - Used to replace a range of characters in text that is too wide - for the space allocated to it (three dots). - */ - public static final int ellipsis = 0x0104004f; - /** - Used to replace a range of characters in text that is too wide - for the space allocated to it (two dots). - */ - public static final int ellipsis_two_dots = 0x01040050; - /** - * Custom email type - */ - public static final int emailTypeCustom = 0x010402d1; - /** - * Home email type - */ - public static final int emailTypeHome = 0x010402d2; - /** - * Mobile email type - */ - public static final int emailTypeMobile = 0x010402d5; - /** - * Other email type - */ - public static final int emailTypeOther = 0x010402d4; - /** - * Work email type - */ - public static final int emailTypeWork = 0x010402d3; - /** - * This can be used in any application wanting to disable the text "Emergency number" - */ - public static final int emergency_call_dialog_number_for_display = 0x01040308; - /** - * Shown in the lock screen when there is emergency calls only mode. - */ - public static final int emergency_calls_only = 0x01040323; - /** - * How to display the lack of a phone number - */ - public static final int emptyPhoneNumber = 0x01040006; - /** - * Displayed when user attempts to change SIM PIN1 without enabling PIN1. - */ - public static final int enablePin = 0x01040061; - /** - * Text spoken when the user stops preforming a gesture that would enable accessibility. [CHAR LIMIT=none] - */ - public static final int enable_accessibility_canceled = 0x01040582; - /** - Summary for a warning message about the interaction model changes after allowing an accessibility - service to put the device into explore by touch mode, displayed as a dialog message when - the user selects to enables the service. (default). [CHAR LIMIT=NONE] - */ - public static final int enable_explore_by_touch_warning_message = 0x010403cd; - /** - Title for a warning message about the interaction model changes after allowing an accessibility - service to put the device into explore by touch mode, displayed as a dialog message when - the user selects to enables the service. (default). [CHAR LIMIT=45] - */ - public static final int enable_explore_by_touch_warning_title = 0x010403cc; - /** - * Error message title [CHAR LIMIT=35] - */ - public static final int error_message_title = 0x01040585; - /** - * Label for an anniversary event [CHAR LIMIT=20] - */ - public static final int eventTypeAnniversary = 0x010402cf; - /** - * Label for a birthday event [CHAR LIMIT=20] - */ - public static final int eventTypeBirthday = 0x010402ce; - /** - * Label for custom events [CHAR LIMIT=20] - */ - public static final int eventTypeCustom = 0x010402cd; - /** - * Label for other events [CHAR LIMIT=20] - */ - public static final int eventTypeOther = 0x010402d0; - public static final int ext_media_badremoval_notification_message = 0x0104048d; - /** - * Shown when external media is unsafely removed - */ - public static final int ext_media_badremoval_notification_title = 0x0104048c; - public static final int ext_media_checking_notification_message = 0x01040487; - /** - * Shown when external media is being checked - */ - public static final int ext_media_checking_notification_title = 0x01040486; - public static final int ext_media_nofs_notification_message = 0x01040489; - /** - * Shown when external media is blank (or unsupported filesystem) - */ - public static final int ext_media_nofs_notification_title = 0x01040488; - public static final int ext_media_nomedia_notification_message = 0x01040491; - /** - * Shown when external media is missing - */ - public static final int ext_media_nomedia_notification_title = 0x01040490; - public static final int ext_media_safe_unmount_notification_message = 0x0104048f; - /** - * Shown when external media has been safely removed - */ - public static final int ext_media_safe_unmount_notification_title = 0x0104048e; - public static final int ext_media_unmountable_notification_message = 0x0104048b; - /** - * Shown when external media is unmountable (corrupt)) - */ - public static final int ext_media_unmountable_notification_title = 0x0104048a; - /** - * See EXTMEDIA_FORMAT. This is the button text to format the sd card. - */ - public static final int extmedia_format_button_format = 0x01040479; - /** - * See EXTMEDIA_FORMAT. This is the message. - */ - public static final int extmedia_format_message = 0x01040478; - /** - * See EXTMEDIA_FORMAT. EXTMEDIA_FORMAT_DIALOG: After the user selects the notification, a dialog is shown asking if he wants to format the SD card. This is the title. - */ - public static final int extmedia_format_title = 0x01040477; - /** - * Shown when face unlock failed multiple times so we're just using the backup - */ - public static final int faceunlock_multiple_failures = 0x01040313; - /** - * Title of the alert when something went wrong in the factory test. - */ - public static final int factorytest_failed = 0x0104035f; - /** - * Error message displayed when the factory test could not be started. - */ - public static final int factorytest_no_action = 0x01040361; - /** - * Error message displayed when a non-system application tries to start a factory test. - */ - public static final int factorytest_not_system = 0x01040360; - /** - * Button to restart the device after the factory test. - */ - public static final int factorytest_reboot = 0x01040362; - public static final int fast_scroll_alphabet = 0x01040483; - /** - Format string used to add a suffix like "KB" or "MB" to a number - to display a size in kilobytes, megabytes, or other size units. - Some languages (like French) will want to add a space between - the placeholders. - */ - public static final int fileSizeSuffix = 0x0104004e; - /** - * Button allowing the user to close an application that is not responding. This will kill the application. - */ - public static final int force_close = 0x01040405; - /** - * Text for message to user that an error happened when formatting SD card [CHAR LIMIT=NONE] - */ - public static final int format_error = 0x010404d2; - /** - Shown in gadget hosts (e.g. the home screen) when there was an error inflating - the gadget. - */ - public static final int gadget_host_error_inflating = 0x0104049e; - /** - * Suffix added to a number to signify size in gigabytes. - */ - public static final int gigabyteShort = 0x0104004b; - /** - * label for item that generates a bug report in the phone options dialog - */ - public static final int global_action_bug_report = 0x010400c7; - /** - * label for item that turns off power in phone options dialog - */ - public static final int global_action_power_off = 0x010400c6; - /** - * status message in phone options dialog for when silent mode is disabled - */ - public static final int global_action_silent_mode_off_status = 0x010400cc; - /** - * status message in phone options dialog for when silent mode is enabled - */ - public static final int global_action_silent_mode_on_status = 0x010400cb; - /** - * label for item that enables silent mode in phone options dialog - */ - public static final int global_action_toggle_silent_mode = 0x010400ca; - /** - * status message in phone options dialog for when airplane mode is off - */ - public static final int global_actions_airplane_mode_off_status = 0x010400cf; - /** - * status message in phone options dialog for when airplane mode is on - */ - public static final int global_actions_airplane_mode_on_status = 0x010400ce; - /** - * label for item that toggles airplane mode - */ - public static final int global_actions_toggle_airplane_mode = 0x010400cd; - /** - Network positioning notification message. The name of the user (e.g. John Doe) and - service (SUPL-service) who sent the request is shown as dynamic strings. - Translation should not be longer than master text. - */ - public static final int gpsNotifMessage = 0x010404df; - /** - Network positioning notification ticker. The name of the user (e.g. John Doe) who sent - the request is shown as a dynamic string. - */ - public static final int gpsNotifTicker = 0x010404dd; - /** - Network positioning notification and verification title to inform the user about - an incoming location request. - */ - public static final int gpsNotifTitle = 0x010404de; - /** - Network positioning verification No. Button to push to deny sharing of location - information. - */ - public static final int gpsVerifNo = 0x010404e1; - /** - * Network positioning verification Yes. Button to push to share location information. - */ - public static final int gpsVerifYes = 0x010404e0; - public static final int grant_permissions_header_text = 0x010404aa; - /** - * Label for granularity to traverse the content on an AccessibilityNodeInfo by character. Only spoken to the user. [CHAR LIMIT=NONE] - */ - public static final int granularity_label_character = 0x01040359; - /** - * Label for granularity to traverse the content on an AccessibilityNodeInfo by line. Only spoken to the user. [CHAR LIMIT=NONE] - */ - public static final int granularity_label_line = 0x0104035c; - /** - * Label for granularity to traverse the content on an AccessibilityNodeInfo by link. Only spoken to the user. [CHAR LIMIT=NONE] - */ - public static final int granularity_label_link = 0x0104035b; - /** - * Label for granularity to traverse the content on an AccessibilityNodeInfo by word. Only spoken to the user. [CHAR LIMIT=NONE] - */ - public static final int granularity_label_word = 0x0104035a; - /** - The default character set for GsmAlphabet - Empty string means MBCS is not considered - */ - public static final int gsm_alphabet_default_charset = 0x01040028; - /** - * Title of the physical keyboard category in the input method selector [CHAR LIMIT=10] - */ - public static final int hardware = 0x01040480; - /** - * Notification text to tell the user that a heavy-weight application is running. - */ - public static final int heavy_weight_notification = 0x01040415; - /** - * Notification details to tell the user that a heavy-weight application is running. - */ - public static final int heavy_weight_notification_detail = 0x01040416; - /** - * A format string for 12-hour time of day, just the hour, not the minute, with lower-case "am" or "pm" (example: "3pm"). - */ - public static final int hour_ampm = 0x0104035d; - /** - * A format string for 12-hour time of day, just the hour, not the minute, with capital "AM" or "PM" (example: "3PM"). - */ - public static final int hour_cap_ampm = 0x0104035e; - /** - * Displayed when a web request failed with a generic network error. - */ - public static final int httpError = 0x0104009e; - /** - * Displayed when a web request failed because the authentication failed. - */ - public static final int httpErrorAuth = 0x010400a1; - /** - * Displayed when a web request failed because the URL isn't in a valid form. - */ - public static final int httpErrorBadUrl = 0x01040007; - /** - * Displayed when a web request failed because there was a connection error. - */ - public static final int httpErrorConnect = 0x010400a3; - /** - * Displayed when a web request failed because the a secure connection couldn't be made to the server. - */ - public static final int httpErrorFailedSslHandshake = 0x010400a7; - /** - * Displayed when a request failed because we failed to open the file. - */ - public static final int httpErrorFile = 0x010400a8; - /** - * Displayed when a request failed because the file wasn't found. - */ - public static final int httpErrorFileNotFound = 0x010400a9; - /** - * Displayed when a web request failed because there was an input or output error. - */ - public static final int httpErrorIO = 0x010400a4; - /** - * Displayed when a web request failed because the URL could not be found. - */ - public static final int httpErrorLookup = 0x0104009f; - /** - * Displayed when a web request was successful. - */ - public static final int httpErrorOk = 0x0104009d; - /** - * Displayed when a web request failed because the authentication with the proxy failed. - */ - public static final int httpErrorProxyAuth = 0x010400a2; - /** - * Displayed when a web request failed because the site tried to redirect us one too many times - */ - public static final int httpErrorRedirectLoop = 0x010400a6; - /** - * Displayed when a web request failed because the request timed out - */ - public static final int httpErrorTimeout = 0x010400a5; - /** - * Displayed when a request failed because there are too many requests right now. - */ - public static final int httpErrorTooManyRequests = 0x010400aa; - /** - * Displayed when a web request failed because the site's authentication scheme is not supported by us. - */ - public static final int httpErrorUnsupportedAuthScheme = 0x010400a0; - /** - * Displayed when a web request failed because the protocol of the server is not supported. - */ - public static final int httpErrorUnsupportedScheme = 0x01040008; - /** - * AIM IM protocol type - */ - public static final int imProtocolAim = 0x010402df; - /** - * Custom IM protocol type - */ - public static final int imProtocolCustom = 0x010402de; - /** - * Google Talk IM protocol type - */ - public static final int imProtocolGoogleTalk = 0x010402e4; - /** - * ICQ IM protocol type - */ - public static final int imProtocolIcq = 0x010402e5; - /** - * Jabber IM protocol type - */ - public static final int imProtocolJabber = 0x010402e6; - /** - * MSN IM protocol type - */ - public static final int imProtocolMsn = 0x010402e0; - /** - * NetMeeting IM protocol type - */ - public static final int imProtocolNetMeeting = 0x010402e7; - /** - * QQ IM protocol type - */ - public static final int imProtocolQq = 0x010402e3; - /** - * Skype IM protocol type - */ - public static final int imProtocolSkype = 0x010402e2; - /** - * Yahoo IM protocol type - */ - public static final int imProtocolYahoo = 0x010402e1; - /** - * Custom IM address type - */ - public static final int imTypeCustom = 0x010402da; - /** - * Home IM address type - */ - public static final int imTypeHome = 0x010402db; - /** - * Other IM address type - */ - public static final int imTypeOther = 0x010402dd; - /** - * Work IM address type - */ - public static final int imTypeWork = 0x010402dc; - /** - * Long label for a button on a full-screen input method for an unknown action. - */ - public static final int ime_action_default = 0x010404a5; - /** - * Long label for a button on a full-screen input method for the "Done" action. - */ - public static final int ime_action_done = 0x010404a3; - /** - * Long label for a button on a full-screen input method for the "Go" action. - */ - public static final int ime_action_go = 0x0104049f; - /** - * Long label for a button on a full-screen input method for the "Next" action. - */ - public static final int ime_action_next = 0x010404a2; - /** - * [CHAR LIMIT=6] Long label for a button on a full-screen input method for the "Previous" action. - */ - public static final int ime_action_previous = 0x010404a4; - /** - * Long label for a button on a full-screen input method for the "Search" action. - */ - public static final int ime_action_search = 0x010404a0; - /** - * Long label for a button on a full-screen input method for the "Send" action. - */ - public static final int ime_action_send = 0x010404a1; - /** - Title for the dialog used to display the user's IMEI number [CHAR LIMIT=10] - no translation found for pinpuk_attempts:one (6596245285809790142) - no translation found for pinpuk_attempts:other (7530597808358774740) - */ - public static final int imei = 0x01040062; - /** - * EditText context menu - */ - public static final int inputMethod = 0x010403ed; - /** - * Label to show for a service that is running because it is an input method. - */ - public static final int input_method_binding_label = 0x010404af; - /** - * Displayed when a SIM PIN password is too long or too short. - */ - public static final int invalidPin = 0x0104005d; - /** - * Displayed when a SIM PUK password is too short. - */ - public static final int invalidPuk = 0x0104005e; - /** - * Message in a javascript dialog asking if the user wishes to leave the current page - */ - public static final int js_dialog_before_unload = 0x0104036a; - /** - * Text for the negative button on the unload javascript dialog - */ - public static final int js_dialog_before_unload_negative_button = 0x01040369; - /** - * Text for the positive button on the unload javascript dialog - */ - public static final int js_dialog_before_unload_positive_button = 0x01040368; - /** - * Title for the unload javascript dialog - */ - public static final int js_dialog_before_unload_title = 0x01040367; - /** - * Title for a JavaScript dialog. "The page at says:" - */ - public static final int js_dialog_title = 0x01040365; - /** - * Default title for a javascript dialog - */ - public static final int js_dialog_title_default = 0x01040366; - /** - * Announce that a headset is required to hear keyboard keys while typing a password. [CHAR LIMIT=NONE] - */ - public static final int keyboard_headset_required_to_hear_password = 0x01040510; - /** - * The value of a keyboard key announced when accessibility is enabled and no headsed is used. [CHAR LIMIT=NONE] - */ - public static final int keyboard_password_character_no_headset = 0x01040511; - /** - KeyboardView - accessibility support - Description of the Alt button in a KeyboardView. [CHAR LIMIT=NONE] - */ - public static final int keyboardview_keycode_alt = 0x010404fa; - /** - * Description of the Cancel button in a KeyboardView. [CHAR LIMIT=NONE] - */ - public static final int keyboardview_keycode_cancel = 0x010404fb; - /** - * Description of the Delete button in a KeyboardView. [CHAR LIMIT=NONE] - */ - public static final int keyboardview_keycode_delete = 0x010404fc; - /** - * Description of the Done button in a KeyboardView. [CHAR LIMIT=NONE] - */ - public static final int keyboardview_keycode_done = 0x010404fd; - /** - * Description of the Enter button in a KeyboardView. [CHAR LIMIT=NONE] - */ - public static final int keyboardview_keycode_enter = 0x01040500; - /** - * Description of the Mode change button in a KeyboardView. [CHAR LIMIT=NONE] - */ - public static final int keyboardview_keycode_mode_change = 0x010404fe; - /** - * Description of the Shift button in a KeyboardView. [CHAR LIMIT=NONE] - */ - public static final int keyboardview_keycode_shift = 0x010404ff; - /** - * Suffix added to a number to signify size in kilobytes. - */ - public static final int kilobyteShort = 0x01040049; - /** - * This is used to express that something has occurred within the last month - */ - public static final int last_month = 0x010403d0; - /** - * STK launch Browser - */ - public static final int launchBrowserDefault = 0x0104053c; - /** - * [CHAR LIMIT=50] Title of the alert when application launches on top of another. - */ - public static final int launch_warning_original = 0x0104040b; - /** - * [CHAR LIMIT=50] Title of the alert when application launches on top of another. - */ - public static final int launch_warning_replace = 0x0104040a; - /** - * [CHAR LIMIT=25] Title of the alert when application launches on top of another. - */ - public static final int launch_warning_title = 0x01040409; - /** - * Delimeter used between each item in a textual list; for example "Alpha, Beta". [CHAR LIMIT=3] - */ - public static final int list_delimeter = 0x0104053a; - /** - * Accessibility description sent when user adds a cell to the pattern. [CHAR LIMIT=NONE] - */ - public static final int lockscreen_access_pattern_cell_added = 0x0104033f; - /** - * Accessibility description sent when the pattern times out and is cleared. [CHAR LIMIT=NONE] - */ - public static final int lockscreen_access_pattern_cleared = 0x0104033e; - /** - * Accessibility description sent when user completes drawing a pattern. [CHAR LIMIT=NONE] - */ - public static final int lockscreen_access_pattern_detected = 0x01040340; - /** - * Accessibility description sent when user starts drawing a lock pattern. [CHAR LIMIT=NONE] - */ - public static final int lockscreen_access_pattern_start = 0x0104033d; - /** - * On the keyguard screen, it shows the carrier the phone is connected to. This is displayed if the phone is not connected to a carrier. - */ - public static final int lockscreen_carrier_default = 0x01040309; - /** - * Button at the bottom of the unlock screen to make an emergency call. - */ - public static final int lockscreen_emergency_call = 0x0104030e; - /** - * Button at the bottom of the unlock screen that lets the user return to a call - */ - public static final int lockscreen_return_to_call = 0x0104030f; - /** - * If the device is getting low on internal storage, a notification is shown to the user. This is the message of that notification. - */ - public static final int low_internal_storage_view_text = 0x010403f0; - /** - * If the device is getting low on internal storage, a notification is shown to the user. This is the title of that notification. - */ - public static final int low_internal_storage_view_title = 0x010403ef; - /** - * If MMS discovers there isn't much space left on the device, it will show a toast with this message. - */ - public static final int low_memory = 0x010400af; - /** - * Text for message to user that SD card has been removed while in use [CHAR LIMIT=NONE] - */ - public static final int media_bad_removal = 0x010404d3; - /** - * Text for message to user SD card is currently being checked [CHAR LIMIT=NONE] - */ - public static final int media_checking = 0x010404d4; - /** - * Text for message to user SD card has been removed [CHAR LIMIT=NONE] - */ - public static final int media_removed = 0x010404d5; - /** - * Title of the media route chooser dialog. [CHAR LIMIT=40] - */ - public static final int media_route_chooser_title = 0x01040548; - /** - * Title of the media route chooser dialog for selecting remote display routes. [CHAR LIMIT=40] - */ - public static final int media_route_chooser_title_for_remote_display = 0x01040549; - /** - * Status message for a remote route that is confirmed to be available for connection - */ - public static final int media_route_status_available = 0x0104054f; - /** - * Status message for a remote route attempting to connect - */ - public static final int media_route_status_connecting = 0x0104054e; - /** - * Status message for a remote route that is in use (and thus unavailabe) right now - */ - public static final int media_route_status_in_use = 0x01040551; - /** - * Status message for remote routes that are not available for connection right now - */ - public static final int media_route_status_not_available = 0x01040550; - /** - * Status message for remote routes attempting to scan/determine availability - */ - public static final int media_route_status_scanning = 0x0104054d; - /** - * Text for message to user SD card is currently mounted on a computer [CHAR LIMIT=NONE] - */ - public static final int media_shared = 0x010404d6; - /** - * Text for message for an unknown external media state [CHAR LIMIT=NONE] - */ - public static final int media_unknown_state = 0x010404d7; - /** - * Chinese Dai Pa Kai media (paper) size: 275mm x 395mm (10.827" x 15.551") - */ - public static final int mediasize_chinese_om_dai_pa_kai = 0x010405c4; - /** - * Chinese Jurro Ku Kai media (paper) size: 275mm x 395mm (10.827" x 15.551") - */ - public static final int mediasize_chinese_om_jurro_ku_kai = 0x010405c5; - /** - * Chinese Pa Kai media (paper) size: 146mm x 215mm (5.749" x 8.465") - */ - public static final int mediasize_chinese_om_pa_kai = 0x010405c3; - /** - * Chinese PRC 1 media (paper) size: 102mm x 165mm (4.015" x 6.496") - */ - public static final int mediasize_chinese_prc_1 = 0x010405b8; - /** - * Chinese PRC 10 media (paper) size: 324mm x 458mm (12.756" x 18.032") - */ - public static final int mediasize_chinese_prc_10 = 0x010405c1; - /** - * Chinese RPC 16K media (paper) size: 146mm x 215mm (5.749" x 8.465") - */ - public static final int mediasize_chinese_prc_16k = 0x010405c2; - /** - * Chinese PRC 2 media (paper) size: 102mm x 176mm (4.015" x 6.929") - */ - public static final int mediasize_chinese_prc_2 = 0x010405b9; - /** - * Chinese PRC 3 media (paper) size: 125mm x 176mm (4.921" x 6.929") - */ - public static final int mediasize_chinese_prc_3 = 0x010405ba; - /** - * Chinese PRC 4 media (paper) size: 110mm x 208mm (4.330" x 8.189") - */ - public static final int mediasize_chinese_prc_4 = 0x010405bb; - /** - * Chinese PRC 5 media (paper) size: 110mm x 220mm (4.330" x 8.661") - */ - public static final int mediasize_chinese_prc_5 = 0x010405bc; - /** - * Chinese PRC 6 media (paper) size: 120mm x 320mm (4.724" x 12.599") - */ - public static final int mediasize_chinese_prc_6 = 0x010405bd; - /** - * Chinese PRC 7 media (paper) size: 160mm x 230mm (6.299" x 9.055") - */ - public static final int mediasize_chinese_prc_7 = 0x010405be; - /** - * Chinese PRC 8 media (paper) size: 120mm x 309mm (4.724" x 12.165") - */ - public static final int mediasize_chinese_prc_8 = 0x010405bf; - /** - * Chinese PRC 9 media (paper) size: 229mm x 324mm (9.016" x 12.756") - */ - public static final int mediasize_chinese_prc_9 = 0x010405c0; - /** - * Chinese Roc 16k media (paper) size: 195mm x 270mm (7.677" x 10.629") - */ - public static final int mediasize_chinese_roc_16k = 0x010405b7; - /** - * Chinese Roc 8k media (paper) size: 270mm x 390mm (10.629" x 15.3543") - */ - public static final int mediasize_chinese_roc_8k = 0x010405b6; - /** - Printing - ISO (European standard) A0 media (paper) size: 33.11" × 46.81" - */ - public static final int mediasize_iso_a0 = 0x01040589; - /** - * ISO (European standard) A1 media (paper) size: 23.39" × 33.11" - */ - public static final int mediasize_iso_a1 = 0x0104058a; - /** - * ISO (European standard) A10 media (paper) size: 1.02" x 1.46" - */ - public static final int mediasize_iso_a10 = 0x01040593; - /** - * ISO (European standard) A2 media (paper) size: 16.54" x 23.39" - */ - public static final int mediasize_iso_a2 = 0x0104058b; - /** - * ISO (European standard) A3 media (paper) size: 11.69" x 16.54" - */ - public static final int mediasize_iso_a3 = 0x0104058c; - /** - * ISO (European standard) A4 media (paper) size: 8.27" x 11.69" - */ - public static final int mediasize_iso_a4 = 0x0104058d; - /** - * ISO (European standard) A5 media (paper) size: 5.83" x 8.27" - */ - public static final int mediasize_iso_a5 = 0x0104058e; - /** - * ISO (European standard) A6 media (paper) size: 4.13" x 5.83" - */ - public static final int mediasize_iso_a6 = 0x0104058f; - /** - * ISO (European standard) A7 media (paper) size: 2.91" x 4.13" - */ - public static final int mediasize_iso_a7 = 0x01040590; - /** - * ISO (European standard) A8 media (paper) size: 2.05" x 2.91" - */ - public static final int mediasize_iso_a8 = 0x01040591; - /** - * ISO (European standard) A9 media (paper) size: 1.46" x 2.05" - */ - public static final int mediasize_iso_a9 = 0x01040592; - /** - * ISO (European standard) B0 media (paper) size: 39.37" x 55.67" - */ - public static final int mediasize_iso_b0 = 0x01040594; - /** - * ISO (European standard) B1 media (paper) size: 27.83" x 39.37" - */ - public static final int mediasize_iso_b1 = 0x01040595; - /** - * ISO (European standard) B10 media (paper) size: 1.22" x 1.73" - */ - public static final int mediasize_iso_b10 = 0x0104059e; - /** - * ISO (European standard) B2 media (paper) size - 19.69" x 27.83" - */ - public static final int mediasize_iso_b2 = 0x01040596; - /** - * ISO (European standard) B3 media (paper) size: 13.90" x 19.69" - */ - public static final int mediasize_iso_b3 = 0x01040597; - /** - * ISO (European standard) B4 media (paper) size: 9.84" x 13.90" - */ - public static final int mediasize_iso_b4 = 0x01040598; - /** - * ISO (European standard) B5 media (paper) size: 6.93" x 9.84" - */ - public static final int mediasize_iso_b5 = 0x01040599; - /** - * ISO (European standard) B6 media (paper) size: 4.92" x 6.93" - */ - public static final int mediasize_iso_b6 = 0x0104059a; - /** - * ISO (European standard) B7 media (paper) size: 3.46" x 4.92" - */ - public static final int mediasize_iso_b7 = 0x0104059b; - /** - * ISO (European standard) B8 media (paper) size: 2.44" x 3.46" - */ - public static final int mediasize_iso_b8 = 0x0104059c; - /** - * ISO (European standard) B9 media (paper) size: 1.73" x 2.44" - */ - public static final int mediasize_iso_b9 = 0x0104059d; - /** - * ISO (European standard) C0 media (paper) size: 36.10" x 51.06" - */ - public static final int mediasize_iso_c0 = 0x0104059f; - /** - * ISO (European standard) C1 media (paper) size: 25.51" x 36.10" - */ - public static final int mediasize_iso_c1 = 0x010405a0; - /** - * ISO (European standard) C10 media (paper) size: 1.10" x 1.57" - */ - public static final int mediasize_iso_c10 = 0x010405a9; - /** - * ISO (European standard) C2 media (paper) size: 18.03" x 25.51" - */ - public static final int mediasize_iso_c2 = 0x010405a1; - /** - * ISO (European standard) C3 media (paper) size: 12.76" x 18.03" - */ - public static final int mediasize_iso_c3 = 0x010405a2; - /** - * ISO (European standard) C4 media (paper) size: 9.02" x 12.76" - */ - public static final int mediasize_iso_c4 = 0x010405a3; - /** - * ISO (European standard) C5 media (paper) size: 6.38" x 9.02" - */ - public static final int mediasize_iso_c5 = 0x010405a4; - /** - * ISO (European standard) C6 media (paper) size: 4.49" x 6.38" - */ - public static final int mediasize_iso_c6 = 0x010405a5; - /** - * ISO (European standard) C7 media (paper) size: 3.19" x 4.49" - */ - public static final int mediasize_iso_c7 = 0x010405a6; - /** - * ISO ISO C8 media (paper) size: 2.24" x 3.19" - */ - public static final int mediasize_iso_c8 = 0x010405a7; - /** - * ISO ISO C9 media (paper) size: 1.57" x 2.24" - */ - public static final int mediasize_iso_c9 = 0x010405a8; - /** - * Japanese Chou2 media (paper) size: 111.1mm x 146mm (4.374" x 5.748") - */ - public static final int mediasize_japanese_chou2 = 0x010405d4; - /** - * Japanese Chou3 media (paper) size: 120mm x 235mm (4.724" x 9.252") - */ - public static final int mediasize_japanese_chou3 = 0x010405d3; - /** - * Japanese Chou4 media (paper) size: 90mm x 205mm (3.543" x 8.071") - */ - public static final int mediasize_japanese_chou4 = 0x010405d2; - /** - * Japanese Hagaki media (paper) size: 100mm x 148mm (3.937" x 5.827") - */ - public static final int mediasize_japanese_hagaki = 0x010405d5; - /** - * Japanese JIS B0 media (paper) size: 1030mm x 1456mm (40.551" x 57.323") - */ - public static final int mediasize_japanese_jis_b0 = 0x010405d0; - /** - * Japanese JIS B1 media (paper) size: 728mm x 1030mm (28.661" x 40.551") - */ - public static final int mediasize_japanese_jis_b1 = 0x010405cf; - /** - * Japanese JIS B10 media (paper) size: 32mm x 45mm (1.259" x 1.772") - */ - public static final int mediasize_japanese_jis_b10 = 0x010405c6; - /** - * Japanese JIS B2 media (paper) size: 515mm x 728mm (20.276" x 28.661") - */ - public static final int mediasize_japanese_jis_b2 = 0x010405ce; - /** - * Japanese JIS B3 media (paper) size: 364mm x 515mm (14.331" x 20.276") - */ - public static final int mediasize_japanese_jis_b3 = 0x010405cd; - /** - * Japanese JIS B4 media (paper) size: 257mm x 364mm (10.118" x 14.331") - */ - public static final int mediasize_japanese_jis_b4 = 0x010405cc; - /** - * Japanese JIS B5 media (paper) size: 182mm x 257mm (7.165" x 10.118") - */ - public static final int mediasize_japanese_jis_b5 = 0x010405cb; - /** - * Japanese JIS B6 media (paper) size: 128mm x 182mm (5.049" x 7.165") - */ - public static final int mediasize_japanese_jis_b6 = 0x010405ca; - /** - * Japanese JIS B7 media (paper) size: 91mm x 128mm (3.583" x 5.049") - */ - public static final int mediasize_japanese_jis_b7 = 0x010405c9; - /** - * Japanese JIS B8 media (paper) size: 64mm x 91mm (2.52" x 3.583") - */ - public static final int mediasize_japanese_jis_b8 = 0x010405c8; - /** - * Japanese JIS B9 media (paper) size: 45mm x 64mm (1.772" x 2.52") - */ - public static final int mediasize_japanese_jis_b9 = 0x010405c7; - /** - * Japanese JIS Exec media (paper) size: 216mm x 330mm (8.504" x 12.992") - */ - public static final int mediasize_japanese_jis_exec = 0x010405d1; - /** - * Japanese Kahu media (paper) size: 240mm x 322.1mm (9.449" x 12.681") - */ - public static final int mediasize_japanese_kahu = 0x010405d7; - /** - * Japanese Kaku2 media (paper) size: 240mm x 332mm (9.449" x 13.071") - */ - public static final int mediasize_japanese_kaku2 = 0x010405d8; - /** - * Japanese Oufuku media (paper) size: 148mm x 200mm (5.827" x 7.874") - */ - public static final int mediasize_japanese_oufuku = 0x010405d6; - /** - * Japanese You4 media (paper) size: 105mm x 235mm (4.134" x 9.252") - */ - public static final int mediasize_japanese_you4 = 0x010405d9; - /** - * North America Foolscap media (paper) size: 8" x 13" (203mm x 330mm) - */ - public static final int mediasize_na_foolscap = 0x010405b5; - /** - * North America Government Letter media (paper) size: 8.0" × 10.5" (203mm x 267mm) - */ - public static final int mediasize_na_gvrnmt_letter = 0x010405ab; - /** - * North America Index Card 3x5 media (paper) size: 3" x 5" (76mm x 127mm) - */ - public static final int mediasize_na_index_3x5 = 0x010405b0; - /** - * North America Index Card 4x6 media (paper) size: 4" x 6" (102mm x 152mm) - */ - public static final int mediasize_na_index_4x6 = 0x010405b1; - /** - * North America Index Card 5x8 media (paper) size: 5" x 8" (127mm x 203mm) - */ - public static final int mediasize_na_index_5x8 = 0x010405b2; - /** - * North America Junior Legal media (paper) size: 8.0" × 5.0" (203mm × 127mm) - */ - public static final int mediasize_na_junior_legal = 0x010405ad; - /** - * North America Ledger media (paper) size: 17" × 11" (432mm × 279mm) - */ - public static final int mediasize_na_ledger = 0x010405ae; - /** - * North America Legal media (paper) size: 8.5" × 14" (216mm x 356mm) - */ - public static final int mediasize_na_legal = 0x010405ac; - /** - * North America Letter media (paper) size: 8.5" × 11" (279mm x 216mm) - */ - public static final int mediasize_na_letter = 0x010405aa; - /** - * North America Monarch media (paper) size: 7.25" x 10.5" (184mm x 267mm) - */ - public static final int mediasize_na_monarch = 0x010405b3; - /** - * North America Quarto media (paper) size: 8" x 10" (203mm x 254mm) - */ - public static final int mediasize_na_quarto = 0x010405b4; - /** - * North America Tabloid media (paper) size: 11" × 17" (279mm × 432mm) - */ - public static final int mediasize_na_tabloid = 0x010405af; - /** - * Media (paper) size for specifying any paper size in landscape. - */ - public static final int mediasize_unknown_landscape = 0x010405db; - /** - * Media (paper) size for specifying any paper size in portrait. - */ - public static final int mediasize_unknown_portrait = 0x010405da; - /** - * Suffix added to a number to signify size in megabytes. - */ - public static final int megabyteShort = 0x0104004a; - /** - Title for the dialog used to display the user's MEID number on CDMA network - [CHAR LIMIT=10] - */ - public static final int meid = 0x01040063; - /** - * Displayed in place of the regular shortcut letter when a menu item has Menu+delete for the shortcut. - */ - public static final int menu_delete_shortcut_label = 0x010403c6; - /** - * Displayed in place of the regular shortcut letter when a menu item has Menu+enter for the shortcut. - */ - public static final int menu_enter_shortcut_label = 0x010403c5; - /** - * Displayed in place of the regular shortcut letter when a menu item has Menu+space for the shortcut. - */ - public static final int menu_space_shortcut_label = 0x010403c4; - /** - * Quoted name for 12am, lowercase - */ - public static final int midnight = 0x010403e4; - /** - * Displayed when SIM PIN passwords are entered inconsistently. - */ - public static final int mismatchPin = 0x0104005c; - /** - * Displayed when a phone feature triggered by an MMI code is complete. - */ - public static final int mmiComplete = 0x01040059; - /** - Displayed when the user dialed an MMI code whose function - could not be performed. This will be displayed in a toast. - */ - public static final int mmiError = 0x01040051; - /** - Displayed when the user dialed an MMI code whose function - could not be performed because FDN is enabled. This will be displayed in a toast. - */ - public static final int mmiFdnError = 0x01040052; - /** - The default mobile provisioning apn. Empty by default, maybe overridden by - an mcc/mnc specific config.xml - */ - public static final int mobile_provisioning_apn = 0x01040025; - /** - The default mobile provisioning url. Empty by default, maybe overridden by - an mcc/mnc specific config.xml - */ - public static final int mobile_provisioning_url = 0x01040026; - /** - This url is used as the default url when redirection is detected. Any - should work as all url's get redirected. But maybe overridden by - if needed. - */ - public static final int mobile_redirected_provisioning_url = 0x01040027; - public static final int month_day_year = 0x0104003c; - /** - * Menu item displayed at the end of a menu to allow users to see another page worth of menu items. This is shown on any app's menu as long as the app has too many items in the menu. - */ - public static final int more_item_label = 0x010403c2; - /** - Displayed to prompt the user to type the PUK password to unlock - the SIM card. - */ - public static final int needPuk = 0x0104005f; - public static final int needPuk2 = 0x01040060; - /** - * A notification is shown when a captive portal network is detected. This is the notification's title. - */ - public static final int network_available_sign_in = 0x01040432; - /** - * A notification is shown when a captive portal network is detected. This is the notification's message. - */ - public static final int network_available_sign_in_detailed = 0x01040433; - public static final int new_app_action = 0x0104041b; - public static final int new_app_description = 0x0104041c; - /** - * Preference framework strings. - */ - public static final int no = 0x01040009; - /** - Text to display when there are no activities found to display in the - activity chooser. See the "Select an action" title. - */ - public static final int noApplications = 0x010403fc; - /** - * Label for the file upload control when no file has been chosen yet - */ - public static final int no_file_chosen = 0x010404bf; - /** - * Displayed on the Find dialog when there are no matches [CHAR LIMIT=NONE] - */ - public static final int no_matches = 0x010404cd; - /** - * Quoted name for 12pm, lowercase - */ - public static final int noon = 0x010403e2; - /** - Label to show for a service that is running because it is observing - the user's notifications. - */ - public static final int notification_listener_binding_label = 0x010404b4; - /** - A notification is shown when the AccountManager is unable to - supply an auth token without prompting the user to re-enter the - password. This is the text that will scroll through the - notification bar (will be seen by the user as he uses another application). - */ - public static final int notification_title = 0x010400ab; - /** - * Description of the scrolling action in NumberPicker. [CHAR LIMIT=NONE] - */ - public static final int number_picker_increment_scroll_action = 0x010404ed; - /** - * Description of the tap and hold action to get into scroll mode in NumberPicker. [CHAR LIMIT=NONE] - */ - public static final int number_picker_increment_scroll_mode = 0x010404ec; - public static final int numeric_date_template = 0x0104003b; - /** - * Preference framework strings. - */ - public static final int ok = 0x0104000a; - public static final int old_app_action = 0x01040419; - public static final int old_app_description = 0x0104041a; - /** - * This is used to express that something happened longer ago than the previous options - */ - public static final int older = 0x010403d1; - /** - * Displayed to the user when they do not have permission to open a particular web page. - */ - public static final int open_permission_deny = 0x010403c0; - /** - * Custom organization type - */ - public static final int orgTypeCustom = 0x010402ea; - /** - * Other organization type - */ - public static final int orgTypeOther = 0x010402e9; - /** - * Work organization type - */ - public static final int orgTypeWork = 0x010402e8; - /** - * Default name of the owner user [CHAR LIMIT=20] - */ - public static final int owner_name = 0x01040584; - /** - * Displayed when a SIM password was entered incorrectly. - */ - public static final int passwordIncorrect = 0x01040058; - /** - * Item on EditText context menu. This action is used to paste from the clipboard into the eidt field - */ - public static final int paste = 0x0104000b; - public static final int permission_request_notification_with_subtitle = 0x010404ae; - /** - * Text that is placed at the front of a permission name that is being added to an app [CHAR LIMIT=NONE] - */ - public static final int perms_description_app = 0x0104045e; - /** - Security Permissions strings - Text that is placed at the front of a permission name that is being added to an app [CHAR LIMIT=NONE] - */ - public static final int perms_new_perm_prefix = 0x0104045d; - /** - * Suffix added to a number to signify size in petabytes. - */ - public static final int petabyteShort = 0x0104004d; - /** - * Assistant phone number type - */ - public static final int phoneTypeAssistant = 0x010402cb; - /** - * Callback phone number type - */ - public static final int phoneTypeCallback = 0x010402c0; - /** - * Car phone number type - */ - public static final int phoneTypeCar = 0x010402c1; - /** - * Company main phone number type - */ - public static final int phoneTypeCompanyMain = 0x010402c2; - /** - * Custom phone number type - */ - public static final int phoneTypeCustom = 0x010402b8; - /** - * Home fax phone number type - */ - public static final int phoneTypeFaxHome = 0x010402bd; - /** - * Work fax phone number type - */ - public static final int phoneTypeFaxWork = 0x010402bc; - /** - * Home phone number type - */ - public static final int phoneTypeHome = 0x010402b9; - /** - * ISDN phone number type - */ - public static final int phoneTypeIsdn = 0x010402c3; - /** - * Main phone number type - */ - public static final int phoneTypeMain = 0x010402c4; - /** - * MMS phone number type - */ - public static final int phoneTypeMms = 0x010402cc; - /** - * Mobile phone number type - */ - public static final int phoneTypeMobile = 0x010402ba; - /** - * Other phone number type - */ - public static final int phoneTypeOther = 0x010402bf; - /** - * Other fax phone number type - */ - public static final int phoneTypeOtherFax = 0x010402c5; - /** - * Pager phone number type - */ - public static final int phoneTypePager = 0x010402be; - /** - * Radio phone number type - */ - public static final int phoneTypeRadio = 0x010402c6; - /** - * Telex phone number type - */ - public static final int phoneTypeTelex = 0x010402c7; - /** - * TTY TDD phone number type - */ - public static final int phoneTypeTtyTdd = 0x010402c8; - /** - * Work phone number type - */ - public static final int phoneTypeWork = 0x010402bb; - /** - * Work mobile phone number type - */ - public static final int phoneTypeWorkMobile = 0x010402c9; - /** - * Work pager phone number type - */ - public static final int phoneTypeWorkPager = 0x010402ca; - /** - * Description of policy access to disable all device cameras [CHAR LIMIT=110] - */ - public static final int policydesc_disableCamera = 0x010402b5; - /** - * Description of policy access to disable all device cameras [CHAR LIMIT=110] - */ - public static final int policydesc_disableKeyguardFeatures = 0x010402b7; - /** - * Description of policy access to require encrypted storage [CHAR LIMIT=110] - */ - public static final int policydesc_encryptedStorage = 0x010402b3; - /** - * Description of policy access to enforce password expiration [CHAR LIMIT=110] - */ - public static final int policydesc_expirePassword = 0x010402b1; - /** - * Description of policy access to limiting the user's password choices - */ - public static final int policydesc_forceLock = 0x010402ab; - /** - * Description of policy access to limiting the user's password choices - */ - public static final int policydesc_limitPassword = 0x010402a5; - /** - * Description of policy access to reset user's password - */ - public static final int policydesc_resetPassword = 0x010402a9; - /** - * Description of policy access to wipe the user's data - */ - public static final int policydesc_setGlobalProxy = 0x010402af; - /** - * Description of policy access to watch user login attempts - */ - public static final int policydesc_watchLogin = 0x010402a7; - /** - * Description of policy access to wipe the user's data - */ - public static final int policydesc_wipeData = 0x010402ad; - /** - * Title of policy access to disable all device cameras [CHAR LIMIT=30] - */ - public static final int policylab_disableCamera = 0x010402b4; - /** - * Title of policy access to disable all device cameras [CHAR LIMIT=30] - */ - public static final int policylab_disableKeyguardFeatures = 0x010402b6; - /** - * Title of policy access to require encrypted storage [CHAR LIMIT=30] - */ - public static final int policylab_encryptedStorage = 0x010402b2; - /** - * Title of policy access to enforce password expiration [CHAR LIMIT=30] - */ - public static final int policylab_expirePassword = 0x010402b0; - /** - * Title of policy access to force lock the device - */ - public static final int policylab_forceLock = 0x010402aa; - /** - Policy administration - Title of policy access to limiting the user's password choices - */ - public static final int policylab_limitPassword = 0x010402a4; - /** - * Title of policy access to reset user's password - */ - public static final int policylab_resetPassword = 0x010402a8; - public static final int policylab_setGlobalProxy = 0x010402ae; - /** - * Title of policy access to watch user login attempts - */ - public static final int policylab_watchLogin = 0x010402a6; - /** - * Title of policy access to wipe the user's data - */ - public static final int policylab_wipeData = 0x010402ac; - /** - * Custom postal address type - */ - public static final int postalTypeCustom = 0x010402d6; - /** - * Home postal address type - */ - public static final int postalTypeHome = 0x010402d7; - /** - * Other postal address type - */ - public static final int postalTypeOther = 0x010402d9; - /** - * Work postal address type - */ - public static final int postalTypeWork = 0x010402d8; - /** - * Button to turn off the phone, within the Phone Options dialog - */ - public static final int power_off = 0x010400b9; - /** - * Prepended to the shortcut for a menu item to indicate that the user should hold the MENU button together with the shortcut to invoke the item. For example, if the shortcut to open a new tab in browser is MENU and B together, then this would be prepended to the letter "B" - */ - public static final int prepend_shortcut_label = 0x010403c3; - /** - * String used to display the date. Preposition for date display ("on May 29") - */ - public static final int preposition_for_date = 0x010403d2; - /** - * String used to display the date. Preposition for time display ("at 2:33am") - */ - public static final int preposition_for_time = 0x010403d3; - /** - * Message for the notification that a print service was installed. [CHAR LIMIT=50] - */ - public static final int print_service_installed_message = 0x010405e1; - /** - * Title for the notification that a print service was installed. [CHAR LIMIT=50] - */ - public static final int print_service_installed_title = 0x010405e0; - /** - * Text for progress dialog while erasing SD card [CHAR LIMIT=NONE] - */ - public static final int progress_erasing = 0x010404d1; - /** - * Text for progress dialog while unmounting SD card [CHAR LIMIT=NONE] - */ - public static final int progress_unmounting = 0x010404d0; - /** - Error message that is displayed when the user clicks on a quick contacts badge, but - there is no contacts application installed that can display the quick contact - */ - public static final int quick_contacts_not_available = 0x010402fe; - /** - * Print fail reason: the print service that has to process the print job is not available. [CHAR LIMIT=none] - */ - public static final int reason_service_unavailable = 0x010405df; - /** - * Print fail reason: unknown. [CHAR LIMIT=25] - */ - public static final int reason_unknown = 0x010405de; - /** - Shutdown Confirmation Dialog. Message in the confirmation dialog - when the user asks to reboot into safe mode. [CHAR LIMIT=NONE] - */ - public static final int reboot_safemode_confirm = 0x010400c1; - /** - * Title of dialog to confirm rebooting into safe mode. [CHAR LIMIT=50] - */ - public static final int reboot_safemode_title = 0x010400c0; - /** - * Assistant relationship type [CHAR LIMIT=20] - */ - public static final int relationTypeAssistant = 0x010402ec; - /** - * Brother relationship type [CHAR LIMIT=20] - */ - public static final int relationTypeBrother = 0x010402ed; - /** - * Child relationship type [CHAR LIMIT=20] - */ - public static final int relationTypeChild = 0x010402ee; - /** - * Domestic Partner relationship type [CHAR LIMIT=20] - */ - public static final int relationTypeDomesticPartner = 0x010402ef; - /** - * Father relationship type [CHAR LIMIT=20] - */ - public static final int relationTypeFather = 0x010402f0; - /** - * Friend relationship type [CHAR LIMIT=20] - */ - public static final int relationTypeFriend = 0x010402f1; - /** - * Manager relationship type [CHAR LIMIT=20] - */ - public static final int relationTypeManager = 0x010402f2; - /** - * Mother relationship type [CHAR LIMIT=20] - */ - public static final int relationTypeMother = 0x010402f3; - /** - * Parent relationship type [CHAR LIMIT=20] - */ - public static final int relationTypeParent = 0x010402f4; - /** - * Partner relationship type [CHAR LIMIT=20] - */ - public static final int relationTypePartner = 0x010402f5; - /** - * Referred by relationship type [CHAR LIMIT=20] - */ - public static final int relationTypeReferredBy = 0x010402f6; - /** - * Relative relationship type [CHAR LIMIT=20] - */ - public static final int relationTypeRelative = 0x010402f7; - /** - * Sister relationship type [CHAR LIMIT=20] - */ - public static final int relationTypeSister = 0x010402f8; - /** - * Spouse relationship type [CHAR LIMIT=20] - */ - public static final int relationTypeSpouse = 0x010402f9; - /** - Format indicating a relative expression and time. - Example: "4 hours ago, 11:00 am" - */ - public static final int relative_time = 0x010403e1; - /** - * Item on EditText context menu. This action is used to replace the current word by other suggested words, suggested by the IME or the spell checker - */ - public static final int replace = 0x010403e8; - /** - * Button allowing the user to send a bug report for application which has encountered an error. - */ - public static final int report = 0x01040406; - /** - * Label for button in html - */ - public static final int reset = 0x010404c0; - /** - * PIN entry dialog title for entering the administrator PIN [CHAR LIMIT=none] - */ - public static final int restr_pin_enter_admin_pin = 0x010405e2; - /** - * PIN entry dialog label/hint for PIN [CHAR LIMIT=none] - */ - public static final int restr_pin_enter_pin = 0x010405e3; - /** - * PIN entry dialog label/hint for incorrect PIN entry [CHAR LIMIT=none] - */ - public static final int restr_pin_incorrect = 0x010405e4; - /** - * PIN entry dialog tells the user to not enter a PIN for a while. [CHAR LIMIT=none] - */ - public static final int restr_pin_try_later = 0x010405eb; - public static final int revoke = 0x01040588; - /** - * Choice in the ringtone picker. If chosen, the default ringtone will be used. - */ - public static final int ringtone_default = 0x0104042c; - /** - * Choice in the ringtone picker. If chosen, the default ringtone will be used. This fills in the actual ringtone's title into the message. - */ - public static final int ringtone_default_with_actual = 0x0104042d; - /** - * The title of the ringtone picker dialog. - */ - public static final int ringtone_picker_title = 0x0104042f; - /** - * Choice in the ringtone picker. If chosen, there will be silence instead of a ringtone played. - */ - public static final int ringtone_silent = 0x0104042e; - /** - * If there is ever a ringtone set for some setting, but that ringtone can no longer be resolved, t his is shown instead. For example, if the ringtone was on a SD card and it had been removed, this woudl be shown for ringtones on that SD card. - */ - public static final int ringtone_unknown = 0x01040430; - /** - * Default roaming indicator text - */ - public static final int roamingText0 = 0x01040088; - public static final int roamingText1 = 0x01040089; - public static final int roamingText10 = 0x01040092; - public static final int roamingText11 = 0x01040093; - public static final int roamingText12 = 0x01040094; - public static final int roamingText2 = 0x0104008a; - public static final int roamingText3 = 0x0104008b; - public static final int roamingText4 = 0x0104008c; - public static final int roamingText5 = 0x0104008d; - public static final int roamingText6 = 0x0104008e; - public static final int roamingText7 = 0x0104008f; - public static final int roamingText8 = 0x01040090; - public static final int roamingText9 = 0x01040091; - public static final int roamingTextSearching = 0x01040095; - /** - Message shown in dialog when user is attempting to set the music volume above the - recommended maximum level for headphones - */ - public static final int safe_media_volume_warning = 0x0104057f; - /** - * Title of the WebView save password dialog. If the user enters a password in a form on a website, a dialog will come up asking if they want to save the password. - */ - public static final int save_password_label = 0x0104036b; - /** - * If the user enters a password in a form on a website, a dialog will come up asking if they want to save the password. Text in the save password dialog, asking if the browser should remember a password. - */ - public static final int save_password_message = 0x010403bc; - /** - * Button in the save password dialog, saying never to remember this password. This should be short. Should be "Never for this site". But it is too long, use "Never" instead - */ - public static final int save_password_never = 0x010403bf; - /** - * If the user enters a password in a form on a website, a dialog will come up asking if they want to save the password. Button in the save password dialog, saying not to remember this password. - */ - public static final int save_password_notnow = 0x010403bd; - /** - * If the user enters a password in a form on a website, a dialog will come up asking if they want to save the password. Button in the save password dialog, saying to remember this password. - */ - public static final int save_password_remember = 0x010403be; - /** - This is the default button label in the system-wide search UI. - It is also used by the home screen's search "widget". It should be short - */ - public static final int search_go = 0x0104000c; - /** - * Item on EditText context menu. This action is used to select all text in the edit field. - */ - public static final int selectAll = 0x0104000d; - /** - * Item on EditText context menu. Added only when the context menu is not empty, it enable selection context mode. [CHAR LIMIT=20] - */ - public static final int selectTextMode = 0x01040016; - /** - * Title of the pop-up dialog in which the user switches input method components. - */ - public static final int select_input_method = 0x0104047d; - /** - * Message of the notification to prompt the user to select a keyboard layout. - */ - public static final int select_keyboard_layout_notification_message = 0x01040482; - /** - * Title of the notification to prompt the user to select a keyboard layout. - */ - public static final int select_keyboard_layout_notification_title = 0x01040481; - /** - Displayed in the title of the chooser for things to do with text that - is to be sent to another application. For example, I can send - text through SMS or IM. A dialog with those choices would be shown, - and this would be the title. - */ - public static final int sendText = 0x0104041d; - /** - * STK sending DTMF, SMS, USSD, SS - */ - public static final int sending = 0x0104053b; - /** - * Example: Service was enabled for: Voice, Data - */ - public static final int serviceClassData = 0x01040081; - /** - * Meaning: asynchronous data. Example: Service was enabled for: Voice, Async - */ - public static final int serviceClassDataAsync = 0x01040084; - /** - * Meaning: synchronous data. Example: Service was enabled for: Voice, Async - */ - public static final int serviceClassDataSync = 0x01040085; - /** - * Example: Service was enabled for: Voice, FAX - */ - public static final int serviceClassFAX = 0x01040082; - /** - * Meaning: unknown. Example: Service was enabled for: Voice, PAD - */ - public static final int serviceClassPAD = 0x01040087; - /** - * Meaning: packet data. Example: Service was enabled for: Voice, Packet - */ - public static final int serviceClassPacket = 0x01040086; - /** - * Example: Service was enabled for: Voice, SMS - */ - public static final int serviceClassSMS = 0x01040083; - /** - * Example: Service was enabled for: Voice, Data - */ - public static final int serviceClassVoice = 0x01040080; - /** - * Displayed when a phone feature such as call forwarding was deactivated. - */ - public static final int serviceDisabled = 0x01040055; - /** - * Displayed when a phone feature such as call barring was activated. - */ - public static final int serviceEnabled = 0x01040053; - /** - Displayed in front of the list of a set of service classes - (voice, data, fax, etc.) that were enabled. - */ - public static final int serviceEnabledFor = 0x01040054; - /** - * Displayed when a phone property such as a SIM password was erased. - */ - public static final int serviceErased = 0x01040057; - /** - * Displayed to tell the user that caller ID is not provisioned for their SIM. - */ - public static final int serviceNotProvisioned = 0x01040075; - /** - * Displayed when a phone property such as a SIM password was registered. - */ - public static final int serviceRegistered = 0x01040056; - /** - * Text to show in the auto complete drop down list on a text view when the WebView can auto fill the entire form but the user has not configured an AutoFill profile [CHAR-LIMIT=19] - */ - public static final int setup_autofill = 0x0104036e; - /** - Text for WebView's text selection Action Mode - ActionBar action to share the current selection [CHAR LIMIT=10] - */ - public static final int share = 0x010404d8; - /** - ShareActionProvider - accessibility support - Description of the choose target button in a ShareActionProvider (share UI). [CHAR LIMIT=NONE] - */ - public static final int shareactionprovider_share_with = 0x01040503; - /** - * Description of a share target (both in the list of such or the default share button) in a ShareActionProvider (share UI). [CHAR LIMIT=NONE] - */ - public static final int shareactionprovider_share_with_application = 0x01040504; - /** - Shutdown Confirmation Dialog. When the user chooses to power off the phone, there will - be a confirmation dialog. This is the message. - */ - public static final int shutdown_confirm = 0x010400be; - /** - Shutdown Confirmation Dialog. When the user chooses to power off the phone, it asks - the user if they'd like to shut down. This is the message. This is used instead of - shutdown_confirm when the system is configured to use long press to go directly to the - power off dialog instead of the global actions menu. - */ - public static final int shutdown_confirm_question = 0x010400bf; - /** - * Shutdown Progress Dialog. This is shown if the user chooses to power off the phone. - */ - public static final int shutdown_progress = 0x010400bd; - /** - * See SIM_ADDED_DIALOG. This is the message of that dialog. - */ - public static final int sim_added_message = 0x01040457; - /** - * See SIM_ADDED_DIALOG. This is the title of that dialog. - */ - public static final int sim_added_title = 0x01040456; - /** - * See SIM_REMOVED_DIALOG. This is the message of that dialog. - */ - public static final int sim_removed_message = 0x01040454; - /** - * See SIM_REMOVED_DIALOG. This is the title of that dialog. - */ - public static final int sim_removed_title = 0x01040453; - /** - * See SIM_ADDED_DIALOG. This is the button of that dialog. - */ - public static final int sim_restart_button = 0x01040458; - /** - * Custom SIP address type. Same context as Custom phone type. - */ - public static final int sipAddressTypeCustom = 0x010402fa; - /** - * Home SIP address type. Same context as Home phone type. - */ - public static final int sipAddressTypeHome = 0x010402fb; - /** - * Other SIP address type. Same context as Other phone type. - */ - public static final int sipAddressTypeOther = 0x010402fd; - /** - * Work SIP address type. Same context as Work phone type. - */ - public static final int sipAddressTypeWork = 0x010402fc; - /** - * See SMS_DIALOG. This is the message shown in that dialog. [CHAR LIMIT=NONE] - */ - public static final int sms_control_message = 0x01040447; - /** - * See SMS_DIALOG. This is a button choice to disallow sending the SMSes. [CHAR LIMIT=30] - */ - public static final int sms_control_no = 0x01040449; - /** - * SMS_DIALOG: An SMS dialog is shown if an application tries to send too many SMSes. This is the title of that dialog. - */ - public static final int sms_control_title = 0x01040446; - /** - * See SMS_DIALOG. This is a button choice to allow sending the SMSes. [CHAR LIMIT=30] - */ - public static final int sms_control_yes = 0x01040448; - /** - Message details for the SMS short code confirmation dialog (premium short code). [CHAR LIMIT=NONE] - syntax error in translation for sms_short_code_details (3492025719868078457) org.xmlpull.v1.XmlPullParserException: expected: /string read: font (position:END_TAG @1:83 in "මෙය ""ඔබගේ ජංගම ගිණුමේ"" අය වීම් වලට හේතුවක් වේ." - ) - syntax error in translation for sms_short_code_details (3492025719868078457) org.xmlpull.v1.XmlPullParserException: expected: /string read: font (position:END_TAG @1:83 in "මෙය ""ඔබගේ ජංගම ගිණුමේ"" අය වීම් වලට හේතුවක් වේ." - ) - */ - public static final int sms_premium_short_code_details = 0x0104044c; - /** - * Text of the approval button for the SMS short code confirmation dialog. [CHAR LIMIT=30] - */ - public static final int sms_short_code_confirm_allow = 0x0104044d; - /** - * Text of the approval button for the SMS short code confirmation dialog when checkbox is checked. [CHAR LIMIT=30] - */ - public static final int sms_short_code_confirm_always_allow = 0x01040451; - /** - * Text of the cancel button for the SMS short code confirmation dialog. [CHAR LIMIT=30] - */ - public static final int sms_short_code_confirm_deny = 0x0104044e; - /** - * The message text for the SMS short code confirmation dialog. [CHAR LIMIT=NONE] - */ - public static final int sms_short_code_confirm_message = 0x0104044a; - /** - * Text of the cancel button for the SMS short code confirmation dialog when checkbox is checked. [CHAR LIMIT=30] - */ - public static final int sms_short_code_confirm_never_allow = 0x01040452; - /** - * Message details for the SMS short code confirmation dialog (possible premium short code). [CHAR LIMIT=NONE] - */ - public static final int sms_short_code_details = 0x0104044b; - /** - * Text shown when remember checkbox is checked to inform the user how they may undo the setting. [CHAR LIMIT=40] - */ - public static final int sms_short_code_remember_undo_instruction = 0x01040450; - /** - * Text of the alert that is displayed when an application has violated StrictMode. - */ - public static final int smv_application = 0x0104040f; - /** - * Text of the alert that is displayed when an application has violated StrictMode. - */ - public static final int smv_process = 0x01040410; - /** - Content text for a notification. The Title of the notification is "ssl_ca_cert_warning", - i.e. "Network may be monitored". This says that an unknown party is doing the monitoring. - [CHAR LIMIT=100] - */ - public static final int ssl_ca_cert_noti_by_unknown = 0x010400b1; - /** - Content text for a notification. The Title of the notification is "ssl_ca_cert_warning", - i.e. "Network may be monitored". This indicates who is doing the monitoring. - [CHAR LIMIT=100] - */ - public static final int ssl_ca_cert_noti_managed = 0x010400b2; - /** - Shows up when there is a user SSL CA Cert installed on the - device. Indicates to the user that SSL traffic can be intercepted. [CHAR LIMIT=NONE] - */ - public static final int ssl_ca_cert_warning = 0x010400b0; - /** - SSL Certificate dialogs - Title for an SSL Certificate dialog - */ - public static final int ssl_certificate = 0x01040529; - /** - * Message on an SSL Certificate dialog - */ - public static final int ssl_certificate_is_valid = 0x0104052a; - /** - Text to use when the number in a notification info is too large - (greater than status_bar_notification_info_maxnum, defined in - values/config.xml) and must be truncated. May need to be localized - for most appropriate textual indicator of "more than X". - [CHAR LIMIT=4] - */ - public static final int status_bar_notification_info_overflow = 0x01040017; - /** - * Label for button in html - */ - public static final int submit = 0x010404c1; - /** - * Label to show for a service that is running because it is a sync adapter. - */ - public static final int sync_binding_label = 0x010404b0; - /** - * Dialog action for when there are too many deletes that would take place and we want user confirmation, and the user wants to do nothing for now - */ - public static final int sync_do_nothing = 0x010404e6; - /** - * Dialog action for when there are too many deletes that would take place and we want user confirmation, and the user wants to delete the items - */ - public static final int sync_really_delete = 0x010404e4; - /** - * Dialog message for when there are too many deletes that would take place and we want user confirmation - */ - public static final int sync_too_many_deletes_desc = 0x010404e3; - /** - * Dialog action for when there are too many deletes that would take place and we want user confirmation, and the user wants to undo the deletions - */ - public static final int sync_undo_deletes = 0x010404e5; - /** - * @hide DO NOT TRANSLATE. date formatting pattern for system ui. - */ - public static final int system_ui_date_pattern = 0x01040047; - /** - * Suffix added to a number to signify size in terabytes. - */ - public static final int terabyteShort = 0x0104004c; - public static final int tethered_notification_message = 0x010404c5; - /** - Strings for tethered notification - Shown when the device is tethered - */ - public static final int tethered_notification_title = 0x010404c4; - /** - * Text selection contextual mode title, displayed in the CAB. [CHAR LIMIT=20] - */ - public static final int textSelectionCABTitle = 0x010403ea; - /** - * Displayed to the user to confirm that they have copied text from a web page to the clipboard. - */ - public static final int text_copied = 0x010403c1; - public static final int throttle_warning_notification_message = 0x010404ca; - /** - Strings for throttling notification - Shown when the user is in danger of being throttled - */ - public static final int throttle_warning_notification_title = 0x010404c9; - public static final int throttled_notification_message = 0x010404cc; - /** - Strings for throttling notification - Shown when the users bandwidth is reduced because of excessive data use - */ - public static final int throttled_notification_title = 0x010404cb; - public static final int time_of_day = 0x0104003d; - /** - * Description of the button to decrease the TimePicker's hour value. [CHAR LIMIT=NONE] - */ - public static final int time_picker_decrement_hour_button = 0x010404f1; - /** - * Description of the button to decrease the TimePicker's minute value. [CHAR LIMIT=NONE] - */ - public static final int time_picker_decrement_minute_button = 0x010404ef; - /** - * Description of the button to decrease the TimePicker's set AM value. [CHAR LIMIT=NONE] - */ - public static final int time_picker_decrement_set_am_button = 0x010404f3; - /** - Date/Time picker dialogs strings - The title of the time picker dialog. [CHAR LIMIT=NONE] - */ - public static final int time_picker_dialog_title = 0x01040459; - /** - * Description of the button to increase the TimePicker's hour value. [CHAR LIMIT=NONE] - */ - public static final int time_picker_increment_hour_button = 0x010404f0; - /** - TimePicker - accessibility support - Description of the button to increase the TimePicker's minute value. [CHAR LIMIT=NONE] - */ - public static final int time_picker_increment_minute_button = 0x010404ee; - /** - * Description of the button to increase the TimePicker's set PM value. [CHAR LIMIT=NONE] - */ - public static final int time_picker_increment_set_pm_button = 0x010404f2; - /** - * How to display the lack of a name - */ - public static final int unknownName = 0x0104000e; - /** - Used in Contacts for a field that has no label and in Note Pad - for a note with no name. - */ - public static final int untitled = 0x0104000f; - /** - Localized strings for WebView - Label for button in a WebView that will open a chooser to choose a file to upload - */ - public static final int upload_file = 0x010404be; - /** - * USB_PREFERENCES: Notification for when a USB accessory is attached. This is the title - */ - public static final int usb_accessory_notification_title = 0x01040475; - /** - * USB_PREFERENCES: Notification for when the user connects the phone to a computer via USB in mass storage mode (for installer CD image). This is the title - */ - public static final int usb_cd_installer_notification_title = 0x01040474; - /** - * USB_PREFERENCES: Notification for when the user connects the phone to a computer via USB in MTP mode. This is the title - */ - public static final int usb_mtp_notification_title = 0x01040472; - /** - * See USB_PREFERENCES. This is the message. - */ - public static final int usb_notification_message = 0x01040476; - /** - * USB_PREFERENCES: Notification for when the user connects the phone to a computer via USB in PTP mode. This is the title - */ - public static final int usb_ptp_notification_title = 0x01040473; - /** - * See USB_STORAGE_DIALOG. If there was an error mounting, this is the text. - */ - public static final int usb_storage_error_message = 0x01040465; - /** - * See USB_STORAGE. This is the message. [CHAR LIMIT=NONE] - */ - public static final int usb_storage_message = 0x01040463; - /** - * See USB_STORAGE. This is the message. - */ - public static final int usb_storage_notification_message = 0x01040467; - /** - * USB_STORAGE: When the user connects the phone to a computer via USB, we show a notification asking if he wants to share files across. This is the title - */ - public static final int usb_storage_notification_title = 0x01040466; - /** - * See USB_STORAGE_STOP. This is the message. - */ - public static final int usb_storage_stop_message = 0x0104046b; - /** - * See USB_STORAGE. This is the message. - */ - public static final int usb_storage_stop_notification_message = 0x01040469; - /** - * USB_STORAGE_STOP: While USB storage is enabled, we show a notification dialog asking if he wants to stop. This is the title - */ - public static final int usb_storage_stop_notification_title = 0x01040468; - /** - USB storage stop dialog strings - This is the label for the activity, and should never be visible to the user. - See USB_STORAGE_STOP. USB_STORAGE_STOP_DIALOG: After the user selects the notification, a dialog is shown asking if he wants to stop usb storage. This is the title. - */ - public static final int usb_storage_stop_title = 0x0104046a; - /** - * See USB_STORAGE. USB_STORAGE_DIALOG: After the user selects the notification, a dialog is shown asking if he wants to mount. This is the title. - */ - public static final int usb_storage_title = 0x01040462; - /** - * Summary text of a toggle switch to enable/disable use of the physical keyboard in the input method selector [CHAR LIMIT=25] - */ - public static final int use_physical_keyboard = 0x0104047f; - /** - * Text spoken when the current user is switched if accessibility is enabled. [CHAR LIMIT=none] - */ - public static final int user_switched = 0x01040583; - /** - * Title of the dialog where the user is adjusting the audio volume for alarms - */ - public static final int volume_alarm = 0x01040424; - /** - * Content description for bluetooth volume icon [CHAR LIMIT=100] - */ - public static final int volume_icon_description_bluetooth = 0x01040427; - /** - * Content description for in-call volume icon [CHAR LIMIT=100] - */ - public static final int volume_icon_description_incall = 0x01040429; - /** - * Content description for media volume icon [CHAR LIMIT=100] - */ - public static final int volume_icon_description_media = 0x0104042a; - /** - * Content description for notification volume icon [CHAR LIMIT=100] - */ - public static final int volume_icon_description_notification = 0x0104042b; - /** - * Content description for ringer volume icon [CHAR LIMIT=100] - */ - public static final int volume_icon_description_ringer = 0x01040428; - /** - * Notification body that indicates user can touch to configure lockdown VPN connection. - */ - public static final int vpn_lockdown_config = 0x010404bd; - /** - * Notification title when connected to lockdown VPN. - */ - public static final int vpn_lockdown_connected = 0x010404bb; - /** - * Notification title when connecting to lockdown VPN. - */ - public static final int vpn_lockdown_connecting = 0x010404ba; - /** - * Notification title when error connecting to lockdown VPN. - */ - public static final int vpn_lockdown_error = 0x010404bc; - /** - * The text of the notification when VPN is active. - */ - public static final int vpn_text = 0x010404b8; - /** - * The text of the notification when VPN is active with a session name. - */ - public static final int vpn_text_long = 0x010404b9; - /** - * The title of the notification when VPN is active. - */ - public static final int vpn_title = 0x010404b6; - /** - * The title of the notification when VPN is active with an application name. - */ - public static final int vpn_title_long = 0x010404b7; - /** - * Button allowing the user to choose to wait for an application that is not responding to become responsive again. - */ - public static final int wait = 0x01040407; - /** - * Label to show for a service that is running because it is a wallpaper. - */ - public static final int wallpaper_binding_label = 0x010404b2; - /** - * Do not translate. WebView User Agent string - */ - public static final int web_user_agent = 0x01040363; - /** - Do not translate. WebView User Agent targeted content - Do not translate. WebView User Agent targeted content - Do not translate. WebView User Agent targeted content - */ - public static final int web_user_agent_target_content = 0x01040364; - /** - * Text of the alert that is displayed when a web page is not responding. [CHAR-LIMIT=NONE] - */ - public static final int webpage_unresponsive = 0x01040408; - /** - * ActionBar action to use the current selection to perform a web search [CHAR-LIMIT=16] - */ - public static final int websearch = 0x010404da; - /** - * Content description for the content view that holds the web contents [CHAR-LIMIT=32] - */ - public static final int webviewchromium_accessibility_content_view = 0x01040620; - /** - * Content description for the date time picker month component. [CHAR-LIMIT=32] - */ - public static final int webviewchromium_accessibility_date_picker_month = 0x01040630; - /** - * Content description for the date time picker week component. [CHAR-LIMIT=32] - */ - public static final int webviewchromium_accessibility_date_picker_week = 0x01040631; - /** - * Content description for the date time picker year component. [CHAR-LIMIT=32] - */ - public static final int webviewchromium_accessibility_date_picker_year = 0x01040632; - /** - * Content description for the date time picker date component. [CHAR-LIMIT=32] - */ - public static final int webviewchromium_accessibility_datetime_picker_date = 0x0104062e; - /** - * Content description for the date time picker time component. [CHAR-LIMIT=32] - */ - public static final int webviewchromium_accessibility_datetime_picker_time = 0x0104062f; - /** - * Content description for the time picker AM/PM component. [CHAR-LIMIT=32] - */ - public static final int webviewchromium_accessibility_time_picker_ampm = 0x01040637; - /** - * Content description for the time picker hour component. [CHAR-LIMIT=32] - */ - public static final int webviewchromium_accessibility_time_picker_hour = 0x01040633; - /** - * Content description for the time picker milli component. [CHAR-LIMIT=32] - */ - public static final int webviewchromium_accessibility_time_picker_milli = 0x01040636; - /** - * Content description for the time picker minute component. [CHAR-LIMIT=32] - */ - public static final int webviewchromium_accessibility_time_picker_minute = 0x01040634; - /** - * Content description for the time picker second component. [CHAR-LIMIT=32] - */ - public static final int webviewchromium_accessibility_time_picker_second = 0x01040635; - /** - Contextual action bar item for sharing a block of text via email, or - other method. [CHAR-LIMIT=24] - */ - public static final int webviewchromium_actionbar_share = 0x0104061e; - /** - Contextual action bar item for using the selected text in a internet - search. [CHAR-LIMIT=24] - */ - public static final int webviewchromium_actionbar_web_search = 0x0104061f; - /** - * Label for Color Picker color button. - */ - public static final int webviewchromium_color_picker_button_black = 0x0104064a; - /** - * Label for Color Picker color button. - */ - public static final int webviewchromium_color_picker_button_blue = 0x01040646; - /** - Label for button in Color Picker dialog for user to cancel picking a - color. [CHAR-LIMIT=20] - */ - public static final int webviewchromium_color_picker_button_cancel = 0x01040642; - /** - * Label for Color Picker color button. - */ - public static final int webviewchromium_color_picker_button_cyan = 0x01040645; - /** - * Label for Color Picker color button. - */ - public static final int webviewchromium_color_picker_button_green = 0x01040647; - /** - * Label for Color Picker color button. - */ - public static final int webviewchromium_color_picker_button_magenta = 0x01040648; - /** - * Text for Color Picker button to go to advanced view. [CHAR-LIMIT=20] - */ - public static final int webviewchromium_color_picker_button_more = 0x0104063d; - /** - * Label for Color Picker color button. - */ - public static final int webviewchromium_color_picker_button_red = 0x01040644; - /** - Label for button in Color Picker dialog for user to accept the currently - chosen color. [CHAR-LIMIT=20] - */ - public static final int webviewchromium_color_picker_button_set = 0x01040641; - /** - * Label for Color Picker color button. - */ - public static final int webviewchromium_color_picker_button_white = 0x0104064b; - /** - * Label for Color Picker color button. - */ - public static final int webviewchromium_color_picker_button_yellow = 0x01040649; - /** - * Title of Color Picker dialog. [CHAR-LIMIT=20] - */ - public static final int webviewchromium_color_picker_dialog_title = 0x01040643; - /** - * Label for hue slider in Color Picker. - */ - public static final int webviewchromium_color_picker_hue = 0x0104063e; - /** - * Label for saturation slider in Color Picker. - */ - public static final int webviewchromium_color_picker_saturation = 0x0104063f; - /** - * Label for value slider in Color Picker. - */ - public static final int webviewchromium_color_picker_value = 0x01040640; - /** - * Notification for when copying to the clipboard fails. [CHAR-LIMIT=64] - */ - public static final int webviewchromium_copy_to_clipboard_failure_message = 0x0104064c; - /** - * Label for 'clear' button in date picker dialog, used to replace the contents of a field with the empty string [CHAR-LIMIT=12] - */ - public static final int webviewchromium_date_picker_dialog_clear = 0x01040623; - /** - * Label for 'other' button in date picker dialog and time picker dialog, used to close the list of suggestions and open the the full date/time picker [CHAR-LIMIT=32] - */ - public static final int webviewchromium_date_picker_dialog_other_button_label = 0x01040624; - /** - * Label for 'set' button in date picker dialog, used to replace the contents of a field with the chosen date [CHAR-LIMIT=12] - */ - public static final int webviewchromium_date_picker_dialog_set = 0x01040622; - /** - Date/time picker dialog strings - Title for the date picker dialog, which can be used to choose a date. [CHAR-LIMIT=32] - */ - public static final int webviewchromium_date_picker_dialog_title = 0x01040621; - /** - * Title for the date/time picker dialog, which can be used to choose a date and time. [CHAR-LIMIT=32] - */ - public static final int webviewchromium_date_time_picker_dialog_title = 0x01040625; - /** - * Error shown when the browser is restarted due to low memory during a file picker operation. [CHAR-LIMIT=NONE] - */ - public static final int webviewchromium_low_memory_error = 0x0104064d; - /** - * NO DESCRIPTION [CHAR-LIMIT=16] - */ - public static final int webviewchromium_media_player_error_button = 0x0104063b; - /** - * NO DESCRIPTION [CHAR-LIMIT=100] - */ - public static final int webviewchromium_media_player_error_text_invalid_progressive_playback = 0x01040639; - /** - * NO DESCRIPTION [CHAR-LIMIT=100] - */ - public static final int webviewchromium_media_player_error_text_unknown = 0x0104063a; - /** - Media player - NO DESCRIPTION [CHAR-LIMIT=32] - */ - public static final int webviewchromium_media_player_error_title = 0x01040638; - /** - * NO DESCRIPTION [CHAR-LIMIT=20] - */ - public static final int webviewchromium_media_player_loading_video = 0x0104063c; - /** - * Title for the month picker dialog, which can be used to choose a month. [CHAR-LIMIT=32] - */ - public static final int webviewchromium_month_picker_dialog_title = 0x0104062c; - /** - * Toast when the browser is unable to open a file for upload. [CHAR-LIMIT=32] - */ - public static final int webviewchromium_opening_file_error = 0x0104064e; - /** - Warning shown when the app tries to create a private browsing WebView, - which is not supported. [CHAR-LIMIT=NONE] - */ - public static final int webviewchromium_private_browsing_warning = 0x0104064f; - /** - * Toast notifying the user that we failed to start the webview performance profiler [CHAR-LIMIT=80] - */ - public static final int webviewchromium_profiler_error_toast = 0x01040653; - /** - * Toast notifying the user that we can't start the webview performance profiler because there's no external storage [CHAR-LIMIT=80] - */ - public static final int webviewchromium_profiler_no_storage_toast = 0x01040652; - /** - * Toast notifying the user that the webview performance profiler started collecting data [CHAR-LIMIT=32] - */ - public static final int webviewchromium_profiler_started_toast = 0x01040650; - /** - * Toast notifying the user that the webview performance profiler results were written to a file [CHAR-LIMIT=80] - */ - public static final int webviewchromium_profiler_stopped_toast = 0x01040651; - /** - * Value for AM in AM/PM in the time picker dialog. AM represents the morning (ante-meridiem). [CHAR-LIMIT=4] - */ - public static final int webviewchromium_time_picker_dialog_am = 0x01040627; - /** - * Separator used between hours and minutes in the time pickerr dialog (hh:mm) [CHAR-LIMIT=1] - */ - public static final int webviewchromium_time_picker_dialog_hour_minute_separator = 0x01040629; - /** - * Separator used between minutes and seconds in the time picker dialog (hh:mm:ss) [CHAR-LIMIT=1] - */ - public static final int webviewchromium_time_picker_dialog_minute_second_separator = 0x0104062a; - /** - * Value for PM in AM/PM in the time picker dialog. PM represents the afternoon (post-meridiem). [CHAR-LIMIT=4] - */ - public static final int webviewchromium_time_picker_dialog_pm = 0x01040628; - /** - * Separator used between seconds and subseconds in the time picker dialog (hh:mm:ss.sss) [CHAR-LIMIT=1] - */ - public static final int webviewchromium_time_picker_dialog_second_subsecond_separator = 0x0104062b; - /** - * Title for the time picker dialog, which can be used to choose a time. [CHAR-LIMIT=32] - */ - public static final int webviewchromium_time_picker_dialog_title = 0x01040626; - /** - * Title for the week picker dialog, which can be used to choose a week. [CHAR-LIMIT=32] - */ - public static final int webviewchromium_week_picker_dialog_title = 0x0104062d; - /** - * Title of intent resolver dialog when selecting an application to run. - */ - public static final int whichApplication = 0x010403f6; - /** - * Title of intent resolver dialog when selecting a HOME application to run. - */ - public static final int whichHomeApplication = 0x010403f7; - /** - * Class name for default keyguard appwidget [DO NOT TRANSLATE] - */ - public static final int widget_default_class_name = 0x0104001c; - /** - * Package name for default keyguard appwidget [DO NOT TRANSLATE] - */ - public static final int widget_default_package_name = 0x0104001b; - /** - * A notification is shown when a wifi captive portal network is detected. This is the notification's title. - */ - public static final int wifi_available_sign_in = 0x01040431; - /** - * Message of the notification to indicate an active wifi display connection. [CHAR LIMIT=80] - */ - public static final int wifi_display_notification_connected_message = 0x0104055a; - /** - * Title of the notification to indicate an active wifi display connection. [CHAR LIMIT=50] - */ - public static final int wifi_display_notification_connected_title = 0x01040559; - /** - * Message of the notification to indicate the process of connecting to a wifi display. [CHAR LIMIT=80] - */ - public static final int wifi_display_notification_connecting_message = 0x01040558; - /** - * Title of the notification to indicate the process of connecting to a wifi display. [CHAR LIMIT=50] - */ - public static final int wifi_display_notification_connecting_title = 0x01040557; - /** - * Label of a button to disconnect an active wifi display connection. [CHAR LIMIT=25] - */ - public static final int wifi_display_notification_disconnect = 0x0104055b; - public static final int wifi_p2p_dialog_title = 0x01040437; - public static final int wifi_p2p_enabled_notification_message = 0x0104043b; - public static final int wifi_p2p_enabled_notification_title = 0x0104043a; - public static final int wifi_p2p_failed_message = 0x01040439; - public static final int wifi_p2p_frequency_conflict_message = 0x01040444; - public static final int wifi_p2p_from_message = 0x01040440; - public static final int wifi_p2p_invitation_sent_title = 0x0104043e; - public static final int wifi_p2p_invitation_to_connect_title = 0x0104043f; - public static final int wifi_p2p_show_pin_message = 0x01040443; - public static final int wifi_p2p_to_message = 0x01040441; - public static final int wifi_p2p_turnon_message = 0x01040438; - /** - * Do not translate. Default access point SSID used for tethering - */ - public static final int wifi_tether_configure_ssid_default = 0x01040436; - /** - * A notification is shown when a user's selected SSID is later disabled due to connectivity problems. This is the notification's title / ticker. - */ - public static final int wifi_watchdog_network_disabled = 0x01040434; - /** - * A notification is shown when a user's selected SSID is later disabled due to connectivity problems. The complete alert msg is: + this string, i.e. "Linksys has a poor internet connection" - */ - public static final int wifi_watchdog_network_disabled_detailed = 0x01040435; - /** - * Description of a wireless display route. [CHAR LIMIT=50] - */ - public static final int wireless_display_route_description = 0x01040546; - /** - * Write fail reason: printing was cancelled.[CHAR LIMIT=none] - */ - public static final int write_fail_reason_cancelled = 0x010405dc; - /** - * Write fail reason: couldn't write the printed content. [CHAR LIMIT=none] - */ - public static final int write_fail_reason_cannot_write = 0x010405dd; - /** - * Preference framework strings. - */ - public static final int yes = 0x01040013; - } - public static final class style { - /** - Style to apply on top of a wallpaper settings theme when it is being - shown on top of the real wallpaper - */ - public static final int ActiveWallpaperSettings = 0x010302fb; - /** - * Base style for animations. This style specifies no animations. - */ - public static final int Animation = 0x01030000; - /** - * Standard animations for a full-screen window or activity. - */ - public static final int Animation_Activity = 0x01030001; - /** - * Standard animations for a non-full-screen window or activity. - */ - public static final int Animation_Dialog = 0x01030002; - /** - * Window animations for screen savers. {@hide} - */ - public static final int Animation_Dream = 0x010301f9; - public static final int Animation_DropDownDown = 0x010301ef; - public static final int Animation_DropDownUp = 0x010301f0; - /** - * Window animations that are applied to input method overlay windows. - */ - public static final int Animation_InputMethod = 0x01030056; - /** - * Special optional fancy IM animations. @hide - */ - public static final int Animation_InputMethodFancy = 0x010301f1; - /** - * Standard animations for a non-full-screen window or activity. - */ - public static final int Animation_LockScreen = 0x010301ea; - /** - * A special animation value used internally for popup windows. - */ - public static final int Animation_PopupWindow = 0x010301f6; - /** - A special animation we can use for recent applications, - for devices that can support it (do alpha transformations). - */ - public static final int Animation_RecentApplications = 0x010301f5; - public static final int Animation_Toast = 0x01030004; - /** - Standard animations for a translucent window or activity. This - style is not used by default for the translucent theme - (since translucent activities are a special case that have no - clear UI paradigm), but you can make your own specialized theme - with this animation style if you would like to have the standard - platform transition animation. - */ - public static final int Animation_Translucent = 0x01030003; - public static final int Animation_TypingFilter = 0x010301ed; - public static final int Animation_TypingFilterRestore = 0x010301ee; - /** - * Standard animations for wallpapers. - */ - public static final int Animation_Wallpaper = 0x010301f4; - /** - * Window animations that are applied to the zoom buttons overlay window. - */ - public static final int Animation_ZoomButtons = 0x010301f3; - /** - Style you can use with a container (typically a horizontal - LinearLayout) to get the standard "button bar" background and - spacing. @hide - */ - public static final int ButtonBar = 0x01030058; - /** - * Other Styles - */ - public static final int DeviceDefault_ButtonBar = 0x010301cf; - public static final int DeviceDefault_ButtonBar_AlertDialog = 0x010301d0; - public static final int DeviceDefault_Light_ButtonBar = 0x010301d2; - public static final int DeviceDefault_Light_ButtonBar_AlertDialog = 0x010301d3; - public static final int DeviceDefault_Light_SegmentedButton = 0x010301d4; - public static final int DeviceDefault_SegmentedButton = 0x010301d1; - public static final int Holo_ButtonBar = 0x010300e5; - public static final int Holo_ButtonBar_AlertDialog = 0x010300e7; - public static final int Holo_Light_ButtonBar = 0x010300e6; - public static final int Holo_Light_ButtonBar_AlertDialog = 0x010300e8; - public static final int Holo_Light_SegmentedButton = 0x010300ea; - public static final int Holo_SegmentedButton = 0x010300e9; - public static final int MediaButton = 0x01030037; - public static final int MediaButton_Ffwd = 0x0103003b; - public static final int MediaButton_Next = 0x01030039; - public static final int MediaButton_Pause = 0x0103003d; - public static final int MediaButton_Play = 0x0103003a; - public static final int MediaButton_Previous = 0x01030038; - public static final int MediaButton_Rew = 0x0103003c; - /** - Style to apply on top of a wallpaper settings theme when it is being - shown on top of the real wallpaper - */ - public static final int PreviewWallpaperSettings = 0x010302fc; - public static final int TextAppearance = 0x0103003e; - /** - * Text Appearance Styles - */ - public static final int TextAppearance_DeviceDefault = 0x010301ad; - public static final int TextAppearance_DeviceDefault_DialogWindowTitle = 0x010301b8; - public static final int TextAppearance_DeviceDefault_Inverse = 0x010301ae; - public static final int TextAppearance_DeviceDefault_Large = 0x010301af; - public static final int TextAppearance_DeviceDefault_Large_Inverse = 0x010301b0; - public static final int TextAppearance_DeviceDefault_Medium = 0x010301b1; - public static final int TextAppearance_DeviceDefault_Medium_Inverse = 0x010301b2; - public static final int TextAppearance_DeviceDefault_SearchResult_Subtitle = 0x010301b6; - public static final int TextAppearance_DeviceDefault_SearchResult_Title = 0x010301b5; - public static final int TextAppearance_DeviceDefault_Small = 0x010301b3; - public static final int TextAppearance_DeviceDefault_Small_Inverse = 0x010301b4; - public static final int TextAppearance_DeviceDefault_Widget = 0x010301b9; - public static final int TextAppearance_DeviceDefault_Widget_ActionBar_Menu = 0x010301ce; - public static final int TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle = 0x010301c7; - public static final int TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle_Inverse = 0x010301cb; - public static final int TextAppearance_DeviceDefault_Widget_ActionBar_Title = 0x010301c6; - public static final int TextAppearance_DeviceDefault_Widget_ActionBar_Title_Inverse = 0x010301ca; - public static final int TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle = 0x010301c9; - public static final int TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle_Inverse = 0x010301cd; - public static final int TextAppearance_DeviceDefault_Widget_ActionMode_Title = 0x010301c8; - public static final int TextAppearance_DeviceDefault_Widget_ActionMode_Title_Inverse = 0x010301cc; - public static final int TextAppearance_DeviceDefault_Widget_Button = 0x010301ba; - public static final int TextAppearance_DeviceDefault_Widget_DropDownHint = 0x010301bf; - public static final int TextAppearance_DeviceDefault_Widget_DropDownItem = 0x010301c0; - public static final int TextAppearance_DeviceDefault_Widget_EditText = 0x010301c2; - public static final int TextAppearance_DeviceDefault_Widget_IconMenu_Item = 0x010301bb; - public static final int TextAppearance_DeviceDefault_Widget_PopupMenu = 0x010301c3; - public static final int TextAppearance_DeviceDefault_Widget_PopupMenu_Large = 0x010301c4; - public static final int TextAppearance_DeviceDefault_Widget_PopupMenu_Small = 0x010301c5; - public static final int TextAppearance_DeviceDefault_Widget_TabWidget = 0x010301bc; - public static final int TextAppearance_DeviceDefault_Widget_TextView = 0x010301bd; - public static final int TextAppearance_DeviceDefault_Widget_TextView_PopupMenu = 0x010301be; - public static final int TextAppearance_DeviceDefault_Widget_TextView_SpinnerItem = 0x010301c1; - public static final int TextAppearance_DeviceDefault_WindowTitle = 0x010301b7; - public static final int TextAppearance_DialogWindowTitle = 0x01030041; - /** - Begin Holo theme styles - Text Styles - */ - public static final int TextAppearance_Holo = 0x010300fb; - public static final int TextAppearance_Holo_DialogWindowTitle = 0x01030117; - public static final int TextAppearance_Holo_Inverse = 0x010300fc; - public static final int TextAppearance_Holo_Large = 0x010300fd; - public static final int TextAppearance_Holo_Large_Inverse = 0x010300fe; - public static final int TextAppearance_Holo_Medium = 0x010300ff; - public static final int TextAppearance_Holo_Medium_Inverse = 0x01030100; - public static final int TextAppearance_Holo_SearchResult_Subtitle = 0x01030104; - public static final int TextAppearance_Holo_SearchResult_Title = 0x01030103; - public static final int TextAppearance_Holo_Small = 0x01030101; - public static final int TextAppearance_Holo_Small_Inverse = 0x01030102; - public static final int TextAppearance_Holo_Widget = 0x01030105; - public static final int TextAppearance_Holo_Widget_ActionBar_Menu = 0x01030120; - public static final int TextAppearance_Holo_Widget_ActionBar_Subtitle = 0x01030113; - public static final int TextAppearance_Holo_Widget_ActionBar_Subtitle_Inverse = 0x0103011d; - public static final int TextAppearance_Holo_Widget_ActionBar_Title = 0x01030112; - public static final int TextAppearance_Holo_Widget_ActionBar_Title_Inverse = 0x0103011c; - public static final int TextAppearance_Holo_Widget_ActionMode_Subtitle = 0x01030115; - public static final int TextAppearance_Holo_Widget_ActionMode_Subtitle_Inverse = 0x0103011f; - public static final int TextAppearance_Holo_Widget_ActionMode_Title = 0x01030114; - public static final int TextAppearance_Holo_Widget_ActionMode_Title_Inverse = 0x0103011e; - public static final int TextAppearance_Holo_Widget_Button = 0x01030106; - public static final int TextAppearance_Holo_Widget_DropDownHint = 0x0103010b; - public static final int TextAppearance_Holo_Widget_DropDownItem = 0x0103010c; - public static final int TextAppearance_Holo_Widget_EditText = 0x0103010e; - public static final int TextAppearance_Holo_Widget_IconMenu_Item = 0x01030107; - public static final int TextAppearance_Holo_Widget_PopupMenu = 0x0103010f; - public static final int TextAppearance_Holo_Widget_PopupMenu_Large = 0x01030110; - public static final int TextAppearance_Holo_Widget_PopupMenu_Small = 0x01030111; - /** - This style is for smaller screens; values-xlarge defines a version - for larger screens. - */ - public static final int TextAppearance_Holo_Widget_TabWidget = 0x01030108; - public static final int TextAppearance_Holo_Widget_TextView = 0x01030109; - public static final int TextAppearance_Holo_Widget_TextView_PopupMenu = 0x0103010a; - public static final int TextAppearance_Holo_Widget_TextView_SpinnerItem = 0x0103010d; - public static final int TextAppearance_Holo_WindowTitle = 0x01030116; - public static final int TextAppearance_Inverse = 0x0103003f; - public static final int TextAppearance_Large = 0x01030042; - public static final int TextAppearance_Large_Inverse = 0x01030043; - public static final int TextAppearance_Medium = 0x01030044; - public static final int TextAppearance_Medium_Inverse = 0x01030045; - public static final int TextAppearance_NumPadKey = 0x010302b0; - public static final int TextAppearance_NumPadKey_Klondike = 0x010302b1; - /** - * @hide - */ - public static final int TextAppearance_SearchResult_Subtitle = 0x01030064; - /** - * @hide - */ - public static final int TextAppearance_SearchResult_Title = 0x01030063; - /** - * @hide - */ - public static final int TextAppearance_SlidingTabActive = 0x0103021f; - /** - * @hide - */ - public static final int TextAppearance_SlidingTabNormal = 0x0103021e; - public static final int TextAppearance_Small = 0x01030046; - public static final int TextAppearance_Small_Inverse = 0x01030047; - /** - * Notification content styles - */ - public static final int TextAppearance_StatusBar_EventContent = 0x01030067; - public static final int TextAppearance_StatusBar_EventContent_Title = 0x01030068; - public static final int TextAppearance_StatusBar_Icon = 0x01030066; - public static final int TextAppearance_StatusBar_Title = 0x01030065; - public static final int TextAppearance_SuggestionHighlight = 0x01030118; - public static final int TextAppearance_Theme = 0x01030040; - public static final int TextAppearance_Theme_Dialog = 0x01030048; - public static final int TextAppearance_Widget = 0x01030049; - public static final int TextAppearance_Widget_Button = 0x0103004a; - public static final int TextAppearance_Widget_DropDownHint = 0x01030050; - public static final int TextAppearance_Widget_DropDownItem = 0x01030051; - public static final int TextAppearance_Widget_EditText = 0x0103004c; - public static final int TextAppearance_Widget_IconMenu_Item = 0x0103004b; - public static final int TextAppearance_Widget_PopupMenu_Large = 0x01030080; - public static final int TextAppearance_Widget_PopupMenu_Small = 0x01030081; - public static final int TextAppearance_Widget_TabWidget = 0x0103004d; - public static final int TextAppearance_Widget_TextView = 0x0103004e; - public static final int TextAppearance_Widget_TextView_PopupMenu = 0x0103004f; - public static final int TextAppearance_Widget_TextView_SpinnerItem = 0x01030052; - public static final int TextAppearance_WindowTitle = 0x01030053; - /** - The default theme for apps on API level 10 and lower. This is the theme used for - activities that have not explicitly set their own theme. -

You can count on this being a dark - background with light text on top, but should try to make no - other assumptions about its appearance. In particular, the text - inside of widgets using this theme may be completely different, - with the widget container being a light color and the text on top - of it a dark color. -

If you're developing for API level 11 and higher, you should instead use {@link - #Theme_Holo} or {@link #Theme_DeviceDefault}.

- - */ - public static final int Theme = 0x01030005; - /** - Variant on {@link #Theme} that ensures the background is - completely black. This is useful for things like image viewers and - media players. If you want the normal (dark background) theme - do not use this, use {@link #Theme}. - */ - public static final int Theme_Black = 0x01030008; - /** - * Variant of {@link #Theme_Black} with no title bar - */ - public static final int Theme_Black_NoTitleBar = 0x01030009; - /** - Variant of {@link #Theme_Black} that has no title bar and - no status bar. This theme - sets {@link android.R.attr#windowFullscreen} to true. - */ - public static final int Theme_Black_NoTitleBar_Fullscreen = 0x0103000a; - /** - The default theme for apps that target API level 14 and higher. -

The DeviceDefault themes are aliases for a specific device’s native look and feel. The - DeviceDefault theme family and widget style family offer ways for you to target your app - to a device’s native theme with all device customizations intact.

-

For example, when you set your app's {@code targetSdkVersion} to 14 or higher, this - theme is applied to your application by default. As such, your app might appear with the - {@link #Theme_Holo Holo} styles on one device, but with a different set of styles on - another device. This is great if you want your app to fit with the device's native look and - feel. If, however, you prefer to keep your UI style the same across all devices, you should - apply a specific theme such as {@link #Theme_Holo Holo} or one of your own design. For more - information, read Holo - Everywhere.

-

Styles used by the DeviceDefault theme are named using the convention - Type.DeviceDefault.Etc (for example, {@code Widget.DeviceDefault.Button} and - {@code TextAppearance.DeviceDefault.Widget.PopupMenu.Large}).

- - */ - public static final int Theme_DeviceDefault = 0x01030128; - /** - DeviceDefault theme for dialog windows and activities. This changes the window to be - floating (not fill the entire screen), and puts a frame around its contents. You can set this - theme on an activity if you would like to make an activity that looks like a Dialog. - */ - public static final int Theme_DeviceDefault_Dialog = 0x0103012e; - public static final int Theme_DeviceDefault_Dialog_Alert = 0x0103031a; - /** - Variant of {@link #Theme_DeviceDefault_Dialog} that has a nice minimum width for a - regular dialog. - */ - public static final int Theme_DeviceDefault_Dialog_MinWidth = 0x0103012f; - /** - * Variant of {@link #Theme_DeviceDefault_Dialog} without an action bar - */ - public static final int Theme_DeviceDefault_Dialog_NoActionBar = 0x01030130; - /** - Variant of {@link #Theme_DeviceDefault_Dialog_NoActionBar} that has a nice minimum width - for a regular dialog. - */ - public static final int Theme_DeviceDefault_Dialog_NoActionBar_MinWidth = 0x01030131; - public static final int Theme_DeviceDefault_Dialog_NoFrame = 0x0103031e; - /** - DeviceDefault theme for a window that will be displayed either full-screen on smaller - screens (small, normal) or as a dialog on larger screens (large, xlarge). - */ - public static final int Theme_DeviceDefault_DialogWhenLarge = 0x01030136; - /** - DeviceDefault theme for a window without an action bar that will be displayed either - full-screen on smaller screens (small, normal) or as a dialog on larger screens (large, - xlarge). - */ - public static final int Theme_DeviceDefault_DialogWhenLarge_NoActionBar = 0x01030137; - /** - DeviceDefault style for input methods, which is used by the - {@link android.inputmethodservice.InputMethodService} class. - */ - public static final int Theme_DeviceDefault_InputMethod = 0x0103013e; - /** - * Variant of {@link #Theme_DeviceDefault} with a light-colored style - */ - public static final int Theme_DeviceDefault_Light = 0x0103012b; - /** - Variant of the DeviceDefault (light) theme that has a solid (opaque) action bar with an - inverse color profile. - */ - public static final int Theme_DeviceDefault_Light_DarkActionBar = 0x0103013f; - /** - DeviceDefault light theme for dialog windows and activities. This changes the window to be - floating (not fill the entire screen), and puts a frame around its contents. You can set this - theme on an activity if you would like to make an activity that looks like a Dialog. - */ - public static final int Theme_DeviceDefault_Light_Dialog = 0x01030132; - public static final int Theme_DeviceDefault_Light_Dialog_Alert = 0x0103031b; - /** - Variant of {@link #Theme_DeviceDefault_Light_Dialog} that has a nice minimum width for a - regular dialog. - */ - public static final int Theme_DeviceDefault_Light_Dialog_MinWidth = 0x01030133; - /** - * Variant of {@link #Theme_DeviceDefault_Light_Dialog} without an action bar - */ - public static final int Theme_DeviceDefault_Light_Dialog_NoActionBar = 0x01030134; - /** - Variant of {@link #Theme_DeviceDefault_Light_Dialog_NoActionBar} that has a nice minimum - width for a regular dialog. - */ - public static final int Theme_DeviceDefault_Light_Dialog_NoActionBar_MinWidth = 0x01030135; - /** - DeviceDefault light theme for a window that will be displayed either full-screen on smaller - screens (small, normal) or as a dialog on larger screens (large, xlarge). - */ - public static final int Theme_DeviceDefault_Light_DialogWhenLarge = 0x01030138; - /** - DeviceDefault light theme for a window without an action bar that will be displayed either - full-screen on smaller screens (small, normal) or as a dialog on larger screens (large, - xlarge). - */ - public static final int Theme_DeviceDefault_Light_DialogWhenLarge_NoActionBar = 0x01030139; - /** - * Variant of {@link #Theme_DeviceDefault_Light} with no action bar - */ - public static final int Theme_DeviceDefault_Light_NoActionBar = 0x0103012c; - /** - Variant of {@link #Theme_DeviceDefault_Light} with no action bar and no status bar. - This theme sets {@link android.R.attr#windowFullscreen} to true. - */ - public static final int Theme_DeviceDefault_Light_NoActionBar_Fullscreen = 0x0103012d; - /** - Variant of {@link #Theme_DeviceDefault_Light} with no action bar and no status bar - and extending in to overscan region. This theme - sets {@link android.R.attr#windowFullscreen} and {@link android.R.attr#windowOverscan} - to true. - */ - public static final int Theme_DeviceDefault_Light_NoActionBar_Overscan = 0x010301e0; - /** - Variant of {@link #Theme_DeviceDefault_Light} that has no title bar and translucent - system decor. This theme sets {@link android.R.attr#windowTranslucentStatus} and - {@link android.R.attr#windowTranslucentNavigation} to true. - */ - public static final int Theme_DeviceDefault_Light_NoActionBar_TranslucentDecor = 0x010301e4; - /** - DeviceDefault light theme for panel windows. This removes all extraneous window - decorations, so you basically have an empty rectangle in which to place your content. It makes - the window floating, with a transparent background, and turns off dimming behind the window. - */ - public static final int Theme_DeviceDefault_Light_Panel = 0x0103013b; - /** - * Variant of {@link #Theme_DeviceDefault} with no action bar - */ - public static final int Theme_DeviceDefault_NoActionBar = 0x01030129; - /** - Variant of {@link #Theme_DeviceDefault} with no action bar and no status bar. This theme - sets {@link android.R.attr#windowFullscreen} to true. - */ - public static final int Theme_DeviceDefault_NoActionBar_Fullscreen = 0x0103012a; - /** - Variant of {@link #Theme_DeviceDefault} with no action bar and no status bar and - extending in to overscan region. This theme - sets {@link android.R.attr#windowFullscreen} and {@link android.R.attr#windowOverscan} - to true. - */ - public static final int Theme_DeviceDefault_NoActionBar_Overscan = 0x010301df; - /** - Variant of {@link #Theme_DeviceDefault} that has no title bar and translucent - system decor. This theme sets {@link android.R.attr#windowTranslucentStatus} and - {@link android.R.attr#windowTranslucentNavigation} to true. - */ - public static final int Theme_DeviceDefault_NoActionBar_TranslucentDecor = 0x010301e3; - /** - DeviceDefault theme for panel windows. This removes all extraneous window - decorations, so you basically have an empty rectangle in which to place your content. It makes - the window floating, with a transparent background, and turns off dimming behind the window. - */ - public static final int Theme_DeviceDefault_Panel = 0x0103013a; - /** - DeviceDefault theme for windows that want to have the user's selected wallpaper appear - behind them. - */ - public static final int Theme_DeviceDefault_Wallpaper = 0x0103013c; - /** - DeviceDefault theme for windows that want to have the user's selected wallpaper appear - behind them and without an action bar. - */ - public static final int Theme_DeviceDefault_Wallpaper_NoTitleBar = 0x0103013d; - /** - Default theme for dialog windows and activities (on API level 10 and lower), - which is used by the - {@link android.app.Dialog} class. This changes the window to be - floating (not fill the entire screen), and puts a frame around its - contents. You can set this theme on an activity if you would like to - make an activity that looks like a Dialog. - */ - public static final int Theme_Dialog = 0x0103000b; - /** - Default theme for alert dialog windows (on API level 10 and lower), which is used by the - {@link android.app.AlertDialog} class. This is basically a dialog - but sets the background to empty so it can do two-tone backgrounds. - */ - public static final int Theme_Dialog_Alert = 0x010302fe; - /** - * @hide - */ - public static final int Theme_Dialog_AppError = 0x01030307; - /** - Special theme for the recent apps dialog, to allow customization - with overlays. - */ - public static final int Theme_Dialog_RecentApplications = 0x01030308; - public static final int Theme_ExpandedMenu = 0x01030304; - /** - Honeycomb holographic theme (dark version). -

This is the default system theme for apps that target API level 11 - 13. Starting - with API level 14, the default system theme is supplied by {@link #Theme_DeviceDefault}, - which might apply a different style on different devices. If you want to ensure that your - app consistently uses the Holo theme at all times, you must explicitly declare it in your - manifest. For example, {@code <application android:theme="@android:style/Theme.Holo">}. - For more information, read Holo - Everywhere.

-

The widgets in the holographic theme are translucent on their background, so - applications must ensure that any background they use with this theme is itself - dark; otherwise, it will be difficult to see the widgets. This UI style also includes a - full action bar by default.

- -

Styles used by the Holo theme are named using the convention Type.Holo.Etc - (for example, {@code Widget.Holo.Button} and {@code - TextAppearance.Holo.Widget.PopupMenu.Large}). - Specific resources used by Holo are named using the convention @type/foo_bar_baz_holo - with trailing _dark or _light specifiers if they are not shared between both light and - dark versions of the theme. - */ - public static final int Theme_Holo = 0x0103006b; - /** - Holo theme for dialog windows and activities, which is used by the - {@link android.app.Dialog} class. This changes the window to be - floating (not fill the entire screen), and puts a frame around its - contents. You can set this theme on an activity if you would like to - make an activity that looks like a Dialog. - This is the default Dialog theme for applications targeting Honeycomb - or newer. - */ - public static final int Theme_Holo_Dialog = 0x0103006f; - /** - Holo theme for alert dialog windows, which is used by the - {@link android.app.AlertDialog} class. This is basically a dialog - but sets the background to empty so it can do two-tone backgrounds. - For applications targeting Honeycomb or newer, this is the default - AlertDialog theme. - */ - public static final int Theme_Holo_Dialog_Alert = 0x0103030e; - /** - Variant of Theme.Holo.Dialog that has a nice minimum width for - a regular dialog. - */ - public static final int Theme_Holo_Dialog_MinWidth = 0x01030070; - /** - * Variant of Theme.Holo.Dialog that does not include a title bar. - */ - public static final int Theme_Holo_Dialog_NoActionBar = 0x01030071; - /** - Variant of Theme.Holo.Dialog.NoActionBar that has a nice minimum width for - a regular dialog. - */ - public static final int Theme_Holo_Dialog_NoActionBar_MinWidth = 0x01030072; - /** - Theme for a window that will be displayed either full-screen on - smaller screens (small, normal) or as a dialog on larger screens - (large, xlarge). - */ - public static final int Theme_Holo_DialogWhenLarge = 0x01030077; - /** - Theme for a window without a title bar that will be displayed either - full-screen on smaller screens (small, normal) or as a dialog on larger screens - (large, xlarge). - */ - public static final int Theme_Holo_DialogWhenLarge_NoActionBar = 0x01030078; - /** - Default theme for holo style input methods, which is used by the - {@link android.inputmethodservice.InputMethodService} class. - this inherits from Theme.Panel, but sets up IME appropriate animations - and a few custom attributes. - */ - public static final int Theme_Holo_InputMethod = 0x0103007f; - /** - Honeycomb holographic theme (light version). The widgets in the - holographic theme are translucent on their brackground, so applications - must ensure that any background they use with this theme is itself - light; otherwise, it will be difficult to see the widgets. This - UI style also includes a full action bar by default. - */ - public static final int Theme_Holo_Light = 0x0103006e; - /** - Variant of the holographic (light) theme that has a solid (opaque) action bar - with an inverse color profile. The dark action bar sharply stands out against - the light content. - */ - public static final int Theme_Holo_Light_DarkActionBar = 0x01030119; - /** - Light holo dialog themes - Holo light theme for dialog windows and activities, which is used by the - {@link android.app.Dialog} class. This changes the window to be - floating (not fill the entire screen), and puts a frame around its - contents. You can set this theme on an activity if you would like to - make an activity that looks like a Dialog. - This is the default Dialog theme for applications targeting Honeycomb - or newer. - */ - public static final int Theme_Holo_Light_Dialog = 0x01030073; - /** - Holo light theme for alert dialog windows, which is used by the - {@link android.app.AlertDialog} class. This is basically a dialog - but sets the background to empty so it can do two-tone backgrounds. - For applications targeting Honeycomb or newer, this is the default - AlertDialog theme. - */ - public static final int Theme_Holo_Light_Dialog_Alert = 0x01030312; - /** - Variant of Theme.Holo.Light.Dialog that has a nice minimum width for - a regular dialog. - */ - public static final int Theme_Holo_Light_Dialog_MinWidth = 0x01030074; - /** - * Variant of Theme.Holo.Light.Dialog that does not include a title bar. - */ - public static final int Theme_Holo_Light_Dialog_NoActionBar = 0x01030075; - /** - Variant of Theme.Holo.Light.Dialog.NoActionBar that has a nice minimum width for - a regular dialog. - */ - public static final int Theme_Holo_Light_Dialog_NoActionBar_MinWidth = 0x01030076; - /** - Theme for a window that will be displayed either full-screen on - smaller screens (small, normal) or as a dialog on larger screens - (large, xlarge). - */ - public static final int Theme_Holo_Light_DialogWhenLarge = 0x01030079; - /** - Theme for a window without an action bar that will be displayed either full-screen - on smaller screens (small, normal) or as a dialog on larger screens - (large, xlarge). - */ - public static final int Theme_Holo_Light_DialogWhenLarge_NoActionBar = 0x0103007a; - /** - * Variant of the holographic (light) theme with no action bar. - */ - public static final int Theme_Holo_Light_NoActionBar = 0x010300f0; - /** - Variant of the holographic (light) theme that has no title bar and fills - the entire screen. This theme - sets {@link android.R.attr#windowFullscreen} to true. - */ - public static final int Theme_Holo_Light_NoActionBar_Fullscreen = 0x010300f1; - /** - Variant of the holographic (light) theme that has no title bar and fills - the entire screen and extends into the display overscan region. This theme - sets {@link android.R.attr#windowFullscreen} and {@link android.R.attr#windowOverscan} - to true. - */ - public static final int Theme_Holo_Light_NoActionBar_Overscan = 0x010301de; - /** - Variant of the holographic (light) theme that has no title bar and translucent - system decor. This theme sets {@link android.R.attr#windowTranslucentStatus} and - {@link android.R.attr#windowTranslucentNavigation} to true. - */ - public static final int Theme_Holo_Light_NoActionBar_TranslucentDecor = 0x010301e2; - /** - Default holo light theme for panel windows. This removes all extraneous - window decorations, so you basically have an empty rectangle in which - to place your content. It makes the window floating, with a transparent - background, and turns off dimming behind the window. - */ - public static final int Theme_Holo_Light_Panel = 0x0103007c; - /** - * Variant of the holographic (dark) theme with no action bar. - */ - public static final int Theme_Holo_NoActionBar = 0x0103006c; - /** - Variant of the holographic (dark) theme that has no title bar and fills - the entire screen. This theme - sets {@link android.R.attr#windowFullscreen} to true. - */ - public static final int Theme_Holo_NoActionBar_Fullscreen = 0x0103006d; - /** - Variant of the holographic (dark) theme that has no title bar and fills - the entire screen and extends into the display overscan region. This theme - sets {@link android.R.attr#windowFullscreen} and {@link android.R.attr#windowOverscan} - to true. - */ - public static final int Theme_Holo_NoActionBar_Overscan = 0x010301dd; - /** - Variant of the holographic (dark) theme that has no title bar and translucent - system decor. This theme sets {@link android.R.attr#windowTranslucentStatus} and - {@link android.R.attr#windowTranslucentNavigation} to true. - */ - public static final int Theme_Holo_NoActionBar_TranslucentDecor = 0x010301e1; - /** - Default holo dark theme for panel windows. This removes all extraneous - window decorations, so you basically have an empty rectangle in which - to place your content. It makes the window floating, with a transparent - background, and turns off dimming behind the window. - */ - public static final int Theme_Holo_Panel = 0x0103007b; - /** - Default holographic (dark) for windows that want to have the user's selected - wallpaper appear behind them. - */ - public static final int Theme_Holo_Wallpaper = 0x0103007d; - /** - Default holographic (dark) for windows that want to have the user's selected - wallpaper appear behind them and without an action bar. - */ - public static final int Theme_Holo_Wallpaper_NoTitleBar = 0x0103007e; - public static final int Theme_IconMenu = 0x01030303; - /** - Default theme for input methods (on API level 10 and lower), which is used by the - {@link android.inputmethodservice.InputMethodService} class. - this inherits from Theme.Panel, but sets up IME appropriate animations - and a few custom attributes. - */ - public static final int Theme_InputMethod = 0x01030054; - /** - Theme for a light background with dark text on top. Set your activity - to this theme if you would like such an appearance. As with the - default theme, you should try to assume little more than that the - background will be a light color. -

This is designed for API level 10 and lower.

- */ - public static final int Theme_Light = 0x0103000c; - /** - * Variant of {@link #Theme_Light} with no title bar - */ - public static final int Theme_Light_NoTitleBar = 0x0103000d; - /** - Variant of {@link #Theme_Light} that has no title bar and - no status bar. This theme - sets {@link android.R.attr#windowFullscreen} to true. - */ - public static final int Theme_Light_NoTitleBar_Fullscreen = 0x0103000e; - /** - Default light theme for panel windows (on API level 10 and lower). This removes all - extraneous window decorations, so you basically have an empty rectangle in which - to place your content. It makes the window floating, with a transparent - background, and turns off dimming behind the window. - */ - public static final int Theme_Light_Panel = 0x0103005a; - /** - Theme for a wallpaper's setting activity, which is designed to be a transparent - background with a light shade, so the previous Activity is visible in the background. - */ - public static final int Theme_Light_WallpaperSettings = 0x01030062; - /** - Default theme for activities that don't actually display a UI; that - is, they finish themselves before being resumed. - */ - public static final int Theme_NoDisplay = 0x01030055; - /** - * Variant of {@link #Theme} with no title bar - */ - public static final int Theme_NoTitleBar = 0x01030006; - /** - Variant of {@link #Theme} that has no title bar and no status bar. This theme - sets {@link android.R.attr#windowFullscreen} to true. - */ - public static final int Theme_NoTitleBar_Fullscreen = 0x01030007; - /** - No title bar, but Action Mode bars will overlay application content - instead of pushing it down to make room. - */ - public static final int Theme_NoTitleBar_OverlayActionModes = 0x0103006a; - /** - Default dark theme for panel windows (on API level 10 and lower). This removes all - extraneous window decorations, so you basically have an empty rectangle in which - to place your content. It makes the window floating, with a transparent - background, and turns off dimming behind the window. - */ - public static final int Theme_Panel = 0x01030059; - public static final int Theme_Panel_Volume = 0x0103030a; - /** - * Default theme for window that looks like a toast. - */ - public static final int Theme_Toast = 0x01030309; - /** - Theme for translucent activities (on API level 10 and lower). That is, windows - that allow you to see through them to the windows behind. This sets up the translucent - flag and appropriate animations for your windows. - */ - public static final int Theme_Translucent = 0x0103000f; - /** - * Variant of {@link #Theme_Translucent} with no title bar - */ - public static final int Theme_Translucent_NoTitleBar = 0x01030010; - /** - Variant of {@link #Theme_Translucent} that has no title bar and - no status bar - */ - public static final int Theme_Translucent_NoTitleBar_Fullscreen = 0x01030011; - /** - Theme for windows that want to have the user's selected - wallpaper appear behind them (for API level 10 and lower). - */ - public static final int Theme_Wallpaper = 0x0103005e; - /** - * Variant of {@link #Theme_Wallpaper} that has no title bar - */ - public static final int Theme_Wallpaper_NoTitleBar = 0x0103005f; - /** - Variant of {@link #Theme_Wallpaper} that - has no title bar or status bar. - */ - public static final int Theme_Wallpaper_NoTitleBar_Fullscreen = 0x01030060; - /** - Theme for a wallpaper's setting activity, which is designed to be a transparent - background with a dark shade, so the previous Activity is visible in the background. - */ - public static final int Theme_WallpaperSettings = 0x01030061; - /** - * Default theme with an Action Bar. - */ - public static final int Theme_WithActionBar = 0x01030069; - /** - * Widget Styles - */ - public static final int Widget = 0x01030012; - public static final int Widget_AbsListView = 0x01030013; - public static final int Widget_ActionBar = 0x01030082; - public static final int Widget_ActionBar_TabBar = 0x010300f4; - public static final int Widget_ActionBar_TabText = 0x010300f3; - public static final int Widget_ActionBar_TabView = 0x010300f2; - public static final int Widget_ActionButton = 0x01030084; - public static final int Widget_ActionButton_CloseMode = 0x01030088; - public static final int Widget_ActionButton_Overflow = 0x01030087; - public static final int Widget_AutoCompleteTextView = 0x01030027; - public static final int Widget_Button = 0x01030014; - public static final int Widget_Button_Inset = 0x01030015; - /** - * Keyguard PIN pad styles - */ - public static final int Widget_Button_NumPadKey = 0x010302af; - public static final int Widget_Button_Small = 0x01030016; - public static final int Widget_Button_Toggle = 0x01030017; - public static final int Widget_CalendarView = 0x010300eb; - public static final int Widget_CompoundButton = 0x01030018; - public static final int Widget_CompoundButton_CheckBox = 0x01030019; - public static final int Widget_CompoundButton_RadioButton = 0x0103001a; - public static final int Widget_CompoundButton_Star = 0x0103001b; - public static final int Widget_DatePicker = 0x010300ee; - /** - * Widget Styles - */ - public static final int Widget_DeviceDefault = 0x01030140; - public static final int Widget_DeviceDefault_ActionBar = 0x0103016b; - public static final int Widget_DeviceDefault_ActionBar_Solid = 0x01030173; - public static final int Widget_DeviceDefault_ActionBar_TabBar = 0x01030172; - public static final int Widget_DeviceDefault_ActionBar_TabText = 0x01030171; - public static final int Widget_DeviceDefault_ActionBar_TabView = 0x01030170; - public static final int Widget_DeviceDefault_ActionButton = 0x01030166; - public static final int Widget_DeviceDefault_ActionButton_CloseMode = 0x0103016a; - public static final int Widget_DeviceDefault_ActionButton_Overflow = 0x01030167; - public static final int Widget_DeviceDefault_ActionButton_TextButton = 0x01030168; - public static final int Widget_DeviceDefault_ActionMode = 0x01030169; - public static final int Widget_DeviceDefault_AutoCompleteTextView = 0x01030147; - public static final int Widget_DeviceDefault_Button = 0x01030141; - public static final int Widget_DeviceDefault_Button_Borderless = 0x0103016c; - public static final int Widget_DeviceDefault_Button_Borderless_Small = 0x01030145; - public static final int Widget_DeviceDefault_Button_Inset = 0x01030143; - public static final int Widget_DeviceDefault_Button_Small = 0x01030142; - public static final int Widget_DeviceDefault_Button_Toggle = 0x01030144; - public static final int Widget_DeviceDefault_CalendarView = 0x0103016e; - public static final int Widget_DeviceDefault_CheckedTextView = 0x010301db; - public static final int Widget_DeviceDefault_CompoundButton_CheckBox = 0x01030148; - public static final int Widget_DeviceDefault_CompoundButton_RadioButton = 0x01030159; - public static final int Widget_DeviceDefault_CompoundButton_Star = 0x0103015d; - public static final int Widget_DeviceDefault_DatePicker = 0x0103016f; - public static final int Widget_DeviceDefault_DropDownItem = 0x01030161; - public static final int Widget_DeviceDefault_DropDownItem_Spinner = 0x01030162; - public static final int Widget_DeviceDefault_EditText = 0x0103014a; - public static final int Widget_DeviceDefault_ExpandableListView = 0x0103014b; - public static final int Widget_DeviceDefault_GridView = 0x0103014c; - public static final int Widget_DeviceDefault_HorizontalScrollView = 0x0103015b; - public static final int Widget_DeviceDefault_ImageButton = 0x0103014d; - public static final int Widget_DeviceDefault_Light = 0x01030174; - public static final int Widget_DeviceDefault_Light_ActionBar = 0x010301a3; - public static final int Widget_DeviceDefault_Light_ActionBar_Solid = 0x010301a7; - public static final int Widget_DeviceDefault_Light_ActionBar_Solid_Inverse = 0x010301a8; - public static final int Widget_DeviceDefault_Light_ActionBar_TabBar = 0x010301a6; - public static final int Widget_DeviceDefault_Light_ActionBar_TabBar_Inverse = 0x010301a9; - public static final int Widget_DeviceDefault_Light_ActionBar_TabText = 0x010301a5; - public static final int Widget_DeviceDefault_Light_ActionBar_TabText_Inverse = 0x010301ab; - public static final int Widget_DeviceDefault_Light_ActionBar_TabView = 0x010301a4; - public static final int Widget_DeviceDefault_Light_ActionBar_TabView_Inverse = 0x010301aa; - public static final int Widget_DeviceDefault_Light_ActionButton = 0x0103019f; - public static final int Widget_DeviceDefault_Light_ActionButton_CloseMode = 0x010301a2; - public static final int Widget_DeviceDefault_Light_ActionButton_Overflow = 0x010301a0; - public static final int Widget_DeviceDefault_Light_ActionMode = 0x010301a1; - public static final int Widget_DeviceDefault_Light_ActionMode_Inverse = 0x010301ac; - public static final int Widget_DeviceDefault_Light_AutoCompleteTextView = 0x0103017b; - public static final int Widget_DeviceDefault_Light_Button = 0x01030175; - public static final int Widget_DeviceDefault_Light_Button_Borderless_Small = 0x01030179; - public static final int Widget_DeviceDefault_Light_Button_Inset = 0x01030177; - public static final int Widget_DeviceDefault_Light_Button_Small = 0x01030176; - public static final int Widget_DeviceDefault_Light_Button_Toggle = 0x01030178; - public static final int Widget_DeviceDefault_Light_CalendarView = 0x0103019e; - public static final int Widget_DeviceDefault_Light_CheckedTextView = 0x010301dc; - public static final int Widget_DeviceDefault_Light_CompoundButton_CheckBox = 0x0103017c; - public static final int Widget_DeviceDefault_Light_CompoundButton_RadioButton = 0x01030190; - public static final int Widget_DeviceDefault_Light_CompoundButton_Star = 0x01030194; - public static final int Widget_DeviceDefault_Light_DropDownItem = 0x01030198; - public static final int Widget_DeviceDefault_Light_DropDownItem_Spinner = 0x01030199; - public static final int Widget_DeviceDefault_Light_EditText = 0x0103017e; - public static final int Widget_DeviceDefault_Light_ExpandableListView = 0x0103017f; - public static final int Widget_DeviceDefault_Light_GridView = 0x01030180; - public static final int Widget_DeviceDefault_Light_HorizontalScrollView = 0x01030192; - public static final int Widget_DeviceDefault_Light_ImageButton = 0x01030181; - public static final int Widget_DeviceDefault_Light_ListPopupWindow = 0x0103019b; - public static final int Widget_DeviceDefault_Light_ListView = 0x01030182; - public static final int Widget_DeviceDefault_Light_ListView_DropDown = 0x0103017d; - public static final int Widget_DeviceDefault_Light_MediaRouteButton = 0x010301d8; - public static final int Widget_DeviceDefault_Light_PopupMenu = 0x0103019c; - public static final int Widget_DeviceDefault_Light_PopupWindow = 0x01030183; - public static final int Widget_DeviceDefault_Light_ProgressBar = 0x01030184; - public static final int Widget_DeviceDefault_Light_ProgressBar_Horizontal = 0x01030185; - public static final int Widget_DeviceDefault_Light_ProgressBar_Inverse = 0x01030189; - public static final int Widget_DeviceDefault_Light_ProgressBar_Large = 0x01030188; - public static final int Widget_DeviceDefault_Light_ProgressBar_Large_Inverse = 0x0103018b; - public static final int Widget_DeviceDefault_Light_ProgressBar_Small = 0x01030186; - public static final int Widget_DeviceDefault_Light_ProgressBar_Small_Inverse = 0x0103018a; - public static final int Widget_DeviceDefault_Light_ProgressBar_Small_Title = 0x01030187; - public static final int Widget_DeviceDefault_Light_RatingBar = 0x0103018d; - public static final int Widget_DeviceDefault_Light_RatingBar_Indicator = 0x0103018e; - public static final int Widget_DeviceDefault_Light_RatingBar_Small = 0x0103018f; - public static final int Widget_DeviceDefault_Light_ScrollView = 0x01030191; - public static final int Widget_DeviceDefault_Light_SeekBar = 0x0103018c; - public static final int Widget_DeviceDefault_Light_Spinner = 0x01030193; - public static final int Widget_DeviceDefault_Light_Tab = 0x0103019d; - public static final int Widget_DeviceDefault_Light_TabWidget = 0x01030195; - public static final int Widget_DeviceDefault_Light_TextView = 0x0103017a; - public static final int Widget_DeviceDefault_Light_TextView_SpinnerItem = 0x0103019a; - public static final int Widget_DeviceDefault_Light_WebTextView = 0x01030196; - public static final int Widget_DeviceDefault_Light_WebView = 0x01030197; - public static final int Widget_DeviceDefault_ListPopupWindow = 0x01030164; - public static final int Widget_DeviceDefault_ListView = 0x0103014e; - public static final int Widget_DeviceDefault_ListView_DropDown = 0x01030149; - public static final int Widget_DeviceDefault_MediaRouteButton = 0x010301d7; - public static final int Widget_DeviceDefault_PopupMenu = 0x01030165; - public static final int Widget_DeviceDefault_PopupWindow = 0x0103014f; - public static final int Widget_DeviceDefault_ProgressBar = 0x01030150; - public static final int Widget_DeviceDefault_ProgressBar_Horizontal = 0x01030151; - public static final int Widget_DeviceDefault_ProgressBar_Large = 0x01030154; - public static final int Widget_DeviceDefault_ProgressBar_Small = 0x01030152; - public static final int Widget_DeviceDefault_ProgressBar_Small_Title = 0x01030153; - public static final int Widget_DeviceDefault_RatingBar = 0x01030156; - public static final int Widget_DeviceDefault_RatingBar_Indicator = 0x01030157; - public static final int Widget_DeviceDefault_RatingBar_Small = 0x01030158; - public static final int Widget_DeviceDefault_ScrollView = 0x0103015a; - public static final int Widget_DeviceDefault_SeekBar = 0x01030155; - public static final int Widget_DeviceDefault_Spinner = 0x0103015c; - public static final int Widget_DeviceDefault_Tab = 0x0103016d; - public static final int Widget_DeviceDefault_TabWidget = 0x0103015e; - public static final int Widget_DeviceDefault_TextView = 0x01030146; - public static final int Widget_DeviceDefault_TextView_SpinnerItem = 0x01030163; - public static final int Widget_DeviceDefault_WebTextView = 0x0103015f; - public static final int Widget_DeviceDefault_WebView = 0x01030160; - public static final int Widget_DropDownItem = 0x0103002b; - public static final int Widget_DropDownItem_Spinner = 0x0103002c; - public static final int Widget_EditText = 0x01030023; - public static final int Widget_ExpandableListView = 0x01030024; - /** - * Default style for {@link android.app.FragmentBreadCrumbs} view. - */ - public static final int Widget_FragmentBreadCrumbs = 0x01030089; - public static final int Widget_Gallery = 0x01030035; - public static final int Widget_GridView = 0x01030032; - /** - * Widget Styles - */ - public static final int Widget_Holo = 0x0103008a; - public static final int Widget_Holo_ActionBar = 0x010300b4; - public static final int Widget_Holo_ActionBar_Solid = 0x01030121; - public static final int Widget_Holo_ActionBar_TabBar = 0x010300f7; - public static final int Widget_Holo_ActionBar_TabText = 0x010300f6; - public static final int Widget_Holo_ActionBar_TabView = 0x010300f5; - public static final int Widget_Holo_ActionButton = 0x010300af; - public static final int Widget_Holo_ActionButton_CloseMode = 0x010300b3; - public static final int Widget_Holo_ActionButton_Overflow = 0x010300b0; - public static final int Widget_Holo_ActionButton_TextButton = 0x010300b1; - public static final int Widget_Holo_ActionMode = 0x010300b2; - public static final int Widget_Holo_AutoCompleteTextView = 0x01030090; - public static final int Widget_Holo_Button = 0x0103008b; - public static final int Widget_Holo_Button_Borderless = 0x010300e2; - public static final int Widget_Holo_Button_Borderless_Small = 0x0103011a; - public static final int Widget_Holo_Button_Inset = 0x0103008d; - public static final int Widget_Holo_Button_Small = 0x0103008c; - public static final int Widget_Holo_Button_Toggle = 0x0103008e; - public static final int Widget_Holo_CalendarView = 0x010300ec; - public static final int Widget_Holo_CheckedTextView = 0x010301d9; - public static final int Widget_Holo_CompoundButton_CheckBox = 0x01030091; - public static final int Widget_Holo_CompoundButton_RadioButton = 0x010300a2; - public static final int Widget_Holo_CompoundButton_Star = 0x010300a6; - public static final int Widget_Holo_DatePicker = 0x010300ef; - public static final int Widget_Holo_DropDownItem = 0x010300aa; - public static final int Widget_Holo_DropDownItem_Spinner = 0x010300ab; - public static final int Widget_Holo_EditText = 0x01030093; - public static final int Widget_Holo_ExpandableListView = 0x01030094; - public static final int Widget_Holo_GridView = 0x01030095; - public static final int Widget_Holo_HorizontalScrollView = 0x010300a4; - public static final int Widget_Holo_ImageButton = 0x01030096; - /** - * Light widget styles - */ - public static final int Widget_Holo_Light = 0x010300b5; - public static final int Widget_Holo_Light_ActionBar = 0x010300e1; - public static final int Widget_Holo_Light_ActionBar_Solid = 0x01030122; - public static final int Widget_Holo_Light_ActionBar_Solid_Inverse = 0x01030123; - public static final int Widget_Holo_Light_ActionBar_TabBar = 0x010300fa; - public static final int Widget_Holo_Light_ActionBar_TabBar_Inverse = 0x01030124; - public static final int Widget_Holo_Light_ActionBar_TabText = 0x010300f9; - public static final int Widget_Holo_Light_ActionBar_TabText_Inverse = 0x01030126; - public static final int Widget_Holo_Light_ActionBar_TabView = 0x010300f8; - public static final int Widget_Holo_Light_ActionBar_TabView_Inverse = 0x01030125; - public static final int Widget_Holo_Light_ActionButton = 0x010300dd; - public static final int Widget_Holo_Light_ActionButton_CloseMode = 0x010300e0; - public static final int Widget_Holo_Light_ActionButton_Overflow = 0x010300de; - public static final int Widget_Holo_Light_ActionMode = 0x010300df; - public static final int Widget_Holo_Light_ActionMode_Inverse = 0x01030127; - public static final int Widget_Holo_Light_AutoCompleteTextView = 0x010300bb; - public static final int Widget_Holo_Light_Button = 0x010300b6; - public static final int Widget_Holo_Light_Button_Borderless_Small = 0x0103011b; - public static final int Widget_Holo_Light_Button_Inset = 0x010300b8; - public static final int Widget_Holo_Light_Button_Small = 0x010300b7; - public static final int Widget_Holo_Light_Button_Toggle = 0x010300b9; - public static final int Widget_Holo_Light_CalendarView = 0x010300ed; - public static final int Widget_Holo_Light_CheckedTextView = 0x010301da; - public static final int Widget_Holo_Light_CompoundButton_CheckBox = 0x010300bc; - public static final int Widget_Holo_Light_CompoundButton_RadioButton = 0x010300d0; - public static final int Widget_Holo_Light_CompoundButton_Star = 0x010300d4; - public static final int Widget_Holo_Light_DropDownItem = 0x010300d8; - public static final int Widget_Holo_Light_DropDownItem_Spinner = 0x010300d9; - public static final int Widget_Holo_Light_EditText = 0x010300be; - public static final int Widget_Holo_Light_ExpandableListView = 0x010300bf; - public static final int Widget_Holo_Light_GridView = 0x010300c0; - public static final int Widget_Holo_Light_HorizontalScrollView = 0x010300d2; - public static final int Widget_Holo_Light_ImageButton = 0x010300c1; - public static final int Widget_Holo_Light_ListPopupWindow = 0x010300db; - public static final int Widget_Holo_Light_ListView = 0x010300c2; - public static final int Widget_Holo_Light_ListView_DropDown = 0x010300bd; - public static final int Widget_Holo_Light_MediaRouteButton = 0x010301d6; - public static final int Widget_Holo_Light_PopupMenu = 0x010300dc; - public static final int Widget_Holo_Light_PopupWindow = 0x010300c3; - public static final int Widget_Holo_Light_ProgressBar = 0x010300c4; - public static final int Widget_Holo_Light_ProgressBar_Horizontal = 0x010300c5; - public static final int Widget_Holo_Light_ProgressBar_Inverse = 0x010300c9; - public static final int Widget_Holo_Light_ProgressBar_Large = 0x010300c8; - public static final int Widget_Holo_Light_ProgressBar_Large_Inverse = 0x010300cb; - public static final int Widget_Holo_Light_ProgressBar_Small = 0x010300c6; - public static final int Widget_Holo_Light_ProgressBar_Small_Inverse = 0x010300ca; - public static final int Widget_Holo_Light_ProgressBar_Small_Title = 0x010300c7; - public static final int Widget_Holo_Light_RatingBar = 0x010300cd; - public static final int Widget_Holo_Light_RatingBar_Indicator = 0x010300ce; - public static final int Widget_Holo_Light_RatingBar_Small = 0x010300cf; - public static final int Widget_Holo_Light_ScrollView = 0x010300d1; - public static final int Widget_Holo_Light_SeekBar = 0x010300cc; - public static final int Widget_Holo_Light_Spinner = 0x010300d3; - public static final int Widget_Holo_Light_Tab = 0x010300e4; - public static final int Widget_Holo_Light_TabWidget = 0x010300d5; - public static final int Widget_Holo_Light_TextView = 0x010300ba; - public static final int Widget_Holo_Light_TextView_SpinnerItem = 0x010300da; - public static final int Widget_Holo_Light_WebTextView = 0x010300d6; - public static final int Widget_Holo_Light_WebView = 0x010300d7; - public static final int Widget_Holo_ListPopupWindow = 0x010300ad; - public static final int Widget_Holo_ListView = 0x01030097; - public static final int Widget_Holo_ListView_DropDown = 0x01030092; - public static final int Widget_Holo_MediaRouteButton = 0x010301d5; - public static final int Widget_Holo_PopupMenu = 0x010300ae; - public static final int Widget_Holo_PopupWindow = 0x01030098; - public static final int Widget_Holo_ProgressBar = 0x01030099; - public static final int Widget_Holo_ProgressBar_Horizontal = 0x0103009a; - public static final int Widget_Holo_ProgressBar_Large = 0x0103009d; - public static final int Widget_Holo_ProgressBar_Small = 0x0103009b; - public static final int Widget_Holo_ProgressBar_Small_Title = 0x0103009c; - public static final int Widget_Holo_RatingBar = 0x0103009f; - public static final int Widget_Holo_RatingBar_Indicator = 0x010300a0; - public static final int Widget_Holo_RatingBar_Small = 0x010300a1; - public static final int Widget_Holo_ScrollView = 0x010300a3; - public static final int Widget_Holo_SeekBar = 0x0103009e; - public static final int Widget_Holo_Spinner = 0x010300a5; - public static final int Widget_Holo_Tab = 0x010300e3; - public static final int Widget_Holo_TabWidget = 0x010300a7; - public static final int Widget_Holo_TextView = 0x0103008f; - public static final int Widget_Holo_TextView_SpinnerItem = 0x010300ac; - public static final int Widget_Holo_WebTextView = 0x010300a8; - public static final int Widget_Holo_WebView = 0x010300a9; - public static final int Widget_ImageButton = 0x01030026; - public static final int Widget_ImageWell = 0x01030025; - public static final int Widget_KeyboardView = 0x01030057; - public static final int Widget_ListPopupWindow = 0x01030085; - public static final int Widget_ListView = 0x0103002e; - public static final int Widget_ListView_DropDown = 0x01030030; - public static final int Widget_ListView_Menu = 0x01030031; - public static final int Widget_ListView_White = 0x0103002f; - public static final int Widget_PopupMenu = 0x01030086; - public static final int Widget_PopupWindow = 0x01030036; - public static final int Widget_ProgressBar = 0x0103001c; - public static final int Widget_ProgressBar_Horizontal = 0x0103001f; - public static final int Widget_ProgressBar_Inverse = 0x0103005b; - public static final int Widget_ProgressBar_Large = 0x0103001d; - public static final int Widget_ProgressBar_Large_Inverse = 0x0103005c; - public static final int Widget_ProgressBar_Small = 0x0103001e; - public static final int Widget_ProgressBar_Small_Inverse = 0x0103005d; - public static final int Widget_RatingBar = 0x01030021; - public static final int Widget_ScrollView = 0x0103002d; - public static final int Widget_SeekBar = 0x01030020; - public static final int Widget_Spinner = 0x01030028; - public static final int Widget_Spinner_DropDown = 0x01030083; - public static final int Widget_TabWidget = 0x01030034; - public static final int Widget_TextView = 0x01030022; - public static final int Widget_TextView_PopupMenu = 0x01030029; - public static final int Widget_TextView_SpinnerItem = 0x0103002a; - public static final int Widget_WebView = 0x01030033; - public static final int webviewchromium_AutofillPopupWindow = 0x0103031f; - public static final int webviewchromium_SelectPopupDialog = 0x01030320; - } - public static final class xml { - public static final int apns = 0x010f0000; - public static final int audio_assets = 0x010f0001; - public static final int autotext = 0x010f0002; - public static final int eri = 0x010f0003; - public static final int global_keys = 0x010f0004; - public static final int password_kbd_numeric = 0x010f0007; - public static final int password_kbd_qwerty = 0x010f0009; - public static final int password_kbd_qwerty_shifted = 0x010f000a; - public static final int password_kbd_symbols = 0x010f000b; - public static final int password_kbd_symbols_shift = 0x010f000c; - public static final int power_profile = 0x010f000d; - public static final int sms_short_codes = 0x010f000f; - public static final int storage_list = 0x010f0010; - public static final int time_zones_by_country = 0x010f0011; - } - public static final class styleable { - /** - Attributes that can be used with a AbsListView. -

Includes the following attributes:

- - - - - - - - - - - - - - - -
AttributeDescription
{@link #AbsListView_cacheColorHint android:cacheColorHint} Indicates that this list will always be drawn on top of solid, single-color - opaque background.
{@link #AbsListView_choiceMode android:choiceMode} Defines the choice behavior for the view.
{@link #AbsListView_drawSelectorOnTop android:drawSelectorOnTop} When set to true, the selector will be drawn over the selected item.
{@link #AbsListView_fastScrollAlwaysVisible android:fastScrollAlwaysVisible} When set to true, the list will always show the fast scroll interface.
{@link #AbsListView_fastScrollEnabled android:fastScrollEnabled} Enables the fast scroll thumb that can be dragged to quickly scroll through - the list.
{@link #AbsListView_listSelector android:listSelector} Drawable used to indicate the currently selected item in the list.
{@link #AbsListView_scrollingCache android:scrollingCache} When set to true, the list uses a drawing cache during scrolling.
{@link #AbsListView_smoothScrollbar android:smoothScrollbar} When set to true, the list will use a more refined calculation - method based on the pixels height of the items visible on screen.
{@link #AbsListView_stackFromBottom android:stackFromBottom} Used by ListView and GridView to stack their content from the bottom.
{@link #AbsListView_textFilterEnabled android:textFilterEnabled} When set to true, the list will filter results as the user types.
{@link #AbsListView_transcriptMode android:transcriptMode} Sets the transcript mode for the list.
- @see #AbsListView_cacheColorHint - @see #AbsListView_choiceMode - @see #AbsListView_drawSelectorOnTop - @see #AbsListView_fastScrollAlwaysVisible - @see #AbsListView_fastScrollEnabled - @see #AbsListView_listSelector - @see #AbsListView_scrollingCache - @see #AbsListView_smoothScrollbar - @see #AbsListView_stackFromBottom - @see #AbsListView_textFilterEnabled - @see #AbsListView_transcriptMode - */ - public static final int[] AbsListView = { - 0x010100fb, 0x010100fc, 0x010100fd, 0x010100fe, - 0x010100ff, 0x01010100, 0x01010101, 0x0101012b, - 0x01010226, 0x01010231, 0x01010335}; - /** -

- @attr description - Indicates that this list will always be drawn on top of solid, single-color - opaque background. This allows the list to optimize drawing. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#cacheColorHint}. - @attr name android:cacheColorHint - */ - public static final int AbsListView_cacheColorHint = 6; - /** -

- @attr description - Defines the choice behavior for the view. By default, lists do not have - any choice behavior. By setting the choiceMode to singleChoice, the list - allows up to one item to be in a chosen state. By setting the choiceMode to - multipleChoice, the list allows any number of items to be chosen. - Finally, by setting the choiceMode to multipleChoiceModal the list allows - any number of items to be chosen in a special selection mode. - The application will supply a - {@link android.widget.AbsListView.MultiChoiceModeListener} using - {@link android.widget.AbsListView#setMultiChoiceModeListener} to control the - selection mode. This uses the {@link android.view.ActionMode} API. - - -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
none0 Normal list that does not indicate choices.
singleChoice1 The list allows up to one choice.
multipleChoice2 The list allows multiple choices.
multipleChoiceModal3 The list allows multiple choices in a custom selection mode.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#choiceMode}. - @attr name android:choiceMode - */ - public static final int AbsListView_choiceMode = 7; - /** -

- @attr description - When set to true, the selector will be drawn over the selected item. - Otherwise the selector is drawn behind the selected item. The default - value is false. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#drawSelectorOnTop}. - @attr name android:drawSelectorOnTop - */ - public static final int AbsListView_drawSelectorOnTop = 1; - /** -

- @attr description - When set to true, the list will always show the fast scroll interface. - This setting implies fastScrollEnabled. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fastScrollAlwaysVisible}. - @attr name android:fastScrollAlwaysVisible - */ - public static final int AbsListView_fastScrollAlwaysVisible = 10; - /** -

- @attr description - Enables the fast scroll thumb that can be dragged to quickly scroll through - the list. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fastScrollEnabled}. - @attr name android:fastScrollEnabled - */ - public static final int AbsListView_fastScrollEnabled = 8; - /** -

- @attr description - Drawable used to indicate the currently selected item in the list. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#listSelector}. - @attr name android:listSelector - */ - public static final int AbsListView_listSelector = 0; - /** -

- @attr description - When set to true, the list uses a drawing cache during scrolling. - This makes the rendering faster but uses more memory. The default - value is true. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scrollingCache}. - @attr name android:scrollingCache - */ - public static final int AbsListView_scrollingCache = 3; - /** -

- @attr description - When set to true, the list will use a more refined calculation - method based on the pixels height of the items visible on screen. This - property is set to true by default but should be set to false if your adapter - will display items of varying heights. When this property is set to true and - your adapter displays items of varying heights, the scrollbar thumb will - change size as the user scrolls through the list. When set to fale, the list - will use only the number of items in the adapter and the number of items visible - on screen to determine the scrollbar's properties. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#smoothScrollbar}. - @attr name android:smoothScrollbar - */ - public static final int AbsListView_smoothScrollbar = 9; - /** -

- @attr description - Used by ListView and GridView to stack their content from the bottom. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#stackFromBottom}. - @attr name android:stackFromBottom - */ - public static final int AbsListView_stackFromBottom = 2; - /** -

- @attr description - When set to true, the list will filter results as the user types. The - List's adapter must support the Filterable interface for this to work. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textFilterEnabled}. - @attr name android:textFilterEnabled - */ - public static final int AbsListView_textFilterEnabled = 4; - /** -

- @attr description - Sets the transcript mode for the list. In transcript mode, the list - scrolls to the bottom to make new items visible when they are added. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
disabled0 Disables transcript mode. This is the default value.
normal1 The list will automatically scroll to the bottom when - a data set change notification is received and only if the last item is - already visible on screen.
alwaysScroll2 The list will automatically scroll to the bottom, no matter what items - are currently visible.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#transcriptMode}. - @attr name android:transcriptMode - */ - public static final int AbsListView_transcriptMode = 5; - /** - Attributes that can be used with a AbsSpinner. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #AbsSpinner_entries android:entries} Reference to an array resource that will populate the Spinner.
- @see #AbsSpinner_entries - */ - public static final int[] AbsSpinner = { - 0x010100b2}; - /** -

- @attr description - Reference to an array resource that will populate the Spinner. For static content, - this is simpler than populating the Spinner programmatically. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#entries}. - @attr name android:entries - */ - public static final int AbsSpinner_entries = 0; - /** - Attributes that can be used with a AbsoluteLayout_Layout. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #AbsoluteLayout_Layout_layout_x android:layout_x}
{@link #AbsoluteLayout_Layout_layout_y android:layout_y}
- @see #AbsoluteLayout_Layout_layout_x - @see #AbsoluteLayout_Layout_layout_y - */ - public static final int[] AbsoluteLayout_Layout = { - 0x0101017f, 0x01010180}; - /** -

This symbol is the offset where the {@link android.R.attr#layout_x} - attribute's value can be found in the {@link #AbsoluteLayout_Layout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:layout_x - */ - public static final int AbsoluteLayout_Layout_layout_x = 0; - /** -

This symbol is the offset where the {@link android.R.attr#layout_y} - attribute's value can be found in the {@link #AbsoluteLayout_Layout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:layout_y - */ - public static final int AbsoluteLayout_Layout_layout_y = 1; - /** - Attributes that can be used with a AccelerateInterpolator. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #AccelerateInterpolator_factor android:factor} This is the amount of deceleration to add when easing in.
- @see #AccelerateInterpolator_factor - */ - public static final int[] AccelerateInterpolator = { - 0x010101d3}; - /** -

- @attr description - This is the amount of deceleration to add when easing in. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#factor}. - @attr name android:factor - */ - public static final int AccelerateInterpolator_factor = 0; - /** - Use accessibility-service as the root tag of the XML resource that - describes an {@link android.accessibilityservice.AccessibilityService} service, - which is referenced from its - {@link android.accessibilityservice.AccessibilityService#SERVICE_META_DATA} - meta-data entry. -

Includes the following attributes:

- - - - - - - - - - - - - - - -
AttributeDescription
{@link #AccessibilityService_accessibilityEventTypes android:accessibilityEventTypes} The event types this serivce would like to receive as specified in - {@link android.view.accessibility.AccessibilityEvent}.
{@link #AccessibilityService_accessibilityFeedbackType android:accessibilityFeedbackType} The feedback types this serivce provides as specified in - {@link android.accessibilityservice.AccessibilityServiceInfo}.
{@link #AccessibilityService_accessibilityFlags android:accessibilityFlags} Additional flags as specified in - {@link android.accessibilityservice.AccessibilityServiceInfo}.
{@link #AccessibilityService_canRequestEnhancedWebAccessibility android:canRequestEnhancedWebAccessibility} Attribute whether the accessibility service wants to be able to request enhanced - web accessibility enhancements.
{@link #AccessibilityService_canRequestFilterKeyEvents android:canRequestFilterKeyEvents} Attribute whether the accessibility service wants to be able to request to - filter key events.
{@link #AccessibilityService_canRequestTouchExplorationMode android:canRequestTouchExplorationMode} Attribute whether the accessibility service wants to be able to request touch - exploration mode in which touched items are spoken aloud and the UI can be - explored via gestures.
{@link #AccessibilityService_canRetrieveWindowContent android:canRetrieveWindowContent} Attribute whether the accessibility service wants to be able to retrieve the - active window content.
{@link #AccessibilityService_description android:description} Short description of the accessibility serivce purpose or behavior.
{@link #AccessibilityService_notificationTimeout android:notificationTimeout} The minimal period in milliseconds between two accessibility events of the same type - are sent to this serivce.
{@link #AccessibilityService_packageNames android:packageNames} Comma separated package names from which this serivce would like to receive events (leave out for all packages).
{@link #AccessibilityService_settingsActivity android:settingsActivity} Component name of an activity that allows the user to modify - the settings for this service.
- @see #AccessibilityService_accessibilityEventTypes - @see #AccessibilityService_accessibilityFeedbackType - @see #AccessibilityService_accessibilityFlags - @see #AccessibilityService_canRequestEnhancedWebAccessibility - @see #AccessibilityService_canRequestFilterKeyEvents - @see #AccessibilityService_canRequestTouchExplorationMode - @see #AccessibilityService_canRetrieveWindowContent - @see #AccessibilityService_description - @see #AccessibilityService_notificationTimeout - @see #AccessibilityService_packageNames - @see #AccessibilityService_settingsActivity - */ - public static final int[] AccessibilityService = { - 0x01010020, 0x01010225, 0x01010380, 0x01010381, - 0x01010382, 0x01010383, 0x01010384, 0x01010385, - 0x010103d7, 0x010103d8, 0x010103d9}; - /** -

- @attr description - The event types this serivce would like to receive as specified in - {@link android.view.accessibility.AccessibilityEvent}. This setting - can be changed at runtime by calling - {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) - android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
typeViewClicked0x00000001 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_CLICKED} events.
typeViewLongClicked0x00000002 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_LONG_CLICKED} events.
typeViewSelected0x00000004 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_SELECTED} events.
typeViewFocused0x00000008 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_FOCUSED} events.
typeViewTextChanged0x00000010 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_TEXT_CHANGED} events.
typeWindowStateChanged0x00000020 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_WINDOW_STATE_CHANGED} events.
typeNotificationStateChanged0x00000040 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_NOTIFICATION_STATE_CHANGED} events.
typeViewHoverEnter0x00000080 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_HOVER_ENTER} events.
typeViewHoverExit0x00000100 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_HOVER_EXIT} events.
typeTouchExplorationGestureStart0x00000200 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_TOUCH_EXPLORATION_GESTURE_START} events.
typeTouchExplorationGestureEnd0x00000400 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_TOUCH_EXPLORATION_GESTURE_END} events.
typeWindowContentChanged0x00000800 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_WINDOW_CONTENT_CHANGED} events.
typeViewScrolled0x000001000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_SCROLLED} events.
typeViewTextSelectionChanged0x000002000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_TEXT_SELECTION_CHANGED} events.
typeAllMask0xffffffff Receives {@link android.view.accessibility.AccessibilityEvent#TYPES_ALL_MASK} i.e. all events.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#accessibilityEventTypes}. - @attr name android:accessibilityEventTypes - */ - public static final int AccessibilityService_accessibilityEventTypes = 2; - /** -

- @attr description - The feedback types this serivce provides as specified in - {@link android.accessibilityservice.AccessibilityServiceInfo}. This setting - can be changed at runtime by calling - {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) - android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - -
ConstantValueDescription
feedbackSpoken0x00000001 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_SPOKEN} feedback.
feedbackHaptic0x00000002 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_HAPTIC} feedback.
feedbackAudible0x00000004 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_AUDIBLE} feedback.
feedbackVisual0x00000008 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_VISUAL} feedback.
feedbackGeneric0x00000010 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_GENERIC} feedback.
feedbackAllMask0xffffffff Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_ALL_MASK} feedback.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#accessibilityFeedbackType}. - @attr name android:accessibilityFeedbackType - */ - public static final int AccessibilityService_accessibilityFeedbackType = 4; - /** -

- @attr description - Additional flags as specified in - {@link android.accessibilityservice.AccessibilityServiceInfo}. - This setting can be changed at runtime by calling - {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) - android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - -
ConstantValueDescription
flagDefault0x00000001 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#DEFAULT}
flagIncludeNotImportantViews0x00000002 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_INCLUDE_NOT_IMPORTANT_VIEWS}
flagRequestTouchExplorationMode0x00000004 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REQUEST_TOUCH_EXPLORATION_MODE}
flagRequestEnhancedWebAccessibility0x00000008 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REQUEST_ENHANCED_WEB_ACCESSIBILITY}
flagReportViewIds0x00000010 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REPORT_VIEW_IDS}
flagRequestFilterKeyEvents0x00000020 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REQUEST_FILTER_KEY_EVENTS}
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#accessibilityFlags}. - @attr name android:accessibilityFlags - */ - public static final int AccessibilityService_accessibilityFlags = 6; - /** -

- @attr description - Attribute whether the accessibility service wants to be able to request enhanced - web accessibility enhancements. For example, installing scripts to make app - content more accessible. -

- Required to allow setting the {@link android.accessibilityservice - #AccessibilityServiceInfo#FLAG_REQUEST_ENHANCED_WEB_ACCESSIBILITY} flag. -

- - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#canRequestEnhancedWebAccessibility}. - @attr name android:canRequestEnhancedWebAccessibility - */ - public static final int AccessibilityService_canRequestEnhancedWebAccessibility = 9; - /** -

- @attr description - Attribute whether the accessibility service wants to be able to request to - filter key events. -

- Required to allow setting the {@link android.accessibilityservice - #AccessibilityServiceInfo#FLAG_REQUEST_FILTER_KEY_EVENTS} flag. -

- - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#canRequestFilterKeyEvents}. - @attr name android:canRequestFilterKeyEvents - */ - public static final int AccessibilityService_canRequestFilterKeyEvents = 10; - /** -

- @attr description - Attribute whether the accessibility service wants to be able to request touch - exploration mode in which touched items are spoken aloud and the UI can be - explored via gestures. -

- Required to allow setting the {@link android.accessibilityservice - #AccessibilityServiceInfo#FLAG_REQUEST_TOUCH_EXPLORATION_MODE} flag. -

- - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#canRequestTouchExplorationMode}. - @attr name android:canRequestTouchExplorationMode - */ - public static final int AccessibilityService_canRequestTouchExplorationMode = 8; - /** -

- @attr description - Attribute whether the accessibility service wants to be able to retrieve the - active window content. This setting cannot be changed at runtime. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#canRetrieveWindowContent}. - @attr name android:canRetrieveWindowContent - */ - public static final int AccessibilityService_canRetrieveWindowContent = 7; - /** -

- @attr description - Short description of the accessibility serivce purpose or behavior. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#description}. - @attr name android:description - */ - public static final int AccessibilityService_description = 0; - /** -

- @attr description - The minimal period in milliseconds between two accessibility events of the same type - are sent to this serivce. This setting can be changed at runtime by calling - {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) - android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#notificationTimeout}. - @attr name android:notificationTimeout - */ - public static final int AccessibilityService_notificationTimeout = 5; - /** -

- @attr description - Comma separated package names from which this serivce would like to receive events (leave out for all packages). - {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) - android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#packageNames}. - @attr name android:packageNames - */ - public static final int AccessibilityService_packageNames = 3; - /** -

- @attr description - Component name of an activity that allows the user to modify - the settings for this service. This setting cannot be changed at runtime. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#settingsActivity}. - @attr name android:settingsActivity - */ - public static final int AccessibilityService_settingsActivity = 1; - /** - Use account-authenticator as the root tag of the XML resource that - describes an account authenticator. - -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #AccountAuthenticator_accountPreferences android:accountPreferences} A preferences.
{@link #AccountAuthenticator_accountType android:accountType} The account type this authenticator handles.
{@link #AccountAuthenticator_customTokens android:customTokens} Account handles its own token storage and permissions.
{@link #AccountAuthenticator_icon android:icon} The icon of the authenticator.
{@link #AccountAuthenticator_label android:label} The user-visible name of the authenticator.
{@link #AccountAuthenticator_smallIcon android:smallIcon} Smaller icon of the authenticator.
- @see #AccountAuthenticator_accountPreferences - @see #AccountAuthenticator_accountType - @see #AccountAuthenticator_customTokens - @see #AccountAuthenticator_icon - @see #AccountAuthenticator_label - @see #AccountAuthenticator_smallIcon - */ - public static final int[] AccountAuthenticator = { - 0x01010001, 0x01010002, 0x0101028f, 0x0101029e, - 0x0101029f, 0x0101033b}; - /** -

- @attr description - A preferences.xml file for authenticator-specific settings. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#accountPreferences}. - @attr name android:accountPreferences - */ - public static final int AccountAuthenticator_accountPreferences = 4; - /** -

- @attr description - The account type this authenticator handles. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#accountType}. - @attr name android:accountType - */ - public static final int AccountAuthenticator_accountType = 2; - /** -

- @attr description - Account handles its own token storage and permissions. - Default to false - - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#customTokens}. - @attr name android:customTokens - */ - public static final int AccountAuthenticator_customTokens = 5; - /** -

- @attr description - The icon of the authenticator. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int AccountAuthenticator_icon = 1; - /** -

- @attr description - The user-visible name of the authenticator. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#label}. - @attr name android:label - */ - public static final int AccountAuthenticator_label = 0; - /** -

- @attr description - Smaller icon of the authenticator. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#smallIcon}. - @attr name android:smallIcon - */ - public static final int AccountAuthenticator_smallIcon = 3; - /** - Attributes used to style the Action Bar. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #ActionBar_background android:background} Specifies a background drawable for the action bar.
{@link #ActionBar_backgroundSplit android:backgroundSplit} Specifies a background drawable for the bottom component of a split action bar.
{@link #ActionBar_backgroundStacked android:backgroundStacked} Specifies a background drawable for a second stacked row of the action bar.
{@link #ActionBar_customNavigationLayout android:customNavigationLayout} Specifies a layout for custom navigation.
{@link #ActionBar_displayOptions android:displayOptions} Options affecting how the action bar is displayed.
{@link #ActionBar_divider android:divider} Specifies the drawable used for item dividers.
{@link #ActionBar_height android:height} Specifies a fixed height.
{@link #ActionBar_homeLayout android:homeLayout} Specifies a layout to use for the "home" section of the action bar.
{@link #ActionBar_icon android:icon} Specifies the drawable used for the application icon.
{@link #ActionBar_indeterminateProgressStyle android:indeterminateProgressStyle} Specifies a style resource to use for an indeterminate progress spinner.
{@link #ActionBar_itemPadding android:itemPadding} Specifies padding that should be applied to the left and right sides of - system-provided items in the bar.
{@link #ActionBar_logo android:logo} Specifies the drawable used for the application logo.
{@link #ActionBar_navigationMode android:navigationMode} The type of navigation to use.
{@link #ActionBar_progressBarPadding android:progressBarPadding} Specifies the horizontal padding on either end for an embedded progress bar.
{@link #ActionBar_progressBarStyle android:progressBarStyle} Specifies a style resource to use for an embedded progress bar.
{@link #ActionBar_subtitle android:subtitle} Specifies subtitle text used for navigationMode="normal"
{@link #ActionBar_subtitleTextStyle android:subtitleTextStyle} Specifies a style to use for subtitle text.
{@link #ActionBar_title android:title} Specifies title text used for navigationMode="normal"
{@link #ActionBar_titleTextStyle android:titleTextStyle} Specifies a style to use for title text.
- @see #ActionBar_background - @see #ActionBar_backgroundSplit - @see #ActionBar_backgroundStacked - @see #ActionBar_customNavigationLayout - @see #ActionBar_displayOptions - @see #ActionBar_divider - @see #ActionBar_height - @see #ActionBar_homeLayout - @see #ActionBar_icon - @see #ActionBar_indeterminateProgressStyle - @see #ActionBar_itemPadding - @see #ActionBar_logo - @see #ActionBar_navigationMode - @see #ActionBar_progressBarPadding - @see #ActionBar_progressBarStyle - @see #ActionBar_subtitle - @see #ActionBar_subtitleTextStyle - @see #ActionBar_title - @see #ActionBar_titleTextStyle - */ - public static final int[] ActionBar = { - 0x01010002, 0x01010077, 0x010100d4, 0x01010129, - 0x01010155, 0x010101e1, 0x010102be, 0x010102cf, - 0x010102d0, 0x010102d1, 0x010102d2, 0x010102f8, - 0x010102f9, 0x01010318, 0x01010319, 0x0101031d, - 0x0101032d, 0x0101038a, 0x0101038b}; - /** -

- @attr description - Specifies a background drawable for the action bar. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#background}. - @attr name android:background - */ - public static final int ActionBar_background = 2; - /** -

- @attr description - Specifies a background drawable for the bottom component of a split action bar. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#backgroundSplit}. - @attr name android:backgroundSplit - */ - public static final int ActionBar_backgroundSplit = 18; - /** -

- @attr description - Specifies a background drawable for a second stacked row of the action bar. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#backgroundStacked}. - @attr name android:backgroundStacked - */ - public static final int ActionBar_backgroundStacked = 17; - /** -

- @attr description - Specifies a layout for custom navigation. Overrides navigationMode. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#customNavigationLayout}. - @attr name android:customNavigationLayout - */ - public static final int ActionBar_customNavigationLayout = 10; - /** -

- @attr description - Options affecting how the action bar is displayed. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - -
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#displayOptions}. - @attr name android:displayOptions - */ - public static final int ActionBar_displayOptions = 8; - /** -

- @attr description - Specifies the drawable used for item dividers. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#divider}. - @attr name android:divider - */ - public static final int ActionBar_divider = 3; - /** -

- @attr description - Specifies a fixed height. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#height}. - @attr name android:height - */ - public static final int ActionBar_height = 4; - /** -

- @attr description - Specifies a layout to use for the "home" section of the action bar. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#homeLayout}. - @attr name android:homeLayout - */ - public static final int ActionBar_homeLayout = 15; - /** -

- @attr description - Specifies the drawable used for the application icon. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int ActionBar_icon = 0; - /** -

- @attr description - Specifies a style resource to use for an indeterminate progress spinner. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#indeterminateProgressStyle}. - @attr name android:indeterminateProgressStyle - */ - public static final int ActionBar_indeterminateProgressStyle = 13; - /** -

- @attr description - Specifies padding that should be applied to the left and right sides of - system-provided items in the bar. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#itemPadding}. - @attr name android:itemPadding - */ - public static final int ActionBar_itemPadding = 16; - /** -

- @attr description - Specifies the drawable used for the application logo. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#logo}. - @attr name android:logo - */ - public static final int ActionBar_logo = 6; - /** -

- @attr description - The type of navigation to use. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
normal0 Normal static title text
listMode1 The action bar will use a selection list for navigation.
tabMode2 The action bar will use a series of horizontal tabs for navigation.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#navigationMode}. - @attr name android:navigationMode - */ - public static final int ActionBar_navigationMode = 7; - /** -

- @attr description - Specifies the horizontal padding on either end for an embedded progress bar. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#progressBarPadding}. - @attr name android:progressBarPadding - */ - public static final int ActionBar_progressBarPadding = 14; - /** -

- @attr description - Specifies a style resource to use for an embedded progress bar. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#progressBarStyle}. - @attr name android:progressBarStyle - */ - public static final int ActionBar_progressBarStyle = 1; - /** -

- @attr description - Specifies subtitle text used for navigationMode="normal" - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#subtitle}. - @attr name android:subtitle - */ - public static final int ActionBar_subtitle = 9; - /** -

- @attr description - Specifies a style to use for subtitle text. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#subtitleTextStyle}. - @attr name android:subtitleTextStyle - */ - public static final int ActionBar_subtitleTextStyle = 12; - /** -

- @attr description - Specifies title text used for navigationMode="normal" - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#title}. - @attr name android:title - */ - public static final int ActionBar_title = 5; - /** -

- @attr description - Specifies a style to use for title text. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#titleTextStyle}. - @attr name android:titleTextStyle - */ - public static final int ActionBar_titleTextStyle = 11; - /** - Attributes that can be used with a ActionBar_LayoutParams. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ActionBar_LayoutParams_layout_gravity android:layout_gravity} Standard gravity constant that a child supplies to its parent.
- @see #ActionBar_LayoutParams_layout_gravity - */ - public static final int[] ActionBar_LayoutParams = { - 0x010100b3}; - /** -

- @attr description - Standard gravity constant that a child supplies to its parent. - Defines how the child view should be positioned, on both the X and Y axes, within its enclosing layout. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_gravity}. - @attr name android:layout_gravity - */ - public static final int ActionBar_LayoutParams_layout_gravity = 0; - /** - Attributes that can be used with a ActionMenuItemView. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ActionMenuItemView_minWidth android:minWidth}
- @see #ActionMenuItemView_minWidth - */ - public static final int[] ActionMenuItemView = { - 0x0101013f}; - /** -

This symbol is the offset where the {@link android.R.attr#minWidth} - attribute's value can be found in the {@link #ActionMenuItemView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:minWidth - */ - public static final int ActionMenuItemView_minWidth = 0; - /** - Attributes that can be used with a ActionMode. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #ActionMode_background android:background} Specifies a background for the action mode bar.
{@link #ActionMode_backgroundSplit android:backgroundSplit} Specifies a background for the split action mode bar.
{@link #ActionMode_height android:height} Specifies a fixed height for the action mode bar.
{@link #ActionMode_subtitleTextStyle android:subtitleTextStyle} Specifies a style to use for subtitle text.
{@link #ActionMode_titleTextStyle android:titleTextStyle} Specifies a style to use for title text.
- @see #ActionMode_background - @see #ActionMode_backgroundSplit - @see #ActionMode_height - @see #ActionMode_subtitleTextStyle - @see #ActionMode_titleTextStyle - */ - public static final int[] ActionMode = { - 0x010100d4, 0x01010155, 0x010102f8, 0x010102f9, - 0x0101038b}; - /** -

- @attr description - Specifies a background for the action mode bar. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#background}. - @attr name android:background - */ - public static final int ActionMode_background = 0; - /** -

- @attr description - Specifies a background for the split action mode bar. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#backgroundSplit}. - @attr name android:backgroundSplit - */ - public static final int ActionMode_backgroundSplit = 4; - /** -

- @attr description - Specifies a fixed height for the action mode bar. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#height}. - @attr name android:height - */ - public static final int ActionMode_height = 1; - /** -

- @attr description - Specifies a style to use for subtitle text. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#subtitleTextStyle}. - @attr name android:subtitleTextStyle - */ - public static final int ActionMode_subtitleTextStyle = 3; - /** -

- @attr description - Specifies a style to use for title text. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#titleTextStyle}. - @attr name android:titleTextStyle - */ - public static final int ActionMode_titleTextStyle = 2; - /** - Attrbitutes for a ActvityChooserView. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable android:expandActivityOverflowButtonDrawable} The drawable to show in the button for expanding the activities overflow popup.
{@link #ActivityChooserView_initialActivityCount android:initialActivityCount} The maximal number of items initially shown in the activity list.
- @see #ActivityChooserView_expandActivityOverflowButtonDrawable - @see #ActivityChooserView_initialActivityCount - */ - public static final int[] ActivityChooserView = { - 0x0101044d, 0x0101044e}; - /** -

- @attr description - The drawable to show in the button for expanding the activities overflow popup. - Note: Clients would like to set this drawable - as a clue about the action the chosen activity will perform. For - example, if share activity is to be chosen the drawable should - give a clue that sharing is to be performed. - - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:expandActivityOverflowButtonDrawable - */ - public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; - /** -

- @attr description - The maximal number of items initially shown in the activity list. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:initialActivityCount - */ - public static final int ActivityChooserView_initialActivityCount = 0; - /** - Attributes that can be used with a AdapterViewAnimator. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #AdapterViewAnimator_animateFirstView android:animateFirstView} Defines whether to animate the current View when the ViewAnimation - is first displayed.
{@link #AdapterViewAnimator_inAnimation android:inAnimation} Identifier for the animation to use when a view is shown.
{@link #AdapterViewAnimator_loopViews android:loopViews}Defines whether the animator loops to the first view once it - has reached the end of the list.
{@link #AdapterViewAnimator_outAnimation android:outAnimation} Identifier for the animation to use when a view is hidden.
- @see #AdapterViewAnimator_animateFirstView - @see #AdapterViewAnimator_inAnimation - @see #AdapterViewAnimator_loopViews - @see #AdapterViewAnimator_outAnimation - */ - public static final int[] AdapterViewAnimator = { - 0x01010177, 0x01010178, 0x010102d5, 0x01010307}; - /** -

- @attr description - Defines whether to animate the current View when the ViewAnimation - is first displayed. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#animateFirstView}. - @attr name android:animateFirstView - */ - public static final int AdapterViewAnimator_animateFirstView = 2; - /** -

- @attr description - Identifier for the animation to use when a view is shown. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#inAnimation}. - @attr name android:inAnimation - */ - public static final int AdapterViewAnimator_inAnimation = 0; - /** -

- @attr description - Defines whether the animator loops to the first view once it - has reached the end of the list. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#loopViews}. - @attr name android:loopViews - */ - public static final int AdapterViewAnimator_loopViews = 3; - /** -

- @attr description - Identifier for the animation to use when a view is hidden. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#outAnimation}. - @attr name android:outAnimation - */ - public static final int AdapterViewAnimator_outAnimation = 1; - /** - Attributes that can be used with a AdapterViewFlipper. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #AdapterViewFlipper_autoStart android:autoStart} When true, automatically start animating
{@link #AdapterViewFlipper_flipInterval android:flipInterval}
- @see #AdapterViewFlipper_autoStart - @see #AdapterViewFlipper_flipInterval - */ - public static final int[] AdapterViewFlipper = { - 0x01010179, 0x010102b5}; - /** -

- @attr description - When true, automatically start animating - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#autoStart}. - @attr name android:autoStart - */ - public static final int AdapterViewFlipper_autoStart = 1; - /** -

This symbol is the offset where the {@link android.R.attr#flipInterval} - attribute's value can be found in the {@link #AdapterViewFlipper} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:flipInterval - */ - public static final int AdapterViewFlipper_flipInterval = 0; - /** - Specify one or more aid-filter elements inside a - aid-group element to specify an ISO7816 Application ID (AID) - your service can handle. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #AidFilter_name android:name} The ISO7816 Application ID.
- @see #AidFilter_name - */ - public static final int[] AidFilter = { - 0x01010003}; - /** -

- @attr description - The ISO7816 Application ID. This attribute is mandatory. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AidFilter_name = 0; - /** - Specify one or more aid-group elements inside a - host-apdu-service or offhost-apdu-service - element to define a group of ISO7816 Application ID (AIDs) that - your service can handle. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #AidGroup_category android:category} The category attribute will be used by the Android platform to present - multiple applications that register ISO 7816 Application IDs (AIDs) in the - same category uniformly.
{@link #AidGroup_description android:description} Short description of what the AID group implements.
- @see #AidGroup_category - @see #AidGroup_description - */ - public static final int[] AidGroup = { - 0x01010020, 0x010103e8}; - /** -

- @attr description - The category attribute will be used by the Android platform to present - multiple applications that register ISO 7816 Application IDs (AIDs) in the - same category uniformly. - Additionally, when a category is specified, Android will ensure that either - all AIDs in this group are routed to this application, or none at all. - This attribute is optional. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#category}. - @attr name android:category - */ - public static final int AidGroup_category = 1; - /** -

- @attr description - Short description of what the AID group implements. This attribute is mandatory. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#description}. - @attr name android:description - */ - public static final int AidGroup_description = 0; - /** - The set of attributes that describe a AlertDialog's theme. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #AlertDialog_bottomBright android:bottomBright}
{@link #AlertDialog_bottomDark android:bottomDark}
{@link #AlertDialog_bottomMedium android:bottomMedium}
{@link #AlertDialog_centerBright android:centerBright}
{@link #AlertDialog_centerDark android:centerDark}
{@link #AlertDialog_centerMedium android:centerMedium}
{@link #AlertDialog_fullBright android:fullBright}
{@link #AlertDialog_fullDark android:fullDark}
{@link #AlertDialog_horizontalProgressLayout android:horizontalProgressLayout}
{@link #AlertDialog_layout android:layout} Supply an identifier for the layout resource to inflate when the ViewStub - becomes visible or when forced to do so.
{@link #AlertDialog_listItemLayout android:listItemLayout}
{@link #AlertDialog_listLayout android:listLayout}
{@link #AlertDialog_multiChoiceItemLayout android:multiChoiceItemLayout}
{@link #AlertDialog_progressLayout android:progressLayout}
{@link #AlertDialog_singleChoiceItemLayout android:singleChoiceItemLayout}
{@link #AlertDialog_topBright android:topBright}
{@link #AlertDialog_topDark android:topDark}
- @see #AlertDialog_bottomBright - @see #AlertDialog_bottomDark - @see #AlertDialog_bottomMedium - @see #AlertDialog_centerBright - @see #AlertDialog_centerDark - @see #AlertDialog_centerMedium - @see #AlertDialog_fullBright - @see #AlertDialog_fullDark - @see #AlertDialog_horizontalProgressLayout - @see #AlertDialog_layout - @see #AlertDialog_listItemLayout - @see #AlertDialog_listLayout - @see #AlertDialog_multiChoiceItemLayout - @see #AlertDialog_progressLayout - @see #AlertDialog_singleChoiceItemLayout - @see #AlertDialog_topBright - @see #AlertDialog_topDark - */ - public static final int[] AlertDialog = { - 0x010100c6, 0x010100c7, 0x010100c8, 0x010100c9, - 0x010100ca, 0x010100cb, 0x010100cc, 0x010100cd, - 0x010100ce, 0x010100cf, 0x010100f2, 0x01010428, - 0x01010429, 0x0101042a, 0x0101042b, 0x0101042c, - 0x0101042d}; - /** -

This symbol is the offset where the {@link android.R.attr#bottomBright} - attribute's value can be found in the {@link #AlertDialog} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - @attr name android:bottomBright - */ - public static final int AlertDialog_bottomBright = 7; - /** -

This symbol is the offset where the {@link android.R.attr#bottomDark} - attribute's value can be found in the {@link #AlertDialog} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - @attr name android:bottomDark - */ - public static final int AlertDialog_bottomDark = 3; - /** -

This symbol is the offset where the {@link android.R.attr#bottomMedium} - attribute's value can be found in the {@link #AlertDialog} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - @attr name android:bottomMedium - */ - public static final int AlertDialog_bottomMedium = 8; - /** -

This symbol is the offset where the {@link android.R.attr#centerBright} - attribute's value can be found in the {@link #AlertDialog} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - @attr name android:centerBright - */ - public static final int AlertDialog_centerBright = 6; - /** -

This symbol is the offset where the {@link android.R.attr#centerDark} - attribute's value can be found in the {@link #AlertDialog} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - @attr name android:centerDark - */ - public static final int AlertDialog_centerDark = 2; - /** -

This symbol is the offset where the {@link android.R.attr#centerMedium} - attribute's value can be found in the {@link #AlertDialog} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - @attr name android:centerMedium - */ - public static final int AlertDialog_centerMedium = 9; - /** -

This symbol is the offset where the {@link android.R.attr#fullBright} - attribute's value can be found in the {@link #AlertDialog} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - @attr name android:fullBright - */ - public static final int AlertDialog_fullBright = 4; - /** -

This symbol is the offset where the {@link android.R.attr#fullDark} - attribute's value can be found in the {@link #AlertDialog} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - @attr name android:fullDark - */ - public static final int AlertDialog_fullDark = 0; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#horizontalProgressLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name com.android.internal:horizontalProgressLayout - */ - public static final int AlertDialog_horizontalProgressLayout = 16; - /** -

- @attr description - Supply an identifier for the layout resource to inflate when the ViewStub - becomes visible or when forced to do so. The layout resource must be a - valid reference to a layout. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout}. - @attr name android:layout - */ - public static final int AlertDialog_layout = 10; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#listItemLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name com.android.internal:listItemLayout - */ - public static final int AlertDialog_listItemLayout = 14; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#listLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name com.android.internal:listLayout - */ - public static final int AlertDialog_listLayout = 11; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#multiChoiceItemLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name com.android.internal:multiChoiceItemLayout - */ - public static final int AlertDialog_multiChoiceItemLayout = 12; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#progressLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name com.android.internal:progressLayout - */ - public static final int AlertDialog_progressLayout = 15; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#singleChoiceItemLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name com.android.internal:singleChoiceItemLayout - */ - public static final int AlertDialog_singleChoiceItemLayout = 13; - /** -

This symbol is the offset where the {@link android.R.attr#topBright} - attribute's value can be found in the {@link #AlertDialog} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - @attr name android:topBright - */ - public static final int AlertDialog_topBright = 5; - /** -

This symbol is the offset where the {@link android.R.attr#topDark} - attribute's value can be found in the {@link #AlertDialog} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - @attr name android:topDark - */ - public static final int AlertDialog_topDark = 1; - /** - Attributes that can be used with a AlphaAnimation. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #AlphaAnimation_fromAlpha android:fromAlpha}
{@link #AlphaAnimation_toAlpha android:toAlpha}
- @see #AlphaAnimation_fromAlpha - @see #AlphaAnimation_toAlpha - */ - public static final int[] AlphaAnimation = { - 0x010101ca, 0x010101cb}; - /** -

This symbol is the offset where the {@link android.R.attr#fromAlpha} - attribute's value can be found in the {@link #AlphaAnimation} array. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:fromAlpha - */ - public static final int AlphaAnimation_fromAlpha = 0; - /** -

This symbol is the offset where the {@link android.R.attr#toAlpha} - attribute's value can be found in the {@link #AlphaAnimation} array. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:toAlpha - */ - public static final int AlphaAnimation_toAlpha = 1; - /** - Attributes that can be used with a AnalogClock. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #AnalogClock_dial android:dial}
{@link #AnalogClock_hand_hour android:hand_hour}
{@link #AnalogClock_hand_minute android:hand_minute}
- @see #AnalogClock_dial - @see #AnalogClock_hand_hour - @see #AnalogClock_hand_minute - */ - public static final int[] AnalogClock = { - 0x01010102, 0x01010103, 0x01010104}; - /** -

This symbol is the offset where the {@link android.R.attr#dial} - attribute's value can be found in the {@link #AnalogClock} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name android:dial - */ - public static final int AnalogClock_dial = 0; - /** -

This symbol is the offset where the {@link android.R.attr#hand_hour} - attribute's value can be found in the {@link #AnalogClock} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name android:hand_hour - */ - public static final int AnalogClock_hand_hour = 1; - /** -

This symbol is the offset where the {@link android.R.attr#hand_minute} - attribute's value can be found in the {@link #AnalogClock} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name android:hand_minute - */ - public static final int AnalogClock_hand_minute = 2; - /** - The manifest tag is the root of an - AndroidManifest.xml file, - describing the contents of an Android package (.apk) file. One - attribute must always be supplied: package gives a - unique name for the package, using a Java-style naming convention - to avoid name collisions. For example, applications published - by Google could have names of the form - com.google.app.appname - -

Inside of the manifest tag, may appear the following tags - in any order: {@link #AndroidManifestPermission permission}, - {@link #AndroidManifestPermissionGroup permission-group}, - {@link #AndroidManifestPermissionTree permission-tree}, - {@link #AndroidManifestUsesSdk uses-sdk}, - {@link #AndroidManifestUsesPermission uses-permission}, - {@link #AndroidManifestUsesConfiguration uses-configuration}, - {@link #AndroidManifestApplication application}, - {@link #AndroidManifestInstrumentation instrumentation}, - {@link #AndroidManifestUsesFeature uses-feature}. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #AndroidManifest_installLocation android:installLocation} The default install location defined by an application.
{@link #AndroidManifest_sharedUserId android:sharedUserId} Specify the name of a user ID that will be shared between multiple - packages.
{@link #AndroidManifest_sharedUserLabel android:sharedUserLabel} Specify a label for the shared user UID of this package.
{@link #AndroidManifest_versionCode android:versionCode} Internal version code.
{@link #AndroidManifest_versionName android:versionName} The text shown to the user to indicate the version they have.
- @see #AndroidManifest_installLocation - @see #AndroidManifest_sharedUserId - @see #AndroidManifest_sharedUserLabel - @see #AndroidManifest_versionCode - @see #AndroidManifest_versionName - */ - public static final int[] AndroidManifest = { - 0x0101000b, 0x0101021b, 0x0101021c, 0x01010261, - 0x010102b7}; - /** -

- @attr description - The default install location defined by an application. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
auto0 Let the system decide ideal install location
internalOnly1 Explicitly request to be installed on internal phone storage - only.
preferExternal2 Prefer to be installed on SD card. There is no guarantee that - the system will honor this request. The application might end - up being installed on internal storage if external media - is unavailable or too full.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#installLocation}. - @attr name android:installLocation - */ - public static final int AndroidManifest_installLocation = 4; - /** -

- @attr description - Specify the name of a user ID that will be shared between multiple - packages. By default, each package gets its own unique user-id. - By setting this value on two or more packages, each of these packages - will be given a single shared user ID, so they can for example run - in the same process. Note that for them to actually get the same - user ID, they must also be signed with the same signature. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#sharedUserId}. - @attr name android:sharedUserId - */ - public static final int AndroidManifest_sharedUserId = 0; - /** -

- @attr description - Specify a label for the shared user UID of this package. This is - only used if you have also used android:sharedUserId. This must - be a reference to a string resource; it can not be an explicit - string. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#sharedUserLabel}. - @attr name android:sharedUserLabel - */ - public static final int AndroidManifest_sharedUserLabel = 3; - /** -

- @attr description - Internal version code. This is the number used to determine whether - one version is more recent than another: it has no other meaning than - that higher numbers are more recent. You could use this number to - encode a "x.y" in the lower and upper 16 bits, make it a build - number, simply increase it by one each time a new version is - released, or define it however else you want, as long as each - successive version has a higher number. This is not a version - number generally shown to the user, that is usually supplied - with {@link android.R.attr#versionName}. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#versionCode}. - @attr name android:versionCode - */ - public static final int AndroidManifest_versionCode = 1; - /** -

- @attr description - The text shown to the user to indicate the version they have. This - is used for no other purpose than display to the user; the actual - significant version number is given by {@link android.R.attr#versionCode}. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#versionName}. - @attr name android:versionName - */ - public static final int AndroidManifest_versionName = 2; - /** - Attributes that can be supplied in an AndroidManifest.xml - action tag, a child of the - {@link #AndroidManifestIntentFilter intent-filter} tag. - See {@link android.content.IntentFilter#addAction} for - more information. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #AndroidManifestAction_name android:name} The name of an action that is handled, using the Java-style - naming convention.
- @see #AndroidManifestAction_name - */ - public static final int[] AndroidManifestAction = { - 0x01010003}; - /** -

- @attr description - The name of an action that is handled, using the Java-style - naming convention. For example, to support - {@link android.content.Intent#ACTION_VIEW Intent.ACTION_VIEW} - you would put android.intent.action.VIEW here. - Custom actions should generally use a prefix matching the - package name. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestAction_name = 0; - /** - The activity tag declares an - {@link android.app.Activity} class that is available - as part of the package's application components, implementing - a part of the application's user interface. - -

Zero or more {@link #AndroidManifestIntentFilter intent-filter} - tags can be included inside of an activity, to specify the Intents - that it can handle. If none are specified, the activity can - only be started through direct specification of its class name. - The activity tag appears as a child tag of the - {@link #AndroidManifestApplication application} tag. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #AndroidManifestActivity_allowTaskReparenting android:allowTaskReparenting} Specify that an activity can be moved out of a task it is in to - the task it has an affinity for when appropriate.
{@link #AndroidManifestActivity_alwaysRetainTaskState android:alwaysRetainTaskState} Specify whether an acitivty's task state should always be maintained - by the system, or if it is allowed to reset the task to its initial - state in certain situations.
{@link #AndroidManifestActivity_clearTaskOnLaunch android:clearTaskOnLaunch} Specify whether an activity's task should be cleared when it - is re-launched from the home screen.
{@link #AndroidManifestActivity_configChanges android:configChanges} Specify one or more configuration changes that the activity will - handle itself.
{@link #AndroidManifestActivity_description android:description} Descriptive text for the associated data.
{@link #AndroidManifestActivity_enabled android:enabled} Specify whether the activity is enabled or not (that is, can be instantiated by the system).
{@link #AndroidManifestActivity_excludeFromRecents android:excludeFromRecents} Indicates that an Activity should be excluded from the list of - recently launched activities.
{@link #AndroidManifestActivity_exported android:exported} Flag indicating whether the given application component is available - to other applications.
{@link #AndroidManifestActivity_finishOnCloseSystemDialogs android:finishOnCloseSystemDialogs} Specify whether an activity should be finished when a "close system - windows" request has been made.
{@link #AndroidManifestActivity_finishOnTaskLaunch android:finishOnTaskLaunch} Specify whether an activity should be finished when its task is - brought to the foreground by relaunching from the home screen.
{@link #AndroidManifestActivity_hardwareAccelerated android:hardwareAccelerated}

Flag indicating whether the application's rendering should be hardware - accelerated if possible.

{@link #AndroidManifestActivity_icon android:icon} A Drawable resource providing a graphical representation of its - associated item.
{@link #AndroidManifestActivity_immersive android:immersive} Flag declaring this activity to be 'immersive'; immersive activities - should not be interrupted with other activities or notifications.
{@link #AndroidManifestActivity_label android:label} A user-legible name for the given item.
{@link #AndroidManifestActivity_launchMode android:launchMode} Specify how an activity should be launched.
{@link #AndroidManifestActivity_logo android:logo} A Drawable resource providing an extended graphical logo for its - associated item.
{@link #AndroidManifestActivity_multiprocess android:multiprocess} Specify whether a component is allowed to have multiple instances - of itself running in different processes.
{@link #AndroidManifestActivity_name android:name} Required name of the class implementing the activity, deriving from - {@link android.app.Activity}.
{@link #AndroidManifestActivity_noHistory android:noHistory} Specify whether an activity should be kept in its history stack.
{@link #AndroidManifestActivity_parentActivityName android:parentActivityName} The name of the logical parent of the activity as it appears in the manifest.
{@link #AndroidManifestActivity_permission android:permission} Specify a permission that a client is required to have in order to - use the associated object.
{@link #AndroidManifestActivity_primaryUserOnly android:primaryUserOnly} @hide This broacast receiver will only receive broadcasts for the - primary user.
{@link #AndroidManifestActivity_process android:process} Specify a specific process that the associated code is to run in.
{@link #AndroidManifestActivity_screenOrientation android:screenOrientation} Specify the orientation an activity should be run in.
{@link #AndroidManifestActivity_showOnLockScreen android:showOnLockScreen} Specify that an Activity should be shown over the lock screen and, - in a multiuser environment, across all users' windows
{@link #AndroidManifestActivity_singleUser android:singleUser} If set to true, a single instance of this component will run for - all users.
{@link #AndroidManifestActivity_stateNotNeeded android:stateNotNeeded} Indicates that an Activity does not need to have its freeze state - (as returned by {@link android.app.Activity#onSaveInstanceState} - retained in order to be restarted.
{@link #AndroidManifestActivity_taskAffinity android:taskAffinity} Specify a task name that activities have an "affinity" to.
{@link #AndroidManifestActivity_theme android:theme} The overall theme to use for an activity.
{@link #AndroidManifestActivity_uiOptions android:uiOptions} Extra options for an activity's UI.
{@link #AndroidManifestActivity_windowSoftInputMode android:windowSoftInputMode} Specify the default soft-input mode for the main window of - this activity.
- @see #AndroidManifestActivity_allowTaskReparenting - @see #AndroidManifestActivity_alwaysRetainTaskState - @see #AndroidManifestActivity_clearTaskOnLaunch - @see #AndroidManifestActivity_configChanges - @see #AndroidManifestActivity_description - @see #AndroidManifestActivity_enabled - @see #AndroidManifestActivity_excludeFromRecents - @see #AndroidManifestActivity_exported - @see #AndroidManifestActivity_finishOnCloseSystemDialogs - @see #AndroidManifestActivity_finishOnTaskLaunch - @see #AndroidManifestActivity_hardwareAccelerated - @see #AndroidManifestActivity_icon - @see #AndroidManifestActivity_immersive - @see #AndroidManifestActivity_label - @see #AndroidManifestActivity_launchMode - @see #AndroidManifestActivity_logo - @see #AndroidManifestActivity_multiprocess - @see #AndroidManifestActivity_name - @see #AndroidManifestActivity_noHistory - @see #AndroidManifestActivity_parentActivityName - @see #AndroidManifestActivity_permission - @see #AndroidManifestActivity_primaryUserOnly - @see #AndroidManifestActivity_process - @see #AndroidManifestActivity_screenOrientation - @see #AndroidManifestActivity_showOnLockScreen - @see #AndroidManifestActivity_singleUser - @see #AndroidManifestActivity_stateNotNeeded - @see #AndroidManifestActivity_taskAffinity - @see #AndroidManifestActivity_theme - @see #AndroidManifestActivity_uiOptions - @see #AndroidManifestActivity_windowSoftInputMode - */ - public static final int[] AndroidManifestActivity = { - 0x01010000, 0x01010001, 0x01010002, 0x01010003, - 0x01010006, 0x0101000e, 0x01010010, 0x01010011, - 0x01010012, 0x01010013, 0x01010014, 0x01010015, - 0x01010016, 0x01010017, 0x0101001d, 0x0101001e, - 0x0101001f, 0x01010020, 0x01010203, 0x01010204, - 0x0101022b, 0x0101022d, 0x010102a7, 0x010102be, - 0x010102c0, 0x010102d3, 0x01010398, 0x010103a7, - 0x010103bf, 0x010103c9, 0x01010480}; - /** -

- @attr description - Specify that an activity can be moved out of a task it is in to - the task it has an affinity for when appropriate. Use with the - application tag (to supply a default for all activities in the - application), or with an activity tag (to supply a specific - setting for that component). - -

Normally when an application is started, it is associated with - the task of the activity that started it and stays there for its - entire lifetime. You can use the allowTaskReparenting feature to force an - activity to be re-parented to a different task when the task it is - in goes to the background. Typically this is used to cause the - activities of an application to move back to the main task associated - with that application. The activity is re-parented to the task - with the same {@link android.R.attr#taskAffinity} as it has. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#allowTaskReparenting}. - @attr name android:allowTaskReparenting - */ - public static final int AndroidManifestActivity_allowTaskReparenting = 19; - /** -

- @attr description - Specify whether an acitivty's task state should always be maintained - by the system, or if it is allowed to reset the task to its initial - state in certain situations. - -

Normally the system will reset a task (remove all activities from - the stack and reset the root activity) in certain situations when - the user re-selects that task from the home screen. Typically this - will be done if the user hasn't visited that task for a certain - amount of time, such as 30 minutes. - -

By setting this attribute, the user will always return to your - task in its last state, regardless of how they get there. This is - useful, for example, in an application like the web browser where there - is a lot of state (such as multiple open tabs) that the application - would not like to lose. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#alwaysRetainTaskState}. - @attr name android:alwaysRetainTaskState - */ - public static final int AndroidManifestActivity_alwaysRetainTaskState = 18; - /** -

- @attr description - Specify whether an activity's task should be cleared when it - is re-launched from the home screen. As a result, every time the - user starts the task, they will be brought to its root activity, - regardless of whether they used BACK or HOME to last leave it. - This flag only applies to activities that - are used to start the root of a new task. - -

An example of the use of this flag would be for the case where - a user launches activity A from home, and from there goes to - activity B. They now press home, and then return to activity A. - Normally they would see activity B, since that is what they were - last doing in A's task. However, if A has set this flag to true, - then upon going to the background all of the tasks on top of it (B - in this case) are removed, so when the user next returns to A they - will restart at its original activity. - -

When this option is used in conjunction with - {@link android.R.attr#allowTaskReparenting}, the allowTaskReparenting trumps the - clear. That is, all activities above the root activity of the - task will be removed: those that have an affinity will be moved - to the task they are associated with, otherwise they will simply - be dropped as described here. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#clearTaskOnLaunch}. - @attr name android:clearTaskOnLaunch - */ - public static final int AndroidManifestActivity_clearTaskOnLaunch = 11; - /** -

- @attr description - Specify one or more configuration changes that the activity will - handle itself. If not specified, the activity will be restarted - if any of these configuration changes happen in the system. Otherwise, - the activity will remain running and its - {@link android.app.Activity#onConfigurationChanged Activity.onConfigurationChanged} - method called with the new configuration. - -

Note that all of these configuration changes can impact the - resource values seen by the application, so you will generally need - to re-retrieve all resources (including view layouts, drawables, etc) - to correctly handle any configuration change. - -

These values must be kept in sync with those in - {@link android.content.pm.ActivityInfo} and - include/utils/ResourceTypes.h. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
mcc0x0001 The IMSI MCC has changed, that is a SIM has been detected and - updated the Mobile Country Code.
mnc0x0002 The IMSI MNC has changed, that is a SIM has been detected and - updated the Mobile Network Code.
locale0x0004 The locale has changed, that is the user has selected a new - language that text should be displayed in.
touchscreen0x0008 The touchscreen has changed. Should never normally happen.
keyboard0x0010 The keyboard type has changed, for example the user has plugged - in an external keyboard.
keyboardHidden0x0020 The keyboard or navigation accessibility has changed, for example - the user has slid the keyboard out to expose it. Note that - despite its name, this applied to any accessibility: keyboard - or navigation.
navigation0x0040 The navigation type has changed. Should never normally happen.
orientation0x0080 The screen orientation has changed, that is the user has - rotated the device.
screenLayout0x0100 The screen layout has changed. This might be caused by a - different display being activated.
uiMode0x0200 The global user interface mode has changed. For example, - going in or out of car mode, night mode changing, etc.
screenSize0x0400 The current available screen size has changed. If applications don't - target at least {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2} - then the activity will always handle this itself (the change - will not result in a restart). This represents a change in the - currently available size, so will change when the user switches - between landscape and portrait.
smallestScreenSize0x0800 The physical screen size has changed. If applications don't - target at least {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2} - then the activity will always handle this itself (the change - will not result in a restart). This represents a change in size - regardless of orientation, so will only change when the actual - physical screen size has changed such as switching to an external - display.
layoutDirection0x2000 The layout direction has changed. For example going from LTR to RTL.
fontScale0x40000000 The font scaling factor has changed, that is the user has - selected a new global font size.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#configChanges}. - @attr name android:configChanges - */ - public static final int AndroidManifestActivity_configChanges = 16; - /** -

- @attr description - Descriptive text for the associated data. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#description}. - @attr name android:description - */ - public static final int AndroidManifestActivity_description = 17; - /** -

- @attr description - Specify whether the activity is enabled or not (that is, can be instantiated by the system). - It can also be specified for an application as a whole, in which case a value of "false" - will override any component specific values (a value of "true" will not override the - component specific values). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#enabled}. - @attr name android:enabled - */ - public static final int AndroidManifestActivity_enabled = 5; - /** -

- @attr description - Indicates that an Activity should be excluded from the list of - recently launched activities. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#excludeFromRecents}. - @attr name android:excludeFromRecents - */ - public static final int AndroidManifestActivity_excludeFromRecents = 13; - /** -

- @attr description - Flag indicating whether the given application component is available - to other applications. If false, it can only be accessed by - applications with its same user id (which usually means only by - code in its own package). If true, it can be invoked by external - entities, though which ones can do so may be controlled through - permissions. The default value is false for activity, receiver, - and service components that do not specify any intent filters; it - is true for activity, receiver, and service components that do - have intent filters (implying they expect to be invoked by others - who do not know their particular component name) and for all - content providers. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#exported}. - @attr name android:exported - */ - public static final int AndroidManifestActivity_exported = 6; - /** -

- @attr description - Specify whether an activity should be finished when a "close system - windows" request has been made. This happens, for example, when - the home key is pressed, when the device is locked, when a system - dialog showing recent applications is displayed, etc. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#finishOnCloseSystemDialogs}. - @attr name android:finishOnCloseSystemDialogs - */ - public static final int AndroidManifestActivity_finishOnCloseSystemDialogs = 22; - /** -

- @attr description - Specify whether an activity should be finished when its task is - brought to the foreground by relaunching from the home screen. - -

If both this option and {@link android.R.attr#allowTaskReparenting} are - specified, the finish trumps the affinity: the affinity will be - ignored and the activity simply finished. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#finishOnTaskLaunch}. - @attr name android:finishOnTaskLaunch - */ - public static final int AndroidManifestActivity_finishOnTaskLaunch = 10; - /** -

- @attr description -

Flag indicating whether the application's rendering should be hardware - accelerated if possible. This flag is turned on by default for applications - that are targeting {@link android.os.Build.VERSION_CODES#ICE_CREAM_SANDWICH} - or later.

-

This flag can be set on the application and any activity declared - in the manifest. When enabled for the application, each activity is - automatically assumed to be hardware accelerated. This flag can be - overridden in the activity tags, either turning it off (if on for the - application) or on (if off for the application.)

-

When this flag is turned on for an activity (either directly or via - the application tag), every window created from the activity, including - the activity's own window, will be hardware accelerated, if possible.

-

Please refer to the documentation of - {@link android.view.WindowManager.LayoutParams#FLAG_HARDWARE_ACCELERATED} - for more information on how to control this flag programmatically.

- - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#hardwareAccelerated}. - @attr name android:hardwareAccelerated - */ - public static final int AndroidManifestActivity_hardwareAccelerated = 25; - /** -

- @attr description - A Drawable resource providing a graphical representation of its - associated item. Use with the - application tag (to supply a default icon for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific icon for that component). It may also be - used with the intent-filter tag to supply an icon to show to the - user when an activity is being selected based on a particular Intent. - -

The given icon will be used to display to the user a graphical - representation of its associated component; for example, as the icon - for main activity that is displayed in the launcher. This must be - a reference to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int AndroidManifestActivity_icon = 2; - /** -

- @attr description - Flag declaring this activity to be 'immersive'; immersive activities - should not be interrupted with other activities or notifications. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#immersive}. - @attr name android:immersive - */ - public static final int AndroidManifestActivity_immersive = 24; - /** -

- @attr description - A user-legible name for the given item. Use with the - application tag (to supply a default label for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific label for that component). It may also be - used with the intent-filter tag to supply a label to show to the - user when an activity is being selected based on a particular Intent. - -

The given label will be used wherever the user sees information - about its associated component; for example, as the name of a - main activity that is displayed in the launcher. You should - generally set this to a reference to a string resource, so that - it can be localized, however it is also allowed to supply a plain - string for quick and dirty programming. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#label}. - @attr name android:label - */ - public static final int AndroidManifestActivity_label = 1; - /** -

- @attr description - Specify how an activity should be launched. See the - Tasks and Back - Stack document for important information on how these options impact - the behavior of your application. - -

If this attribute is not specified, standard launch - mode will be used. Note that the particular launch behavior can - be changed in some ways at runtime through the - {@link android.content.Intent} flags - {@link android.content.Intent#FLAG_ACTIVITY_SINGLE_TOP}, - {@link android.content.Intent#FLAG_ACTIVITY_NEW_TASK}, and - {@link android.content.Intent#FLAG_ACTIVITY_MULTIPLE_TASK}. - - -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
standard0 The default mode, which will usually create a new instance of - the activity when it is started, though this behavior may change - with the introduction of other options such as - {@link android.content.Intent#FLAG_ACTIVITY_NEW_TASK - Intent.FLAG_ACTIVITY_NEW_TASK}.
singleTop1 If, when starting the activity, there is already an - instance of the same activity class in the foreground that is - interacting with the user, then - re-use that instance. This existing instance will receive a call to - {@link android.app.Activity#onNewIntent Activity.onNewIntent()} with - the new Intent that is being started.
singleTask2 If, when starting the activity, there is already a task running - that starts with this activity, then instead of starting a new - instance the current task is brought to the front. The existing - instance will receive a call to {@link android.app.Activity#onNewIntent - Activity.onNewIntent()} - with the new Intent that is being started, and with the - {@link android.content.Intent#FLAG_ACTIVITY_BROUGHT_TO_FRONT - Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT} flag set. This is a superset - of the singleTop mode, where if there is already an instance - of the activity being started at the top of the stack, it will - receive the Intent as described there (without the - FLAG_ACTIVITY_BROUGHT_TO_FRONT flag set). See the - Tasks and Back - Stack document for more details about tasks.
singleInstance3 Only allow one instance of this activity to ever be - running. This activity gets a unique task with only itself running - in it; if it is ever launched again with the same Intent, then that - task will be brought forward and its - {@link android.app.Activity#onNewIntent Activity.onNewIntent()} - method called. If this - activity tries to start a new activity, that new activity will be - launched in a separate task. See the - Tasks and Back - Stack document for more details about tasks.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#launchMode}. - @attr name android:launchMode - */ - public static final int AndroidManifestActivity_launchMode = 14; - /** -

- @attr description - A Drawable resource providing an extended graphical logo for its - associated item. Use with the application tag (to supply a default - logo for all application components), or with the activity, receiver, - service, or instrumentation tag (to supply a specific logo for that - component). It may also be used with the intent-filter tag to supply - a logo to show to the user when an activity is being selected based - on a particular Intent. - -

The given logo will be used to display to the user a graphical - representation of its associated component; for example as the - header in the Action Bar. The primary differences between an icon - and a logo are that logos are often wider and more detailed, and are - used without an accompanying text caption. This must be a reference - to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#logo}. - @attr name android:logo - */ - public static final int AndroidManifestActivity_logo = 23; - /** -

- @attr description - Specify whether a component is allowed to have multiple instances - of itself running in different processes. Use with the activity - and provider tags. - -

Normally the system will ensure that all instances of a particular - component are only running in a single process. You can use this - attribute to disable that behavior, allowing the system to create - instances wherever they are used (provided permissions allow it). - This is most often used with content providers, so that instances - of a provider can be created in each client process, allowing them - to be used without performing IPC. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#multiprocess}. - @attr name android:multiprocess - */ - public static final int AndroidManifestActivity_multiprocess = 9; - /** -

- @attr description - Required name of the class implementing the activity, deriving from - {@link android.app.Activity}. This is a fully - qualified class name (for example, com.mycompany.myapp.MyActivity); as a - short-hand if the first character of the class - is a period then it is appended to your package name. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestActivity_name = 3; - /** -

- @attr description - Specify whether an activity should be kept in its history stack. - If this attribute is set, then as soon as the user navigates away - from the activity it will be finished and they will no longer be - able to return to it. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#noHistory}. - @attr name android:noHistory - */ - public static final int AndroidManifestActivity_noHistory = 21; - /** -

- @attr description - The name of the logical parent of the activity as it appears in the manifest. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#parentActivityName}. - @attr name android:parentActivityName - */ - public static final int AndroidManifestActivity_parentActivityName = 27; - /** -

- @attr description - Specify a permission that a client is required to have in order to - use the associated object. If the client does not hold the named - permission, its request will fail. See the - Security and Permissions - document for more information on permissions. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#permission}. - @attr name android:permission - */ - public static final int AndroidManifestActivity_permission = 4; - /** -

- @attr description - @hide This broacast receiver will only receive broadcasts for the - primary user. Can only be used with receivers. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:primaryUserOnly - */ - public static final int AndroidManifestActivity_primaryUserOnly = 30; - /** -

- @attr description - Specify a specific process that the associated code is to run in. - Use with the application tag (to supply a default process for all - application components), or with the activity, receiver, service, - or provider tag (to supply a specific icon for that component). - -

Application components are normally run in a single process that - is created for the entire application. You can use this tag to modify - where they run. If the process name begins with a ':' character, - a new process private to that application will be created when needed - to run that component (allowing you to spread your application across - multiple processes). If the process name begins with a lower-case - character, the component will be run in a global process of that name, - provided that you have permission to do so, allowing multiple - applications to share one process to reduce resource usage. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#process}. - @attr name android:process - */ - public static final int AndroidManifestActivity_process = 7; - /** -

- @attr description - Specify the orientation an activity should be run in. If not - specified, it will run in the current preferred orientation - of the screen. -

This attribute is supported by the {@code <activity>} - element. - - -

Must be one of the following constant values.

- - - - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
unspecified-1 No preference specified: let the system decide the best - orientation. This will either be the orientation selected - by the activity below, or the user's preferred orientation - if this activity is the bottom of a task. If the user - explicitly turned off sensor based orientation through settings - sensor based device rotation will be ignored. If not by default - sensor based orientation will be taken into account and the - orientation will changed based on how the user rotates the device. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_UNSPECIFIED}.
landscape0 Would like to have the screen in a landscape orientation: that - is, with the display wider than it is tall, ignoring sensor data. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_LANDSCAPE}.
portrait1 Would like to have the screen in a portrait orientation: that - is, with the display taller than it is wide, ignoring sensor data. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_PORTRAIT}.
user2 Use the user's current preferred orientation of the handset. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_USER}.
behind3 Keep the screen in the same orientation as whatever is behind - this activity. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_BEHIND}.
sensor4 Orientation is determined by a physical orientation sensor: - the display will rotate based on how the user moves the device. - Ignores user's setting to turn off sensor-based rotation. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_SENSOR}.
nosensor5 Always ignore orientation determined by orientation sensor: - the display will not rotate when the user moves the device. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_NOSENSOR}.
sensorLandscape6 Would like to have the screen in landscape orientation, but can - use the sensor to change which direction the screen is facing. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_SENSOR_LANDSCAPE}.
sensorPortrait7 Would like to have the screen in portrait orientation, but can - use the sensor to change which direction the screen is facing. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_SENSOR_PORTRAIT}.
reverseLandscape8 Would like to have the screen in landscape orientation, turned in - the opposite direction from normal landscape. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_REVERSE_LANDSCAPE}.
reversePortrait9 Would like to have the screen in portrait orientation, turned in - the opposite direction from normal portrait. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_REVERSE_PORTRAIT}.
fullSensor10 Orientation is determined by a physical orientation sensor: - the display will rotate based on how the user moves the device. - This allows any of the 4 possible rotations, regardless of what - the device will normally do (for example some devices won't - normally use 180 degree rotation). - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_FULL_SENSOR}.
userLandscape11 Would like to have the screen in landscape orientation, but if - the user has enabled sensor-based rotation then we can use the - sensor to change which direction the screen is facing. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_USER_LANDSCAPE}.
userPortrait12 Would like to have the screen in portrait orientation, but if - the user has enabled sensor-based rotation then we can use the - sensor to change which direction the screen is facing. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_USER_PORTRAIT}.
fullUser13 Respect the user's sensor-based rotation preference, but if - sensor-based rotation is enabled then allow the screen to rotate - in all 4 possible directions regardless of what - the device will normally do (for example some devices won't - normally use 180 degree rotation). - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_FULL_USER}.
locked14 Screen is locked to its current rotation, whatever that is. - Corresponds to - {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_LOCKED}.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#screenOrientation}. - @attr name android:screenOrientation - */ - public static final int AndroidManifestActivity_screenOrientation = 15; - /** -

- @attr description - Specify that an Activity should be shown over the lock screen and, - in a multiuser environment, across all users' windows - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#showOnLockScreen}. - @attr name android:showOnLockScreen - */ - public static final int AndroidManifestActivity_showOnLockScreen = 29; - /** -

- @attr description - If set to true, a single instance of this component will run for - all users. That instance will run as user 0, the default/primary - user. When the app running is in processes for other users and interacts - with this component (by binding to a service for example) those processes will - always interact with the instance running for user 0. Enabling - single user mode forces "exported" of the component to be false, to - help avoid introducing multi-user security bugs. This feature is only - available to applications built in to the system image; you must hold the - permission INTERACT_ACROSS_USERS in order - to use this feature. This flag can only be used with services, - receivers, and providers; it can not be used with activities. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#singleUser}. - @attr name android:singleUser - */ - public static final int AndroidManifestActivity_singleUser = 28; - /** -

- @attr description - Indicates that an Activity does not need to have its freeze state - (as returned by {@link android.app.Activity#onSaveInstanceState} - retained in order to be restarted. Generally you use this for activities - that do not store any state. When this flag is set, if for some reason - the activity is killed before it has a chance to save its state, - then the system will not remove it from the activity stack like - it normally would. Instead, the next time the user navigates to - it its {@link android.app.Activity#onCreate} method will be called - with a null icicle, just like it was starting for the first time. - -

This is used by the Home activity to make sure it does not get - removed if it crashes for some reason. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#stateNotNeeded}. - @attr name android:stateNotNeeded - */ - public static final int AndroidManifestActivity_stateNotNeeded = 12; - /** -

- @attr description - Specify a task name that activities have an "affinity" to. - Use with the application tag (to supply a default affinity for all - activities in the application), or with the activity tag (to supply - a specific affinity for that component). - -

The default value for this attribute is the same as the package - name, indicating that all activities in the manifest should generally - be considered a single "application" to the user. You can use this - attribute to modify that behavior: either giving them an affinity - for another task, if the activities are intended to be part of that - task from the user's perspective, or using an empty string for - activities that have no affinity to a task. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#taskAffinity}. - @attr name android:taskAffinity - */ - public static final int AndroidManifestActivity_taskAffinity = 8; - /** -

- @attr description - The overall theme to use for an activity. Use with either the - application tag (to supply a default theme for all activities) or - the activity tag (to supply a specific theme for that activity). - -

This automatically sets - your activity's Context to use this theme, and may also be used - for "starting" animations prior to the activity being launched (to - better match what the activity actually looks like). It is a reference - to a style resource defining the theme. If not set, the default - system theme will be used. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#theme}. - @attr name android:theme - */ - public static final int AndroidManifestActivity_theme = 0; - /** -

- @attr description - Extra options for an activity's UI. Applies to either the {@code <activity>} or - {@code <application>} tag. If specified on the {@code <application>} - tag these will be considered defaults for all activities in the - application. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - -
ConstantValueDescription
none0 No extra UI options. This is the default.
splitActionBarWhenNarrow1 Split the options menu into a separate bar at the bottom of - the screen when severely constrained for horizontal space. - (e.g. portrait mode on a phone.) Instead of a small number - of action buttons appearing in the action bar at the top - of the screen, the action bar will split into the top navigation - section and the bottom menu section. Menu items will not be - split across the two bars; they will always appear together.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#uiOptions}. - @attr name android:uiOptions - */ - public static final int AndroidManifestActivity_uiOptions = 26; - /** -

- @attr description - Specify the default soft-input mode for the main window of - this activity. A value besides "unspecified" here overrides - any value in the theme. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - -
ConstantValueDescription
stateUnspecified0 Not specified, use what the system thinks is best. This - is the default.
stateUnchanged1 Leave the soft input window as-is, in whatever state it - last was.
stateHidden2 Make the soft input area hidden when normally appropriate - (when the user is navigating forward to your window).
stateAlwaysHidden3 Always make the soft input area hidden when this window - has input focus.
stateVisible4 Make the soft input area visible when normally appropriate - (when the user is navigating forward to your window).
stateAlwaysVisible5 Always make the soft input area visible when this window - has input focus.
adjustUnspecified0x00 The window resize/pan adjustment has not been specified, - the system will automatically select between resize and pan - modes, depending - on whether the content of the window has any layout views - that can scroll their contents. If there is such a view, - then the window will be resized, with the assumption being - that the resizeable area can be reduced to make room for - the input UI.
adjustResize0x10 Always resize the window: the content area of the window is - reduced to make room for the soft input area.
adjustPan0x20 Don't resize the window to make room for the soft input area; - instead pan the contents of the window as focus moves inside - of it so that the user can see what they are typing. This is - generally less desireable than panning because the user may - need to close the input area to get at and interact with - parts of the window.
adjustNothing0x30 Don't resize or pan the window to make room for the - soft input area; the window is never adjusted for it.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowSoftInputMode}. - @attr name android:windowSoftInputMode - */ - public static final int AndroidManifestActivity_windowSoftInputMode = 20; - /** - The activity-alias tag declares a new - name for an existing {@link #AndroidManifestActivity activity} - tag. - -

Zero or more {@link #AndroidManifestIntentFilter intent-filter} - tags can be included inside of an activity-alias, to specify the Intents - that it can handle. If none are specified, the activity can - only be started through direct specification of its class name. - The activity-alias tag appears as a child tag of the - {@link #AndroidManifestApplication application} tag. -

Includes the following attributes:

- - - - - - - - - - - - - - -
AttributeDescription
{@link #AndroidManifestActivityAlias_description android:description} Descriptive text for the associated data.
{@link #AndroidManifestActivityAlias_enabled android:enabled} Specify whether the activity-alias is enabled or not (that is, can be instantiated by the system).
{@link #AndroidManifestActivityAlias_exported android:exported} Flag indicating whether the given application component is available - to other applications.
{@link #AndroidManifestActivityAlias_icon android:icon} A Drawable resource providing a graphical representation of its - associated item.
{@link #AndroidManifestActivityAlias_label android:label} A user-legible name for the given item.
{@link #AndroidManifestActivityAlias_logo android:logo} A Drawable resource providing an extended graphical logo for its - associated item.
{@link #AndroidManifestActivityAlias_name android:name} Required name of the class implementing the activity, deriving from - {@link android.app.Activity}.
{@link #AndroidManifestActivityAlias_parentActivityName android:parentActivityName} The name of the logical parent of the activity as it appears in the manifest.
{@link #AndroidManifestActivityAlias_permission android:permission} Specify a permission that a client is required to have in order to - use the associated object.
{@link #AndroidManifestActivityAlias_targetActivity android:targetActivity} The name of the activity this alias should launch.
- @see #AndroidManifestActivityAlias_description - @see #AndroidManifestActivityAlias_enabled - @see #AndroidManifestActivityAlias_exported - @see #AndroidManifestActivityAlias_icon - @see #AndroidManifestActivityAlias_label - @see #AndroidManifestActivityAlias_logo - @see #AndroidManifestActivityAlias_name - @see #AndroidManifestActivityAlias_parentActivityName - @see #AndroidManifestActivityAlias_permission - @see #AndroidManifestActivityAlias_targetActivity - */ - public static final int[] AndroidManifestActivityAlias = { - 0x01010001, 0x01010002, 0x01010003, 0x01010006, - 0x0101000e, 0x01010010, 0x01010020, 0x01010202, - 0x010102be, 0x010103a7}; - /** -

- @attr description - Descriptive text for the associated data. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#description}. - @attr name android:description - */ - public static final int AndroidManifestActivityAlias_description = 6; - /** -

- @attr description - Specify whether the activity-alias is enabled or not (that is, can be instantiated by the system). - It can also be specified for an application as a whole, in which case a value of "false" - will override any component specific values (a value of "true" will not override the - component specific values). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#enabled}. - @attr name android:enabled - */ - public static final int AndroidManifestActivityAlias_enabled = 4; - /** -

- @attr description - Flag indicating whether the given application component is available - to other applications. If false, it can only be accessed by - applications with its same user id (which usually means only by - code in its own package). If true, it can be invoked by external - entities, though which ones can do so may be controlled through - permissions. The default value is false for activity, receiver, - and service components that do not specify any intent filters; it - is true for activity, receiver, and service components that do - have intent filters (implying they expect to be invoked by others - who do not know their particular component name) and for all - content providers. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#exported}. - @attr name android:exported - */ - public static final int AndroidManifestActivityAlias_exported = 5; - /** -

- @attr description - A Drawable resource providing a graphical representation of its - associated item. Use with the - application tag (to supply a default icon for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific icon for that component). It may also be - used with the intent-filter tag to supply an icon to show to the - user when an activity is being selected based on a particular Intent. - -

The given icon will be used to display to the user a graphical - representation of its associated component; for example, as the icon - for main activity that is displayed in the launcher. This must be - a reference to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int AndroidManifestActivityAlias_icon = 1; - /** -

- @attr description - A user-legible name for the given item. Use with the - application tag (to supply a default label for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific label for that component). It may also be - used with the intent-filter tag to supply a label to show to the - user when an activity is being selected based on a particular Intent. - -

The given label will be used wherever the user sees information - about its associated component; for example, as the name of a - main activity that is displayed in the launcher. You should - generally set this to a reference to a string resource, so that - it can be localized, however it is also allowed to supply a plain - string for quick and dirty programming. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#label}. - @attr name android:label - */ - public static final int AndroidManifestActivityAlias_label = 0; - /** -

- @attr description - A Drawable resource providing an extended graphical logo for its - associated item. Use with the application tag (to supply a default - logo for all application components), or with the activity, receiver, - service, or instrumentation tag (to supply a specific logo for that - component). It may also be used with the intent-filter tag to supply - a logo to show to the user when an activity is being selected based - on a particular Intent. - -

The given logo will be used to display to the user a graphical - representation of its associated component; for example as the - header in the Action Bar. The primary differences between an icon - and a logo are that logos are often wider and more detailed, and are - used without an accompanying text caption. This must be a reference - to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#logo}. - @attr name android:logo - */ - public static final int AndroidManifestActivityAlias_logo = 8; - /** -

- @attr description - Required name of the class implementing the activity, deriving from - {@link android.app.Activity}. This is a fully - qualified class name (for example, com.mycompany.myapp.MyActivity); as a - short-hand if the first character of the class - is a period then it is appended to your package name. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestActivityAlias_name = 2; - /** -

- @attr description - The name of the logical parent of the activity as it appears in the manifest. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#parentActivityName}. - @attr name android:parentActivityName - */ - public static final int AndroidManifestActivityAlias_parentActivityName = 9; - /** -

- @attr description - Specify a permission that a client is required to have in order to - use the associated object. If the client does not hold the named - permission, its request will fail. See the - Security and Permissions - document for more information on permissions. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#permission}. - @attr name android:permission - */ - public static final int AndroidManifestActivityAlias_permission = 3; - /** -

- @attr description - The name of the activity this alias should launch. The activity - must be in the same manifest as the alias, and have been defined - in that manifest before the alias here. This must use a Java-style - naming convention to ensure the name is unique, for example - "com.mycompany.MyName". - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#targetActivity}. - @attr name android:targetActivity - */ - public static final int AndroidManifestActivityAlias_targetActivity = 7; - /** - The application tag describes application-level components - contained in the package, as well as general application - attributes. Many of the attributes you can supply here (such - as theme, label, icon, permission, process, taskAffinity, - and allowTaskReparenting) serve - as default values for the corresponding attributes of components - declared inside of the application. - -

Inside of this element you specify what the application contains, - using the elements {@link #AndroidManifestProvider provider}, - {@link #AndroidManifestService service}, - {@link #AndroidManifestReceiver receiver}, - {@link #AndroidManifestActivity activity}, - {@link #AndroidManifestActivityAlias activity-alias}, and - {@link #AndroidManifestUsesLibrary uses-library}. The application tag - appears as a child of the root {@link #AndroidManifest manifest} tag. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #AndroidManifestApplication_allowBackup android:allowBackup} Whether to allow the application to participate in the backup - and restore infrastructure.
{@link #AndroidManifestApplication_allowClearUserData android:allowClearUserData} Option to let applications specify that user data can/cannot be - cleared.
{@link #AndroidManifestApplication_allowTaskReparenting android:allowTaskReparenting} Specify that an activity can be moved out of a task it is in to - the task it has an affinity for when appropriate.
{@link #AndroidManifestApplication_backupAgent android:backupAgent} The name of the class subclassing BackupAgent to manage - backup and restore of the application's data on external storage.
{@link #AndroidManifestApplication_cantSaveState android:cantSaveState} Declare that this application can't participate in the normal - state save/restore mechanism.
{@link #AndroidManifestApplication_debuggable android:debuggable} Flag indicating whether the application can be debugged, even when - running on a device that is running in user mode.
{@link #AndroidManifestApplication_description android:description} Descriptive text for the associated data.
{@link #AndroidManifestApplication_enabled android:enabled} Specify whether the components in this application are enabled or not (that is, can be - instantiated by the system).
{@link #AndroidManifestApplication_hardwareAccelerated android:hardwareAccelerated}

Flag indicating whether the application's rendering should be hardware - accelerated if possible.

{@link #AndroidManifestApplication_hasCode android:hasCode} Indicate whether this application contains code.
{@link #AndroidManifestApplication_icon android:icon} A Drawable resource providing a graphical representation of its - associated item.
{@link #AndroidManifestApplication_killAfterRestore android:killAfterRestore} Whether the application in question should be terminated after its - settings have been restored during a full-system restore operation.
{@link #AndroidManifestApplication_label android:label} A user-legible name for the given item.
{@link #AndroidManifestApplication_largeHeap android:largeHeap} Request that your application's processes be created with - a large Dalvik heap.
{@link #AndroidManifestApplication_logo android:logo} A Drawable resource providing an extended graphical logo for its - associated item.
{@link #AndroidManifestApplication_manageSpaceActivity android:manageSpaceActivity} Name of activity to be launched for managing the application's space on the device.
{@link #AndroidManifestApplication_name android:name} An optional name of a class implementing the overall - {@link android.app.Application} for this package.
{@link #AndroidManifestApplication_neverEncrypt android:neverEncrypt} Option to let applications specify that user data should - never be encrypted if an Encrypted File System solution - is enabled.
{@link #AndroidManifestApplication_permission android:permission} Specify a permission that a client is required to have in order to - use the associated object.
{@link #AndroidManifestApplication_persistent android:persistent} Flag to control special persistent mode of an application.
{@link #AndroidManifestApplication_process android:process} Specify a specific process that the associated code is to run in.
{@link #AndroidManifestApplication_requiredAccountType android:requiredAccountType} Declare that this application requires an account of a certain - type.
{@link #AndroidManifestApplication_requiredForAllUsers android:requiredForAllUsers} Flag to specify if this application needs to be present for all users.
{@link #AndroidManifestApplication_restoreAnyVersion android:restoreAnyVersion} Indicate that the application is prepared to attempt a restore of any - backed-up dataset, even if the backup is apparently from a newer version - of the application than is currently installed on the device.
{@link #AndroidManifestApplication_restoreNeedsApplication android:restoreNeedsApplication} @deprecated This attribute is not used by the Android operating system.
{@link #AndroidManifestApplication_restrictedAccountType android:restrictedAccountType} Declare that this application requires access to restricted accounts of a certain - type.
{@link #AndroidManifestApplication_supportsRtl android:supportsRtl} Declare that your application will be able to deal with RTL (right to left) layouts.
{@link #AndroidManifestApplication_taskAffinity android:taskAffinity} Specify a task name that activities have an "affinity" to.
{@link #AndroidManifestApplication_testOnly android:testOnly} Option to indicate this application is only for testing purposes.
{@link #AndroidManifestApplication_theme android:theme} The overall theme to use for an activity.
{@link #AndroidManifestApplication_uiOptions android:uiOptions} Extra options for an activity's UI.
{@link #AndroidManifestApplication_vmSafeMode android:vmSafeMode} Flag indicating whether the application requests the VM to operate in - the safe mode.
- @see #AndroidManifestApplication_allowBackup - @see #AndroidManifestApplication_allowClearUserData - @see #AndroidManifestApplication_allowTaskReparenting - @see #AndroidManifestApplication_backupAgent - @see #AndroidManifestApplication_cantSaveState - @see #AndroidManifestApplication_debuggable - @see #AndroidManifestApplication_description - @see #AndroidManifestApplication_enabled - @see #AndroidManifestApplication_hardwareAccelerated - @see #AndroidManifestApplication_hasCode - @see #AndroidManifestApplication_icon - @see #AndroidManifestApplication_killAfterRestore - @see #AndroidManifestApplication_label - @see #AndroidManifestApplication_largeHeap - @see #AndroidManifestApplication_logo - @see #AndroidManifestApplication_manageSpaceActivity - @see #AndroidManifestApplication_name - @see #AndroidManifestApplication_neverEncrypt - @see #AndroidManifestApplication_permission - @see #AndroidManifestApplication_persistent - @see #AndroidManifestApplication_process - @see #AndroidManifestApplication_requiredAccountType - @see #AndroidManifestApplication_requiredForAllUsers - @see #AndroidManifestApplication_restoreAnyVersion - @see #AndroidManifestApplication_restoreNeedsApplication - @see #AndroidManifestApplication_restrictedAccountType - @see #AndroidManifestApplication_supportsRtl - @see #AndroidManifestApplication_taskAffinity - @see #AndroidManifestApplication_testOnly - @see #AndroidManifestApplication_theme - @see #AndroidManifestApplication_uiOptions - @see #AndroidManifestApplication_vmSafeMode - */ - public static final int[] AndroidManifestApplication = { - 0x01010000, 0x01010001, 0x01010002, 0x01010003, - 0x01010004, 0x01010005, 0x01010006, 0x0101000c, - 0x0101000d, 0x0101000e, 0x0101000f, 0x01010011, - 0x01010012, 0x01010020, 0x01010204, 0x01010272, - 0x0101027f, 0x01010280, 0x0101029c, 0x0101029d, - 0x010102b8, 0x010102ba, 0x010102be, 0x010102d3, - 0x0101035a, 0x01010398, 0x010103af, 0x010103d0, - 0x010103d5, 0x010103d6, 0x0101047e, 0x0101047f}; - /** -

- @attr description - Whether to allow the application to participate in the backup - and restore infrastructure. If this attribute is set to false, - no backup or restore of the application will ever be performed, even by a - full-system backup that would otherwise cause all application data to be saved - via adb. The default value of this attribute is true. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#allowBackup}. - @attr name android:allowBackup - */ - public static final int AndroidManifestApplication_allowBackup = 17; - /** -

- @attr description - Option to let applications specify that user data can/cannot be - cleared. This flag is turned on by default. - This attribute is usable only by applications - included in the system image. Third-party apps cannot use it. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#allowClearUserData}. - @attr name android:allowClearUserData - */ - public static final int AndroidManifestApplication_allowClearUserData = 5; - /** -

- @attr description - Specify that an activity can be moved out of a task it is in to - the task it has an affinity for when appropriate. Use with the - application tag (to supply a default for all activities in the - application), or with an activity tag (to supply a specific - setting for that component). - -

Normally when an application is started, it is associated with - the task of the activity that started it and stays there for its - entire lifetime. You can use the allowTaskReparenting feature to force an - activity to be re-parented to a different task when the task it is - in goes to the background. Typically this is used to cause the - activities of an application to move back to the main task associated - with that application. The activity is re-parented to the task - with the same {@link android.R.attr#taskAffinity} as it has. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#allowTaskReparenting}. - @attr name android:allowTaskReparenting - */ - public static final int AndroidManifestApplication_allowTaskReparenting = 14; - /** -

- @attr description - The name of the class subclassing BackupAgent to manage - backup and restore of the application's data on external storage. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#backupAgent}. - @attr name android:backupAgent - */ - public static final int AndroidManifestApplication_backupAgent = 16; - /** -

- @attr description - Declare that this application can't participate in the normal - state save/restore mechanism. Since it is not able to save and - restore its state on demand, - it can not participate in the normal activity lifecycle. It will - not be killed while in the background; the user must explicitly - quit it. Only one such app can be running at a time; if the user - tries to launch a second such app, they will be prompted - to quit the first before doing so. While the - application is running, the user will be informed of this. - @hide - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:cantSaveState - */ - public static final int AndroidManifestApplication_cantSaveState = 31; - /** -

- @attr description - Flag indicating whether the application can be debugged, even when - running on a device that is running in user mode. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#debuggable}. - @attr name android:debuggable - */ - public static final int AndroidManifestApplication_debuggable = 10; - /** -

- @attr description - Descriptive text for the associated data. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#description}. - @attr name android:description - */ - public static final int AndroidManifestApplication_description = 13; - /** -

- @attr description - Specify whether the components in this application are enabled or not (that is, can be - instantiated by the system). - If "false", it overrides any component specific values (a value of "true" will not - override the component specific values). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#enabled}. - @attr name android:enabled - */ - public static final int AndroidManifestApplication_enabled = 9; - /** -

- @attr description -

Flag indicating whether the application's rendering should be hardware - accelerated if possible. This flag is turned on by default for applications - that are targeting {@link android.os.Build.VERSION_CODES#ICE_CREAM_SANDWICH} - or later.

-

This flag can be set on the application and any activity declared - in the manifest. When enabled for the application, each activity is - automatically assumed to be hardware accelerated. This flag can be - overridden in the activity tags, either turning it off (if on for the - application) or on (if off for the application.)

-

When this flag is turned on for an activity (either directly or via - the application tag), every window created from the activity, including - the activity's own window, will be hardware accelerated, if possible.

-

Please refer to the documentation of - {@link android.view.WindowManager.LayoutParams#FLAG_HARDWARE_ACCELERATED} - for more information on how to control this flag programmatically.

- - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#hardwareAccelerated}. - @attr name android:hardwareAccelerated - */ - public static final int AndroidManifestApplication_hardwareAccelerated = 23; - /** -

- @attr description - Indicate whether this application contains code. If set to false, - there is no code associated with it and thus the system will not - try to load its code when launching components. The default is true - for normal behavior. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#hasCode}. - @attr name android:hasCode - */ - public static final int AndroidManifestApplication_hasCode = 7; - /** -

- @attr description - A Drawable resource providing a graphical representation of its - associated item. Use with the - application tag (to supply a default icon for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific icon for that component). It may also be - used with the intent-filter tag to supply an icon to show to the - user when an activity is being selected based on a particular Intent. - -

The given icon will be used to display to the user a graphical - representation of its associated component; for example, as the icon - for main activity that is displayed in the launcher. This must be - a reference to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int AndroidManifestApplication_icon = 2; - /** -

- @attr description - Whether the application in question should be terminated after its - settings have been restored during a full-system restore operation. - Single-package restore operations will never cause the application to - be shut down. Full-system restore operations typically only occur once, - when the phone is first set up. Third-party applications will not usually - need to use this attribute. - -

The default is true, which means that after the application - has finished processing its data during a full-system restore, it will be - terminated. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#killAfterRestore}. - @attr name android:killAfterRestore - */ - public static final int AndroidManifestApplication_killAfterRestore = 18; - /** -

- @attr description - A user-legible name for the given item. Use with the - application tag (to supply a default label for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific label for that component). It may also be - used with the intent-filter tag to supply a label to show to the - user when an activity is being selected based on a particular Intent. - -

The given label will be used wherever the user sees information - about its associated component; for example, as the name of a - main activity that is displayed in the launcher. You should - generally set this to a reference to a string resource, so that - it can be localized, however it is also allowed to supply a plain - string for quick and dirty programming. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#label}. - @attr name android:label - */ - public static final int AndroidManifestApplication_label = 1; - /** -

- @attr description - Request that your application's processes be created with - a large Dalvik heap. This applies to all processes - created for the application. It only applies to the first - application loaded into a process; if using a sharedUserId - to allow multiple applications to use a process, they all must - use this option consistently or will get unpredictable results. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#largeHeap}. - @attr name android:largeHeap - */ - public static final int AndroidManifestApplication_largeHeap = 24; - /** -

- @attr description - A Drawable resource providing an extended graphical logo for its - associated item. Use with the application tag (to supply a default - logo for all application components), or with the activity, receiver, - service, or instrumentation tag (to supply a specific logo for that - component). It may also be used with the intent-filter tag to supply - a logo to show to the user when an activity is being selected based - on a particular Intent. - -

The given logo will be used to display to the user a graphical - representation of its associated component; for example as the - header in the Action Bar. The primary differences between an icon - and a logo are that logos are often wider and more detailed, and are - used without an accompanying text caption. This must be a reference - to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#logo}. - @attr name android:logo - */ - public static final int AndroidManifestApplication_logo = 22; - /** -

- @attr description - Name of activity to be launched for managing the application's space on the device. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#manageSpaceActivity}. - @attr name android:manageSpaceActivity - */ - public static final int AndroidManifestApplication_manageSpaceActivity = 4; - /** -

- @attr description - An optional name of a class implementing the overall - {@link android.app.Application} for this package. When the - process for your package is started, this class is instantiated - before any of the other application components. Note that this - is not required, and in fact most applications will probably - not need it. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestApplication_name = 3; - /** -

- @attr description - Option to let applications specify that user data should - never be encrypted if an Encrypted File System solution - is enabled. Specifically, this is an "opt-out" feature, meaning - that, by default, user data will be encrypted if the EFS feature - is enabled. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:neverEncrypt - */ - public static final int AndroidManifestApplication_neverEncrypt = 30; - /** -

- @attr description - Specify a permission that a client is required to have in order to - use the associated object. If the client does not hold the named - permission, its request will fail. See the - Security and Permissions - document for more information on permissions. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#permission}. - @attr name android:permission - */ - public static final int AndroidManifestApplication_permission = 6; - /** -

- @attr description - Flag to control special persistent mode of an application. This should - not normally be used by applications; it requires that the system keep - your application running at all times. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#persistent}. - @attr name android:persistent - */ - public static final int AndroidManifestApplication_persistent = 8; - /** -

- @attr description - Specify a specific process that the associated code is to run in. - Use with the application tag (to supply a default process for all - application components), or with the activity, receiver, service, - or provider tag (to supply a specific icon for that component). - -

Application components are normally run in a single process that - is created for the entire application. You can use this tag to modify - where they run. If the process name begins with a ':' character, - a new process private to that application will be created when needed - to run that component (allowing you to spread your application across - multiple processes). If the process name begins with a lower-case - character, the component will be run in a global process of that name, - provided that you have permission to do so, allowing multiple - applications to share one process to reduce resource usage. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#process}. - @attr name android:process - */ - public static final int AndroidManifestApplication_process = 11; - /** -

- @attr description - Declare that this application requires an account of a certain - type. The default value is null and indicates that the application can work without - any accounts. The type should correspond to the account authenticator type, such as - "com.google". - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#requiredAccountType}. - @attr name android:requiredAccountType - */ - public static final int AndroidManifestApplication_requiredAccountType = 29; - /** -

- @attr description - Flag to specify if this application needs to be present for all users. Only pre-installed - applications can request this feature. Default value is false. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#requiredForAllUsers}. - @attr name android:requiredForAllUsers - */ - public static final int AndroidManifestApplication_requiredForAllUsers = 27; - /** -

- @attr description - Indicate that the application is prepared to attempt a restore of any - backed-up dataset, even if the backup is apparently from a newer version - of the application than is currently installed on the device. Setting - this attribute to true will permit the Backup Manager to - attempt restore even when a version mismatch suggests that the data are - incompatible. Use with caution! - -

The default value of this attribute is false. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#restoreAnyVersion}. - @attr name android:restoreAnyVersion - */ - public static final int AndroidManifestApplication_restoreAnyVersion = 21; - /** -

- @attr description - @deprecated This attribute is not used by the Android operating system. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#restoreNeedsApplication}. - @attr name android:restoreNeedsApplication - */ - @Deprecated - public static final int AndroidManifestApplication_restoreNeedsApplication = 19; - /** -

- @attr description - Declare that this application requires access to restricted accounts of a certain - type. The default value is null and restricted accounts won\'t be visible to this - application. The type should correspond to the account authenticator type, such as - "com.google". - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#restrictedAccountType}. - @attr name android:restrictedAccountType - */ - public static final int AndroidManifestApplication_restrictedAccountType = 28; - /** -

- @attr description - Declare that your application will be able to deal with RTL (right to left) layouts. - If set to false (default value), your application will not care about RTL layouts. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#supportsRtl}. - @attr name android:supportsRtl - */ - public static final int AndroidManifestApplication_supportsRtl = 26; - /** -

- @attr description - Specify a task name that activities have an "affinity" to. - Use with the application tag (to supply a default affinity for all - activities in the application), or with the activity tag (to supply - a specific affinity for that component). - -

The default value for this attribute is the same as the package - name, indicating that all activities in the manifest should generally - be considered a single "application" to the user. You can use this - attribute to modify that behavior: either giving them an affinity - for another task, if the activities are intended to be part of that - task from the user's perspective, or using an empty string for - activities that have no affinity to a task. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#taskAffinity}. - @attr name android:taskAffinity - */ - public static final int AndroidManifestApplication_taskAffinity = 12; - /** -

- @attr description - Option to indicate this application is only for testing purposes. - For example, it may expose functionality or data outside of itself - that would cause a security hole, but is useful for testing. This - kind of application can not be installed without the - INSTALL_ALLOW_TEST flag, which means only through adb install. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#testOnly}. - @attr name android:testOnly - */ - public static final int AndroidManifestApplication_testOnly = 15; - /** -

- @attr description - The overall theme to use for an activity. Use with either the - application tag (to supply a default theme for all activities) or - the activity tag (to supply a specific theme for that activity). - -

This automatically sets - your activity's Context to use this theme, and may also be used - for "starting" animations prior to the activity being launched (to - better match what the activity actually looks like). It is a reference - to a style resource defining the theme. If not set, the default - system theme will be used. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#theme}. - @attr name android:theme - */ - public static final int AndroidManifestApplication_theme = 0; - /** -

- @attr description - Extra options for an activity's UI. Applies to either the {@code <activity>} or - {@code <application>} tag. If specified on the {@code <application>} - tag these will be considered defaults for all activities in the - application. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - -
ConstantValueDescription
none0 No extra UI options. This is the default.
splitActionBarWhenNarrow1 Split the options menu into a separate bar at the bottom of - the screen when severely constrained for horizontal space. - (e.g. portrait mode on a phone.) Instead of a small number - of action buttons appearing in the action bar at the top - of the screen, the action bar will split into the top navigation - section and the bottom menu section. Menu items will not be - split across the two bars; they will always appear together.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#uiOptions}. - @attr name android:uiOptions - */ - public static final int AndroidManifestApplication_uiOptions = 25; - /** -

- @attr description - Flag indicating whether the application requests the VM to operate in - the safe mode. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#vmSafeMode}. - @attr name android:vmSafeMode - */ - public static final int AndroidManifestApplication_vmSafeMode = 20; - /** - Attributes that can be supplied in an AndroidManifest.xml - category tag, a child of the - {@link #AndroidManifestIntentFilter intent-filter} tag. - See {@link android.content.IntentFilter#addCategory} for - more information. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #AndroidManifestCategory_name android:name} The name of category that is handled, using the Java-style - naming convention.
- @see #AndroidManifestCategory_name - */ - public static final int[] AndroidManifestCategory = { - 0x01010003}; - /** -

- @attr description - The name of category that is handled, using the Java-style - naming convention. For example, to support - {@link android.content.Intent#CATEGORY_LAUNCHER Intent.CATEGORY_LAUNCHER} - you would put android.intent.category.LAUNCHER here. - Custom actions should generally use a prefix matching the - package name. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestCategory_name = 0; - /** - Attributes that can be supplied in an AndroidManifest.xml - screen tag, a child of compatible-screens, - which is itself a child of the root - {@link #AndroidManifest manifest} tag. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #AndroidManifestCompatibleScreensScreen_screenDensity android:screenDensity} Specifies a compatible screen density, as per the device - configuration screen density bins.
{@link #AndroidManifestCompatibleScreensScreen_screenSize android:screenSize} Specifies a compatible screen size, as per the device - configuration screen size bins.
- @see #AndroidManifestCompatibleScreensScreen_screenDensity - @see #AndroidManifestCompatibleScreensScreen_screenSize - */ - public static final int[] AndroidManifestCompatibleScreensScreen = { - 0x010102ca, 0x010102cb}; - /** -

- @attr description - Specifies a compatible screen density, as per the device - configuration screen density bins. - - -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
ldpi120 A low density screen, approximately 120dpi.
mdpi160 A medium density screen, approximately 160dpi.
hdpi240 A high density screen, approximately 240dpi.
xhdpi320 An extra high density screen, approximately 320dpi.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#screenDensity}. - @attr name android:screenDensity - */ - public static final int AndroidManifestCompatibleScreensScreen_screenDensity = 1; - /** -

- @attr description - Specifies a compatible screen size, as per the device - configuration screen size bins. - - -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
small200 A small screen configuration, at least 240x320dp.
normal300 A normal screen configuration, at least 320x480dp.
large400 A large screen configuration, at least 400x530dp.
xlarge500 An extra large screen configuration, at least 600x800dp.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#screenSize}. - @attr name android:screenSize - */ - public static final int AndroidManifestCompatibleScreensScreen_screenSize = 0; - /** - Attributes that can be supplied in an AndroidManifest.xml - data tag, a child of the - {@link #AndroidManifestIntentFilter intent-filter} tag, describing - the types of data that match. This tag can be specified multiple - times to supply multiple data options, as described in the - {@link android.content.IntentFilter} class. Note that all such - tags are adding options to the same IntentFilter so that, for example, - <data android:scheme="myscheme" android:host="me.com" /> - is equivalent to <data android:scheme="myscheme" /> - <data android:host="me.com" />. -

Includes the following attributes:

- - - - - - - - - - - - - - -
AttributeDescription
{@link #AndroidManifestData_host android:host} Specify a URI authority host that is handled, as per - {@link android.content.IntentFilter#addDataAuthority - IntentFilter.addDataAuthority()}.
{@link #AndroidManifestData_mimeType android:mimeType} Specify a MIME type that is handled, as per - {@link android.content.IntentFilter#addDataType - IntentFilter.addDataType()}.
{@link #AndroidManifestData_path android:path} Specify a URI path that must exactly match, as per - {@link android.content.IntentFilter#addDataPath - IntentFilter.addDataPath()} with - {@link android.os.PatternMatcher#PATTERN_LITERAL}.
{@link #AndroidManifestData_pathPattern android:pathPattern} Specify a URI path that matches a simple pattern, as per - {@link android.content.IntentFilter#addDataPath - IntentFilter.addDataPath()} with - {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}.
{@link #AndroidManifestData_pathPrefix android:pathPrefix} Specify a URI path that must be a prefix to match, as per - {@link android.content.IntentFilter#addDataPath - IntentFilter.addDataPath()} with - {@link android.os.PatternMatcher#PATTERN_PREFIX}.
{@link #AndroidManifestData_port android:port} Specify a URI authority port that is handled, as per - {@link android.content.IntentFilter#addDataAuthority - IntentFilter.addDataAuthority()}.
{@link #AndroidManifestData_scheme android:scheme} Specify a URI scheme that is handled, as per - {@link android.content.IntentFilter#addDataScheme - IntentFilter.addDataScheme()}.
{@link #AndroidManifestData_ssp android:ssp} Specify a URI scheme specific part that must exactly match, as per - {@link android.content.IntentFilter#addDataSchemeSpecificPart - IntentFilter.addDataSchemeSpecificPart()} with - {@link android.os.PatternMatcher#PATTERN_LITERAL}.
{@link #AndroidManifestData_sspPattern android:sspPattern} Specify a URI scheme specific part that matches a simple pattern, as per - {@link android.content.IntentFilter#addDataSchemeSpecificPart - IntentFilter.addDataSchemeSpecificPart()} with - {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}.
{@link #AndroidManifestData_sspPrefix android:sspPrefix} Specify a URI scheme specific part that must be a prefix to match, as per - {@link android.content.IntentFilter#addDataSchemeSpecificPart - IntentFilter.addDataSchemeSpecificPart()} with - {@link android.os.PatternMatcher#PATTERN_PREFIX}.
- @see #AndroidManifestData_host - @see #AndroidManifestData_mimeType - @see #AndroidManifestData_path - @see #AndroidManifestData_pathPattern - @see #AndroidManifestData_pathPrefix - @see #AndroidManifestData_port - @see #AndroidManifestData_scheme - @see #AndroidManifestData_ssp - @see #AndroidManifestData_sspPattern - @see #AndroidManifestData_sspPrefix - */ - public static final int[] AndroidManifestData = { - 0x01010026, 0x01010027, 0x01010028, 0x01010029, - 0x0101002a, 0x0101002b, 0x0101002c, 0x010103e3, - 0x010103e4, 0x010103e5}; - /** -

- @attr description - Specify a URI authority host that is handled, as per - {@link android.content.IntentFilter#addDataAuthority - IntentFilter.addDataAuthority()}. -

Note: host name matching in the Android framework is - case-sensitive, unlike the formal RFC. As a result, - host names here should always use lower case letters.

- - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#host}. - @attr name android:host - */ - public static final int AndroidManifestData_host = 2; - /** -

- @attr description - Specify a MIME type that is handled, as per - {@link android.content.IntentFilter#addDataType - IntentFilter.addDataType()}. -

Note: MIME type matching in the Android framework is - case-sensitive, unlike formal RFC MIME types. As a result, - MIME types here should always use lower case letters.

- - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#mimeType}. - @attr name android:mimeType - */ - public static final int AndroidManifestData_mimeType = 0; - /** -

- @attr description - Specify a URI path that must exactly match, as per - {@link android.content.IntentFilter#addDataPath - IntentFilter.addDataPath()} with - {@link android.os.PatternMatcher#PATTERN_LITERAL}. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#path}. - @attr name android:path - */ - public static final int AndroidManifestData_path = 4; - /** -

- @attr description - Specify a URI path that matches a simple pattern, as per - {@link android.content.IntentFilter#addDataPath - IntentFilter.addDataPath()} with - {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}. - Note that because '\' is used as an escape character when - reading the string from XML (before it is parsed as a pattern), - you will need to double-escape: for example a literal "*" would - be written as "\\*" and a literal "\" would be written as - "\\\\". This is basically the same as what you would need to - write if constructing the string in Java code. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#pathPattern}. - @attr name android:pathPattern - */ - public static final int AndroidManifestData_pathPattern = 6; - /** -

- @attr description - Specify a URI path that must be a prefix to match, as per - {@link android.content.IntentFilter#addDataPath - IntentFilter.addDataPath()} with - {@link android.os.PatternMatcher#PATTERN_PREFIX}. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#pathPrefix}. - @attr name android:pathPrefix - */ - public static final int AndroidManifestData_pathPrefix = 5; - /** -

- @attr description - Specify a URI authority port that is handled, as per - {@link android.content.IntentFilter#addDataAuthority - IntentFilter.addDataAuthority()}. If a host is supplied - but not a port, any port is matched. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#port}. - @attr name android:port - */ - public static final int AndroidManifestData_port = 3; - /** -

- @attr description - Specify a URI scheme that is handled, as per - {@link android.content.IntentFilter#addDataScheme - IntentFilter.addDataScheme()}. -

Note: scheme matching in the Android framework is - case-sensitive, unlike the formal RFC. As a result, - schemes here should always use lower case letters.

- - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scheme}. - @attr name android:scheme - */ - public static final int AndroidManifestData_scheme = 1; - /** -

- @attr description - Specify a URI scheme specific part that must exactly match, as per - {@link android.content.IntentFilter#addDataSchemeSpecificPart - IntentFilter.addDataSchemeSpecificPart()} with - {@link android.os.PatternMatcher#PATTERN_LITERAL}. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#ssp}. - @attr name android:ssp - */ - public static final int AndroidManifestData_ssp = 7; - /** -

- @attr description - Specify a URI scheme specific part that matches a simple pattern, as per - {@link android.content.IntentFilter#addDataSchemeSpecificPart - IntentFilter.addDataSchemeSpecificPart()} with - {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}. - Note that because '\' is used as an escape character when - reading the string from XML (before it is parsed as a pattern), - you will need to double-escape: for example a literal "*" would - be written as "\\*" and a literal "\" would be written as - "\\\\". This is basically the same as what you would need to - write if constructing the string in Java code. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#sspPattern}. - @attr name android:sspPattern - */ - public static final int AndroidManifestData_sspPattern = 9; - /** -

- @attr description - Specify a URI scheme specific part that must be a prefix to match, as per - {@link android.content.IntentFilter#addDataSchemeSpecificPart - IntentFilter.addDataSchemeSpecificPart()} with - {@link android.os.PatternMatcher#PATTERN_PREFIX}. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#sspPrefix}. - @attr name android:sspPrefix - */ - public static final int AndroidManifestData_sspPrefix = 8; - /** - Attributes that can be supplied in an AndroidManifest.xml - grant-uri-permission tag, a child of the - {@link #AndroidManifestProvider provider} tag, describing a specific - URI path that can be granted as a permission. This tag can be - specified multiple time to supply multiple paths. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #AndroidManifestGrantUriPermission_path android:path} Specify a URI path that must exactly match, as per - {@link android.os.PatternMatcher} with - {@link android.os.PatternMatcher#PATTERN_LITERAL}.
{@link #AndroidManifestGrantUriPermission_pathPattern android:pathPattern} Specify a URI path that matches a simple pattern, as per - {@link android.os.PatternMatcher} with - {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}.
{@link #AndroidManifestGrantUriPermission_pathPrefix android:pathPrefix} Specify a URI path that must be a prefix to match, as per - {@link android.os.PatternMatcher} with - {@link android.os.PatternMatcher#PATTERN_PREFIX}.
- @see #AndroidManifestGrantUriPermission_path - @see #AndroidManifestGrantUriPermission_pathPattern - @see #AndroidManifestGrantUriPermission_pathPrefix - */ - public static final int[] AndroidManifestGrantUriPermission = { - 0x0101002a, 0x0101002b, 0x0101002c}; - /** -

- @attr description - Specify a URI path that must exactly match, as per - {@link android.os.PatternMatcher} with - {@link android.os.PatternMatcher#PATTERN_LITERAL}. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#path}. - @attr name android:path - */ - public static final int AndroidManifestGrantUriPermission_path = 0; - /** -

- @attr description - Specify a URI path that matches a simple pattern, as per - {@link android.os.PatternMatcher} with - {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}. - Note that because '\' is used as an escape character when - reading the string from XML (before it is parsed as a pattern), - you will need to double-escape: for example a literal "*" would - be written as "\\*" and a literal "\" would be written as - "\\\\". This is basically the same as what you would need to - write if constructing the string in Java code. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#pathPattern}. - @attr name android:pathPattern - */ - public static final int AndroidManifestGrantUriPermission_pathPattern = 2; - /** -

- @attr description - Specify a URI path that must be a prefix to match, as per - {@link android.os.PatternMatcher} with - {@link android.os.PatternMatcher#PATTERN_PREFIX}. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#pathPrefix}. - @attr name android:pathPrefix - */ - public static final int AndroidManifestGrantUriPermission_pathPrefix = 1; - /** - Attributes that can be supplied in an AndroidManifest.xml - instrumentation tag, a child of the root - {@link #AndroidManifest manifest} tag. -

Includes the following attributes:

- - - - - - - - - - - -
AttributeDescription
{@link #AndroidManifestInstrumentation_functionalTest android:functionalTest} Flag indicating that an Instrumentation class should be run as a - functional test.
{@link #AndroidManifestInstrumentation_handleProfiling android:handleProfiling} Flag indicating that an Instrumentation class wants to take care - of starting/stopping profiling itself, rather than relying on - the default behavior of profiling the complete time it is running.
{@link #AndroidManifestInstrumentation_icon android:icon} A Drawable resource providing a graphical representation of its - associated item.
{@link #AndroidManifestInstrumentation_label android:label} A user-legible name for the given item.
{@link #AndroidManifestInstrumentation_logo android:logo} A Drawable resource providing an extended graphical logo for its - associated item.
{@link #AndroidManifestInstrumentation_name android:name} Required name of the class implementing the instrumentation, deriving from - {@link android.app.Instrumentation}.
{@link #AndroidManifestInstrumentation_targetPackage android:targetPackage} The name of the application package that an Instrumentation object - will run against.
- @see #AndroidManifestInstrumentation_functionalTest - @see #AndroidManifestInstrumentation_handleProfiling - @see #AndroidManifestInstrumentation_icon - @see #AndroidManifestInstrumentation_label - @see #AndroidManifestInstrumentation_logo - @see #AndroidManifestInstrumentation_name - @see #AndroidManifestInstrumentation_targetPackage - */ - public static final int[] AndroidManifestInstrumentation = { - 0x01010001, 0x01010002, 0x01010003, 0x01010021, - 0x01010022, 0x01010023, 0x010102be}; - /** -

- @attr description - Flag indicating that an Instrumentation class should be run as a - functional test. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#functionalTest}. - @attr name android:functionalTest - */ - public static final int AndroidManifestInstrumentation_functionalTest = 5; - /** -

- @attr description - Flag indicating that an Instrumentation class wants to take care - of starting/stopping profiling itself, rather than relying on - the default behavior of profiling the complete time it is running. - This allows it to target profiling data at a specific set of - operations. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#handleProfiling}. - @attr name android:handleProfiling - */ - public static final int AndroidManifestInstrumentation_handleProfiling = 4; - /** -

- @attr description - A Drawable resource providing a graphical representation of its - associated item. Use with the - application tag (to supply a default icon for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific icon for that component). It may also be - used with the intent-filter tag to supply an icon to show to the - user when an activity is being selected based on a particular Intent. - -

The given icon will be used to display to the user a graphical - representation of its associated component; for example, as the icon - for main activity that is displayed in the launcher. This must be - a reference to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int AndroidManifestInstrumentation_icon = 1; - /** -

- @attr description - A user-legible name for the given item. Use with the - application tag (to supply a default label for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific label for that component). It may also be - used with the intent-filter tag to supply a label to show to the - user when an activity is being selected based on a particular Intent. - -

The given label will be used wherever the user sees information - about its associated component; for example, as the name of a - main activity that is displayed in the launcher. You should - generally set this to a reference to a string resource, so that - it can be localized, however it is also allowed to supply a plain - string for quick and dirty programming. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#label}. - @attr name android:label - */ - public static final int AndroidManifestInstrumentation_label = 0; - /** -

- @attr description - A Drawable resource providing an extended graphical logo for its - associated item. Use with the application tag (to supply a default - logo for all application components), or with the activity, receiver, - service, or instrumentation tag (to supply a specific logo for that - component). It may also be used with the intent-filter tag to supply - a logo to show to the user when an activity is being selected based - on a particular Intent. - -

The given logo will be used to display to the user a graphical - representation of its associated component; for example as the - header in the Action Bar. The primary differences between an icon - and a logo are that logos are often wider and more detailed, and are - used without an accompanying text caption. This must be a reference - to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#logo}. - @attr name android:logo - */ - public static final int AndroidManifestInstrumentation_logo = 6; - /** -

- @attr description - Required name of the class implementing the instrumentation, deriving from - {@link android.app.Instrumentation}. This is a fully - qualified class name (for example, com.mycompany.myapp.MyActivity); as a - short-hand if the first character of the class - is a period then it is appended to your package name. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestInstrumentation_name = 2; - /** -

- @attr description - The name of the application package that an Instrumentation object - will run against. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#targetPackage}. - @attr name android:targetPackage - */ - public static final int AndroidManifestInstrumentation_targetPackage = 3; - /** - The intent-filter tag is used to construct an - {@link android.content.IntentFilter} object that will be used - to determine which component can handle a particular - {@link android.content.Intent} that has been given to the system. - It can be used as a child of the - {@link #AndroidManifestActivity activity}, - {@link #AndroidManifestReceiver receiver} and - {@link #AndroidManifestService service} - tags. - -

Zero or more {@link #AndroidManifestAction action}, - {@link #AndroidManifestCategory category}, and/or - {@link #AndroidManifestData data} tags should be - included inside to describe the contents of the filter. - -

The optional label and icon attributes here are used with - an activity to supply an alternative description of that activity - when it is being started through an Intent matching this filter. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #AndroidManifestIntentFilter_icon android:icon} A Drawable resource providing a graphical representation of its - associated item.
{@link #AndroidManifestIntentFilter_label android:label} A user-legible name for the given item.
{@link #AndroidManifestIntentFilter_logo android:logo} A Drawable resource providing an extended graphical logo for its - associated item.
{@link #AndroidManifestIntentFilter_priority android:priority} Specify the relative importance or ability in handling a particular - Intent.
- @see #AndroidManifestIntentFilter_icon - @see #AndroidManifestIntentFilter_label - @see #AndroidManifestIntentFilter_logo - @see #AndroidManifestIntentFilter_priority - */ - public static final int[] AndroidManifestIntentFilter = { - 0x01010001, 0x01010002, 0x0101001c, 0x010102be}; - /** -

- @attr description - A Drawable resource providing a graphical representation of its - associated item. Use with the - application tag (to supply a default icon for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific icon for that component). It may also be - used with the intent-filter tag to supply an icon to show to the - user when an activity is being selected based on a particular Intent. - -

The given icon will be used to display to the user a graphical - representation of its associated component; for example, as the icon - for main activity that is displayed in the launcher. This must be - a reference to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int AndroidManifestIntentFilter_icon = 1; - /** -

- @attr description - A user-legible name for the given item. Use with the - application tag (to supply a default label for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific label for that component). It may also be - used with the intent-filter tag to supply a label to show to the - user when an activity is being selected based on a particular Intent. - -

The given label will be used wherever the user sees information - about its associated component; for example, as the name of a - main activity that is displayed in the launcher. You should - generally set this to a reference to a string resource, so that - it can be localized, however it is also allowed to supply a plain - string for quick and dirty programming. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#label}. - @attr name android:label - */ - public static final int AndroidManifestIntentFilter_label = 0; - /** -

- @attr description - A Drawable resource providing an extended graphical logo for its - associated item. Use with the application tag (to supply a default - logo for all application components), or with the activity, receiver, - service, or instrumentation tag (to supply a specific logo for that - component). It may also be used with the intent-filter tag to supply - a logo to show to the user when an activity is being selected based - on a particular Intent. - -

The given logo will be used to display to the user a graphical - representation of its associated component; for example as the - header in the Action Bar. The primary differences between an icon - and a logo are that logos are often wider and more detailed, and are - used without an accompanying text caption. This must be a reference - to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#logo}. - @attr name android:logo - */ - public static final int AndroidManifestIntentFilter_logo = 3; - /** -

- @attr description - Specify the relative importance or ability in handling a particular - Intent. For receivers, this controls the order in which they are - executed to receive a broadcast (note that for - asynchronous broadcasts, this order is ignored). For activities, - this provides information about how good an activity is handling an - Intent; when multiple activities match an intent and have different - priorities, only those with the higher priority value will be - considered a match. - -

Only use if you really need to impose some specific - order in which the broadcasts are received, or want to forcibly - place an activity to always be preferred over others. The value is a - single integer, with higher numbers considered to be better. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#priority}. - @attr name android:priority - */ - public static final int AndroidManifestIntentFilter_priority = 2; - /** - The library tag declares that this apk is providing itself - as a shared library for other applications to use. It can only be used - with apks that are built in to the system image. Other apks can link to - it with the {@link #AndroidManifestUsesLibrary uses-library} tag. - -

This appears as a child tag of the - {@link #AndroidManifestApplication application} tag. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #AndroidManifestLibrary_name android:name} Required public name of the library, which other components and - packages will use when referring to this library.
- @see #AndroidManifestLibrary_name - */ - public static final int[] AndroidManifestLibrary = { - 0x01010003}; - /** -

- @attr description - Required public name of the library, which other components and - packages will use when referring to this library. This is a string using - Java-style scoping to ensure it is unique. The name should typically - be the same as the apk's package name. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestLibrary_name = 0; - /** - The meta-data tag is used to attach additional - arbitrary data to an application component. The data can later - be retrieved programmatically from the - {@link android.content.pm.ComponentInfo#metaData - ComponentInfo.metaData} field. There is no meaning given to this - data by the system. You may supply the data through either the - value or resource attribute; if both - are given, then resource will be used. - -

It is highly recommended that you avoid supplying related data as - multiple separate meta-data entries. Instead, if you have complex - data to associate with a component, then use the resource - attribute to assign an XML resource that the client can parse to - retrieve the complete data. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #AndroidManifestMetaData_name android:name} A unique name for the given item.
{@link #AndroidManifestMetaData_resource android:resource} Resource identifier to assign to this piece of named meta-data.
{@link #AndroidManifestMetaData_value android:value} Concrete value to assign to this piece of named meta-data.
- @see #AndroidManifestMetaData_name - @see #AndroidManifestMetaData_resource - @see #AndroidManifestMetaData_value - */ - public static final int[] AndroidManifestMetaData = { - 0x01010003, 0x01010024, 0x01010025}; - /** -

- @attr description - A unique name for the given item. This must use a Java-style naming - convention to ensure the name is unique, for example - "com.mycompany.MyName". - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestMetaData_name = 0; - /** -

- @attr description - Resource identifier to assign to this piece of named meta-data. - The resource identifier can later be retrieved from the meta data - Bundle through {@link android.os.Bundle#getInt Bundle.getInt}. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#resource}. - @attr name android:resource - */ - public static final int AndroidManifestMetaData_resource = 2; - /** -

- @attr description - Concrete value to assign to this piece of named meta-data. - The data can later be retrieved from the meta data Bundle - through {@link android.os.Bundle#getString Bundle.getString}, - {@link android.os.Bundle#getInt Bundle.getInt}, - {@link android.os.Bundle#getBoolean Bundle.getBoolean}, - or {@link android.os.Bundle#getFloat Bundle.getFloat} depending - on the type used here. - - -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

May be an integer value, such as "100". -

May be a boolean value, either "true" or "false". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

May be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#value}. - @attr name android:value - */ - public static final int AndroidManifestMetaData_value = 1; - /** - Private tag to declare the original package name that this package is - based on. Only used for packages installed in the system image. If - given, and different than the actual package name, and the given - original package was previously installed on the device but the new - one was not, then the data for the old one will be renamed to be - for the new package. - -

This appears as a child tag of the root - {@link #AndroidManifest manifest} tag. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #AndroidManifestOriginalPackage_name android:name} A unique name for the given item.
- @see #AndroidManifestOriginalPackage_name - */ - public static final int[] AndroidManifestOriginalPackage = { - 0x01010003}; - /** -

- @attr description - A unique name for the given item. This must use a Java-style naming - convention to ensure the name is unique, for example - "com.mycompany.MyName". - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestOriginalPackage_name = 0; - /** - Attributes relating to a package verifier. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #AndroidManifestPackageVerifier_name android:name} Specifies the Java-style package name that defines this - package verifier.
{@link #AndroidManifestPackageVerifier_publicKey android:publicKey} The Base64 encoded public key of the package verifier's - signature.
- @see #AndroidManifestPackageVerifier_name - @see #AndroidManifestPackageVerifier_publicKey - */ - public static final int[] AndroidManifestPackageVerifier = { - 0x01010003, 0x010103a6}; - /** -

- @attr description - Specifies the Java-style package name that defines this - package verifier. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestPackageVerifier_name = 0; - /** -

- @attr description - The Base64 encoded public key of the package verifier's - signature. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#publicKey}. - @attr name android:publicKey - */ - public static final int AndroidManifestPackageVerifier_publicKey = 1; - /** - Attributes that can be supplied in an AndroidManifest.xml - path-permission tag, a child of the - {@link #AndroidManifestProvider provider} tag, describing a permission - that allows access to a specific path in the provider. This tag can be - specified multiple time to supply multiple paths. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #AndroidManifestPathPermission_path android:path} Specify a URI path that must exactly match, as per - {@link android.os.PatternMatcher} with - {@link android.os.PatternMatcher#PATTERN_LITERAL}.
{@link #AndroidManifestPathPermission_pathPattern android:pathPattern} Specify a URI path that matches a simple pattern, as per - {@link android.os.PatternMatcher} with - {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}.
{@link #AndroidManifestPathPermission_pathPrefix android:pathPrefix} Specify a URI path that must be a prefix to match, as per - {@link android.os.PatternMatcher} with - {@link android.os.PatternMatcher#PATTERN_PREFIX}.
{@link #AndroidManifestPathPermission_permission android:permission} Specify a permission that a client is required to have in order to - use the associated object.
{@link #AndroidManifestPathPermission_readPermission android:readPermission} A specific {@link android.R.attr#permission} name for read-only - access to a {@link android.content.ContentProvider}.
{@link #AndroidManifestPathPermission_writePermission android:writePermission} A specific {@link android.R.attr#permission} name for write - access to a {@link android.content.ContentProvider}.
- @see #AndroidManifestPathPermission_path - @see #AndroidManifestPathPermission_pathPattern - @see #AndroidManifestPathPermission_pathPrefix - @see #AndroidManifestPathPermission_permission - @see #AndroidManifestPathPermission_readPermission - @see #AndroidManifestPathPermission_writePermission - */ - public static final int[] AndroidManifestPathPermission = { - 0x01010006, 0x01010007, 0x01010008, 0x0101002a, - 0x0101002b, 0x0101002c}; - /** -

- @attr description - Specify a URI path that must exactly match, as per - {@link android.os.PatternMatcher} with - {@link android.os.PatternMatcher#PATTERN_LITERAL}. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#path}. - @attr name android:path - */ - public static final int AndroidManifestPathPermission_path = 3; - /** -

- @attr description - Specify a URI path that matches a simple pattern, as per - {@link android.os.PatternMatcher} with - {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}. - Note that because '\' is used as an escape character when - reading the string from XML (before it is parsed as a pattern), - you will need to double-escape: for example a literal "*" would - be written as "\\*" and a literal "\" would be written as - "\\\\". This is basically the same as what you would need to - write if constructing the string in Java code. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#pathPattern}. - @attr name android:pathPattern - */ - public static final int AndroidManifestPathPermission_pathPattern = 5; - /** -

- @attr description - Specify a URI path that must be a prefix to match, as per - {@link android.os.PatternMatcher} with - {@link android.os.PatternMatcher#PATTERN_PREFIX}. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#pathPrefix}. - @attr name android:pathPrefix - */ - public static final int AndroidManifestPathPermission_pathPrefix = 4; - /** -

- @attr description - Specify a permission that a client is required to have in order to - use the associated object. If the client does not hold the named - permission, its request will fail. See the - Security and Permissions - document for more information on permissions. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#permission}. - @attr name android:permission - */ - public static final int AndroidManifestPathPermission_permission = 0; - /** -

- @attr description - A specific {@link android.R.attr#permission} name for read-only - access to a {@link android.content.ContentProvider}. See the - Security and Permissions - document for more information on permissions. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#readPermission}. - @attr name android:readPermission - */ - public static final int AndroidManifestPathPermission_readPermission = 1; - /** -

- @attr description - A specific {@link android.R.attr#permission} name for write - access to a {@link android.content.ContentProvider}. See the - Security and Permissions - document for more information on permissions. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#writePermission}. - @attr name android:writePermission - */ - public static final int AndroidManifestPathPermission_writePermission = 2; - /** - The permission tag declares a security permission that can be - used to control access from other packages to specific components or - features in your package (or other packages). See the - Security and Permissions - document for more information on permissions. - -

This appears as a child tag of the root - {@link #AndroidManifest manifest} tag. -

Includes the following attributes:

- - - - - - - - - - - - -
AttributeDescription
{@link #AndroidManifestPermission_description android:description} Descriptive text for the associated data.
{@link #AndroidManifestPermission_icon android:icon} A Drawable resource providing a graphical representation of its - associated item.
{@link #AndroidManifestPermission_label android:label} A user-legible name for the given item.
{@link #AndroidManifestPermission_logo android:logo} A Drawable resource providing an extended graphical logo for its - associated item.
{@link #AndroidManifestPermission_name android:name} Required public name of the permission, which other components and - packages will use when referring to this permission.
{@link #AndroidManifestPermission_permissionFlags android:permissionFlags} Flags indicating more context for a permission.
{@link #AndroidManifestPermission_permissionGroup android:permissionGroup} Specified the name of a group that this permission is associated - with.
{@link #AndroidManifestPermission_protectionLevel android:protectionLevel} Characterizes the potential risk implied in a permission and - indicates the procedure the system should follow when determining - whether to grant the permission to an application requesting it.
- @see #AndroidManifestPermission_description - @see #AndroidManifestPermission_icon - @see #AndroidManifestPermission_label - @see #AndroidManifestPermission_logo - @see #AndroidManifestPermission_name - @see #AndroidManifestPermission_permissionFlags - @see #AndroidManifestPermission_permissionGroup - @see #AndroidManifestPermission_protectionLevel - */ - public static final int[] AndroidManifestPermission = { - 0x01010001, 0x01010002, 0x01010003, 0x01010009, - 0x0101000a, 0x01010020, 0x010102be, 0x010103c7}; - /** -

- @attr description - Descriptive text for the associated data. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#description}. - @attr name android:description - */ - public static final int AndroidManifestPermission_description = 5; - /** -

- @attr description - A Drawable resource providing a graphical representation of its - associated item. Use with the - application tag (to supply a default icon for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific icon for that component). It may also be - used with the intent-filter tag to supply an icon to show to the - user when an activity is being selected based on a particular Intent. - -

The given icon will be used to display to the user a graphical - representation of its associated component; for example, as the icon - for main activity that is displayed in the launcher. This must be - a reference to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int AndroidManifestPermission_icon = 1; - /** -

- @attr description - A user-legible name for the given item. Use with the - application tag (to supply a default label for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific label for that component). It may also be - used with the intent-filter tag to supply a label to show to the - user when an activity is being selected based on a particular Intent. - -

The given label will be used wherever the user sees information - about its associated component; for example, as the name of a - main activity that is displayed in the launcher. You should - generally set this to a reference to a string resource, so that - it can be localized, however it is also allowed to supply a plain - string for quick and dirty programming. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#label}. - @attr name android:label - */ - public static final int AndroidManifestPermission_label = 0; - /** -

- @attr description - A Drawable resource providing an extended graphical logo for its - associated item. Use with the application tag (to supply a default - logo for all application components), or with the activity, receiver, - service, or instrumentation tag (to supply a specific logo for that - component). It may also be used with the intent-filter tag to supply - a logo to show to the user when an activity is being selected based - on a particular Intent. - -

The given logo will be used to display to the user a graphical - representation of its associated component; for example as the - header in the Action Bar. The primary differences between an icon - and a logo are that logos are often wider and more detailed, and are - used without an accompanying text caption. This must be a reference - to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#logo}. - @attr name android:logo - */ - public static final int AndroidManifestPermission_logo = 6; - /** -

- @attr description - Required public name of the permission, which other components and - packages will use when referring to this permission. This is a string using - Java-style scoping to ensure it is unique. The prefix will often - be the same as our overall package name, for example - "com.mycompany.android.myapp.SomePermission". - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestPermission_name = 2; - /** -

- @attr description - Flags indicating more context for a permission. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - -
ConstantValueDescription
costsMoney0x0001 Set to indicate that this permission allows an operation that - may cost the user money. Such permissions may be highlighted - when shown to the user with this additional information.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#permissionFlags}. - @attr name android:permissionFlags - */ - public static final int AndroidManifestPermission_permissionFlags = 7; - /** -

- @attr description - Specified the name of a group that this permission is associated - with. The group must have been defined with the - {@link android.R.styleable#AndroidManifestPermissionGroup permission-group} tag. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#permissionGroup}. - @attr name android:permissionGroup - */ - public static final int AndroidManifestPermission_permissionGroup = 4; - /** -

- @attr description - Characterizes the potential risk implied in a permission and - indicates the procedure the system should follow when determining - whether to grant the permission to an application requesting it. {@link - android.Manifest.permission Standard permissions} have a predefined and - permanent protectionLevel. If you are creating a custom permission in an - application, you can define a protectionLevel attribute with one of the - values listed below. If no protectionLevel is defined for a custom - permission, the system assigns the default ("normal"). - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - -
ConstantValueDescription
normal0 A lower-risk permission that gives an application access to isolated - application-level features, with minimal risk to other applications, - the system, or the user. The system automatically grants this type - of permission to a requesting application at installation, without - asking for the user's explicit approval (though the user always - has the option to review these permissions before installing).
dangerous1 A higher-risk permission that would give a requesting application - access to private user data or control over the device that can - negatively impact the user. Because this type of permission - introduces potential risk, the system may not automatically - grant it to the requesting application. For example, any dangerous - permissions requested by an application may be displayed to the - user and require confirmation before proceeding, or some other - approach may be taken to avoid the user automatically allowing - the use of such facilities.
signature2 A permission that the system is to grant only if the requesting - application is signed with the same certificate as the application - that declared the permission. If the certificates match, the system - automatically grants the permission without notifying the user or - asking for the user's explicit approval.
signatureOrSystem3 A permission that the system is to grant only to packages in the - Android system image or that are signed with the same - certificates. Please avoid using this option, as the - signature protection level should be sufficient for most needs and - works regardless of exactly where applications are installed. This - permission is used for certain special situations where multiple - vendors have applications built in to a system image which need - to share specific features explicitly because they are being built - together.
system0x10 Additional flag from base permission type: this permission can also - be granted to any applications installed on the system image. - Please avoid using this option, as the - signature protection level should be sufficient for most needs and - works regardless of exactly where applications are installed. This - permission flag is used for certain special situations where multiple - vendors have applications built in to a system image which need - to share specific features explicitly because they are being built - together.
development0x20 Additional flag from base permission type: this permission can also - (optionally) be granted to development applications.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#protectionLevel}. - @attr name android:protectionLevel - */ - public static final int AndroidManifestPermission_protectionLevel = 3; - /** - The permission-group tag declares a logical grouping of - related permissions. - -

Note that this tag does not declare a permission itself, only - a namespace in which further permissions can be placed. See - the {@link #AndroidManifestPermission <permission>} tag for - more information. - -

This appears as a child tag of the root - {@link #AndroidManifest manifest} tag. -

Includes the following attributes:

- - - - - - - - - - - -
AttributeDescription
{@link #AndroidManifestPermissionGroup_description android:description} Descriptive text for the associated data.
{@link #AndroidManifestPermissionGroup_icon android:icon} A Drawable resource providing a graphical representation of its - associated item.
{@link #AndroidManifestPermissionGroup_label android:label} A user-legible name for the given item.
{@link #AndroidManifestPermissionGroup_logo android:logo} A Drawable resource providing an extended graphical logo for its - associated item.
{@link #AndroidManifestPermissionGroup_name android:name} Required public name of the permission group, permissions will use - to specify the group they are in.
{@link #AndroidManifestPermissionGroup_permissionGroupFlags android:permissionGroupFlags} Flags indicating more context for a permission group.
{@link #AndroidManifestPermissionGroup_priority android:priority} Specify the relative importance or ability in handling a particular - Intent.
- @see #AndroidManifestPermissionGroup_description - @see #AndroidManifestPermissionGroup_icon - @see #AndroidManifestPermissionGroup_label - @see #AndroidManifestPermissionGroup_logo - @see #AndroidManifestPermissionGroup_name - @see #AndroidManifestPermissionGroup_permissionGroupFlags - @see #AndroidManifestPermissionGroup_priority - */ - public static final int[] AndroidManifestPermissionGroup = { - 0x01010001, 0x01010002, 0x01010003, 0x0101001c, - 0x01010020, 0x010102be, 0x010103c5}; - /** -

- @attr description - Descriptive text for the associated data. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#description}. - @attr name android:description - */ - public static final int AndroidManifestPermissionGroup_description = 4; - /** -

- @attr description - A Drawable resource providing a graphical representation of its - associated item. Use with the - application tag (to supply a default icon for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific icon for that component). It may also be - used with the intent-filter tag to supply an icon to show to the - user when an activity is being selected based on a particular Intent. - -

The given icon will be used to display to the user a graphical - representation of its associated component; for example, as the icon - for main activity that is displayed in the launcher. This must be - a reference to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int AndroidManifestPermissionGroup_icon = 1; - /** -

- @attr description - A user-legible name for the given item. Use with the - application tag (to supply a default label for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific label for that component). It may also be - used with the intent-filter tag to supply a label to show to the - user when an activity is being selected based on a particular Intent. - -

The given label will be used wherever the user sees information - about its associated component; for example, as the name of a - main activity that is displayed in the launcher. You should - generally set this to a reference to a string resource, so that - it can be localized, however it is also allowed to supply a plain - string for quick and dirty programming. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#label}. - @attr name android:label - */ - public static final int AndroidManifestPermissionGroup_label = 0; - /** -

- @attr description - A Drawable resource providing an extended graphical logo for its - associated item. Use with the application tag (to supply a default - logo for all application components), or with the activity, receiver, - service, or instrumentation tag (to supply a specific logo for that - component). It may also be used with the intent-filter tag to supply - a logo to show to the user when an activity is being selected based - on a particular Intent. - -

The given logo will be used to display to the user a graphical - representation of its associated component; for example as the - header in the Action Bar. The primary differences between an icon - and a logo are that logos are often wider and more detailed, and are - used without an accompanying text caption. This must be a reference - to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#logo}. - @attr name android:logo - */ - public static final int AndroidManifestPermissionGroup_logo = 5; - /** -

- @attr description - Required public name of the permission group, permissions will use - to specify the group they are in. This is a string using - Java-style scoping to ensure it is unique. The prefix will often - be the same as our overall package name, for example - "com.mycompany.android.myapp.SomePermission". - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestPermissionGroup_name = 2; - /** -

- @attr description - Flags indicating more context for a permission group. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - -
ConstantValueDescription
personalInfo0x0001 Set to indicate that this permission group contains permissions - protecting access to some information that is considered - personal to the user (such as contacts, e-mails, etc).
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#permissionGroupFlags}. - @attr name android:permissionGroupFlags - */ - public static final int AndroidManifestPermissionGroup_permissionGroupFlags = 6; - /** -

- @attr description - Specify the relative importance or ability in handling a particular - Intent. For receivers, this controls the order in which they are - executed to receive a broadcast (note that for - asynchronous broadcasts, this order is ignored). For activities, - this provides information about how good an activity is handling an - Intent; when multiple activities match an intent and have different - priorities, only those with the higher priority value will be - considered a match. - -

Only use if you really need to impose some specific - order in which the broadcasts are received, or want to forcibly - place an activity to always be preferred over others. The value is a - single integer, with higher numbers considered to be better. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#priority}. - @attr name android:priority - */ - public static final int AndroidManifestPermissionGroup_priority = 3; - /** - The permission-tree tag declares the base of a tree of - permission values: it declares that this package has ownership of - the given permission name, as well as all names underneath it - (separated by '.'). This allows you to use the - {@link android.content.pm.PackageManager#addPermission - PackageManager.addPermission()} method to dynamically add new - permissions under this tree. - -

Note that this tag does not declare a permission itself, only - a namespace in which further permissions can be placed. See - the {@link #AndroidManifestPermission <permission>} tag for - more information. - -

This appears as a child tag of the root - {@link #AndroidManifest manifest} tag. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #AndroidManifestPermissionTree_icon android:icon} A Drawable resource providing a graphical representation of its - associated item.
{@link #AndroidManifestPermissionTree_label android:label} A user-legible name for the given item.
{@link #AndroidManifestPermissionTree_logo android:logo} A Drawable resource providing an extended graphical logo for its - associated item.
{@link #AndroidManifestPermissionTree_name android:name} Required public name of the permission tree, which is the base name - of all permissions under it.
- @see #AndroidManifestPermissionTree_icon - @see #AndroidManifestPermissionTree_label - @see #AndroidManifestPermissionTree_logo - @see #AndroidManifestPermissionTree_name - */ - public static final int[] AndroidManifestPermissionTree = { - 0x01010001, 0x01010002, 0x01010003, 0x010102be}; - /** -

- @attr description - A Drawable resource providing a graphical representation of its - associated item. Use with the - application tag (to supply a default icon for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific icon for that component). It may also be - used with the intent-filter tag to supply an icon to show to the - user when an activity is being selected based on a particular Intent. - -

The given icon will be used to display to the user a graphical - representation of its associated component; for example, as the icon - for main activity that is displayed in the launcher. This must be - a reference to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int AndroidManifestPermissionTree_icon = 1; - /** -

- @attr description - A user-legible name for the given item. Use with the - application tag (to supply a default label for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific label for that component). It may also be - used with the intent-filter tag to supply a label to show to the - user when an activity is being selected based on a particular Intent. - -

The given label will be used wherever the user sees information - about its associated component; for example, as the name of a - main activity that is displayed in the launcher. You should - generally set this to a reference to a string resource, so that - it can be localized, however it is also allowed to supply a plain - string for quick and dirty programming. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#label}. - @attr name android:label - */ - public static final int AndroidManifestPermissionTree_label = 0; - /** -

- @attr description - A Drawable resource providing an extended graphical logo for its - associated item. Use with the application tag (to supply a default - logo for all application components), or with the activity, receiver, - service, or instrumentation tag (to supply a specific logo for that - component). It may also be used with the intent-filter tag to supply - a logo to show to the user when an activity is being selected based - on a particular Intent. - -

The given logo will be used to display to the user a graphical - representation of its associated component; for example as the - header in the Action Bar. The primary differences between an icon - and a logo are that logos are often wider and more detailed, and are - used without an accompanying text caption. This must be a reference - to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#logo}. - @attr name android:logo - */ - public static final int AndroidManifestPermissionTree_logo = 3; - /** -

- @attr description - Required public name of the permission tree, which is the base name - of all permissions under it. This is a string using - Java-style scoping to ensure it is unique. The prefix will often - be the same as our overall package name, for example - "com.mycompany.android.myapp.SomePermission". A permission tree name - must have more than two segments in its path; that is, - "com.me.foo" is okay, but not "com.me" or "com". - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestPermissionTree_name = 2; - /** - Private tag to declare system protected broadcast actions. - -

This appears as a child tag of the root - {@link #AndroidManifest manifest} tag. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #AndroidManifestProtectedBroadcast_name android:name} A unique name for the given item.
- @see #AndroidManifestProtectedBroadcast_name - */ - public static final int[] AndroidManifestProtectedBroadcast = { - 0x01010003}; - /** -

- @attr description - A unique name for the given item. This must use a Java-style naming - convention to ensure the name is unique, for example - "com.mycompany.MyName". - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestProtectedBroadcast_name = 0; - /** - The provider tag declares a - {@link android.content.ContentProvider} class that is available - as part of the package's application components, supplying structured - access to data managed by the application. - -

This appears as a child tag of the - {@link #AndroidManifestApplication application} tag. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #AndroidManifestProvider_authorities android:authorities} Specify the authorities under which this content provider can be - found.
{@link #AndroidManifestProvider_description android:description} Descriptive text for the associated data.
{@link #AndroidManifestProvider_enabled android:enabled} Specify whether this provider is enabled or not (that is, can be instantiated by the system).
{@link #AndroidManifestProvider_exported android:exported} Flag indicating whether the given application component is available - to other applications.
{@link #AndroidManifestProvider_grantUriPermissions android:grantUriPermissions} If true, the {@link android.content.Context#grantUriPermission - Context.grantUriPermission} or corresponding Intent flags can - be used to allow others to access specific URIs in the content - provider, even if they do not have an explicit read or write - permission.
{@link #AndroidManifestProvider_icon android:icon} A Drawable resource providing a graphical representation of its - associated item.
{@link #AndroidManifestProvider_initOrder android:initOrder} Specify the order in which content providers hosted by a process - are instantiated when that process is created.
{@link #AndroidManifestProvider_label android:label} A user-legible name for the given item.
{@link #AndroidManifestProvider_logo android:logo} A Drawable resource providing an extended graphical logo for its - associated item.
{@link #AndroidManifestProvider_multiprocess android:multiprocess} Specify whether a component is allowed to have multiple instances - of itself running in different processes.
{@link #AndroidManifestProvider_name android:name} Required name of the class implementing the provider, deriving from - {@link android.content.ContentProvider}.
{@link #AndroidManifestProvider_permission android:permission} Specify a permission that a client is required to have in order to - use the associated object.
{@link #AndroidManifestProvider_process android:process} Specify a specific process that the associated code is to run in.
{@link #AndroidManifestProvider_readPermission android:readPermission} A specific {@link android.R.attr#permission} name for read-only - access to a {@link android.content.ContentProvider}.
{@link #AndroidManifestProvider_singleUser android:singleUser} If set to true, a single instance of this component will run for - all users.
{@link #AndroidManifestProvider_syncable android:syncable} Flag indicating whether this content provider would like to - participate in data synchronization.
{@link #AndroidManifestProvider_writePermission android:writePermission} A specific {@link android.R.attr#permission} name for write - access to a {@link android.content.ContentProvider}.
- @see #AndroidManifestProvider_authorities - @see #AndroidManifestProvider_description - @see #AndroidManifestProvider_enabled - @see #AndroidManifestProvider_exported - @see #AndroidManifestProvider_grantUriPermissions - @see #AndroidManifestProvider_icon - @see #AndroidManifestProvider_initOrder - @see #AndroidManifestProvider_label - @see #AndroidManifestProvider_logo - @see #AndroidManifestProvider_multiprocess - @see #AndroidManifestProvider_name - @see #AndroidManifestProvider_permission - @see #AndroidManifestProvider_process - @see #AndroidManifestProvider_readPermission - @see #AndroidManifestProvider_singleUser - @see #AndroidManifestProvider_syncable - @see #AndroidManifestProvider_writePermission - */ - public static final int[] AndroidManifestProvider = { - 0x01010001, 0x01010002, 0x01010003, 0x01010006, - 0x01010007, 0x01010008, 0x0101000e, 0x01010010, - 0x01010011, 0x01010013, 0x01010018, 0x01010019, - 0x0101001a, 0x0101001b, 0x01010020, 0x010102be, - 0x010103bf}; - /** -

- @attr description - Specify the authorities under which this content provider can be - found. Multiple authorities may be supplied by separating them - with a semicolon. Authority names should use a Java-style naming - convention (such as com.google.provider.MyProvider) - in order to avoid conflicts. Typically this name is the same - as the class implementation describing the provider's data structure. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#authorities}. - @attr name android:authorities - */ - public static final int AndroidManifestProvider_authorities = 10; - /** -

- @attr description - Descriptive text for the associated data. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#description}. - @attr name android:description - */ - public static final int AndroidManifestProvider_description = 14; - /** -

- @attr description - Specify whether this provider is enabled or not (that is, can be instantiated by the system). - It can also be specified for an application as a whole, in which case a value of "false" - will override any component specific values (a value of "true" will not override the - component specific values). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#enabled}. - @attr name android:enabled - */ - public static final int AndroidManifestProvider_enabled = 6; - /** -

- @attr description - Flag indicating whether the given application component is available - to other applications. If false, it can only be accessed by - applications with its same user id (which usually means only by - code in its own package). If true, it can be invoked by external - entities, though which ones can do so may be controlled through - permissions. The default value is false for activity, receiver, - and service components that do not specify any intent filters; it - is true for activity, receiver, and service components that do - have intent filters (implying they expect to be invoked by others - who do not know their particular component name) and for all - content providers. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#exported}. - @attr name android:exported - */ - public static final int AndroidManifestProvider_exported = 7; - /** -

- @attr description - If true, the {@link android.content.Context#grantUriPermission - Context.grantUriPermission} or corresponding Intent flags can - be used to allow others to access specific URIs in the content - provider, even if they do not have an explicit read or write - permission. If you are supporting this feature, you must be - sure to call {@link android.content.Context#revokeUriPermission - Context.revokeUriPermission} when URIs are deleted from your - provider. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#grantUriPermissions}. - @attr name android:grantUriPermissions - */ - public static final int AndroidManifestProvider_grantUriPermissions = 13; - /** -

- @attr description - A Drawable resource providing a graphical representation of its - associated item. Use with the - application tag (to supply a default icon for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific icon for that component). It may also be - used with the intent-filter tag to supply an icon to show to the - user when an activity is being selected based on a particular Intent. - -

The given icon will be used to display to the user a graphical - representation of its associated component; for example, as the icon - for main activity that is displayed in the launcher. This must be - a reference to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int AndroidManifestProvider_icon = 1; - /** -

- @attr description - Specify the order in which content providers hosted by a process - are instantiated when that process is created. Not needed unless - you have providers with dependencies between each other, to make - sure that they are created in the order needed by those dependencies. - The value is a simple integer, with higher numbers being - initialized first. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#initOrder}. - @attr name android:initOrder - */ - public static final int AndroidManifestProvider_initOrder = 12; - /** -

- @attr description - A user-legible name for the given item. Use with the - application tag (to supply a default label for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific label for that component). It may also be - used with the intent-filter tag to supply a label to show to the - user when an activity is being selected based on a particular Intent. - -

The given label will be used wherever the user sees information - about its associated component; for example, as the name of a - main activity that is displayed in the launcher. You should - generally set this to a reference to a string resource, so that - it can be localized, however it is also allowed to supply a plain - string for quick and dirty programming. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#label}. - @attr name android:label - */ - public static final int AndroidManifestProvider_label = 0; - /** -

- @attr description - A Drawable resource providing an extended graphical logo for its - associated item. Use with the application tag (to supply a default - logo for all application components), or with the activity, receiver, - service, or instrumentation tag (to supply a specific logo for that - component). It may also be used with the intent-filter tag to supply - a logo to show to the user when an activity is being selected based - on a particular Intent. - -

The given logo will be used to display to the user a graphical - representation of its associated component; for example as the - header in the Action Bar. The primary differences between an icon - and a logo are that logos are often wider and more detailed, and are - used without an accompanying text caption. This must be a reference - to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#logo}. - @attr name android:logo - */ - public static final int AndroidManifestProvider_logo = 15; - /** -

- @attr description - Specify whether a component is allowed to have multiple instances - of itself running in different processes. Use with the activity - and provider tags. - -

Normally the system will ensure that all instances of a particular - component are only running in a single process. You can use this - attribute to disable that behavior, allowing the system to create - instances wherever they are used (provided permissions allow it). - This is most often used with content providers, so that instances - of a provider can be created in each client process, allowing them - to be used without performing IPC. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#multiprocess}. - @attr name android:multiprocess - */ - public static final int AndroidManifestProvider_multiprocess = 9; - /** -

- @attr description - Required name of the class implementing the provider, deriving from - {@link android.content.ContentProvider}. This is a fully - qualified class name (for example, com.mycompany.myapp.MyProvider); as a - short-hand if the first character of the class - is a period then it is appended to your package name. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestProvider_name = 2; - /** -

- @attr description - Specify a permission that a client is required to have in order to - use the associated object. If the client does not hold the named - permission, its request will fail. See the - Security and Permissions - document for more information on permissions. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#permission}. - @attr name android:permission - */ - public static final int AndroidManifestProvider_permission = 3; - /** -

- @attr description - Specify a specific process that the associated code is to run in. - Use with the application tag (to supply a default process for all - application components), or with the activity, receiver, service, - or provider tag (to supply a specific icon for that component). - -

Application components are normally run in a single process that - is created for the entire application. You can use this tag to modify - where they run. If the process name begins with a ':' character, - a new process private to that application will be created when needed - to run that component (allowing you to spread your application across - multiple processes). If the process name begins with a lower-case - character, the component will be run in a global process of that name, - provided that you have permission to do so, allowing multiple - applications to share one process to reduce resource usage. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#process}. - @attr name android:process - */ - public static final int AndroidManifestProvider_process = 8; - /** -

- @attr description - A specific {@link android.R.attr#permission} name for read-only - access to a {@link android.content.ContentProvider}. See the - Security and Permissions - document for more information on permissions. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#readPermission}. - @attr name android:readPermission - */ - public static final int AndroidManifestProvider_readPermission = 4; - /** -

- @attr description - If set to true, a single instance of this component will run for - all users. That instance will run as user 0, the default/primary - user. When the app running is in processes for other users and interacts - with this component (by binding to a service for example) those processes will - always interact with the instance running for user 0. Enabling - single user mode forces "exported" of the component to be false, to - help avoid introducing multi-user security bugs. This feature is only - available to applications built in to the system image; you must hold the - permission INTERACT_ACROSS_USERS in order - to use this feature. This flag can only be used with services, - receivers, and providers; it can not be used with activities. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#singleUser}. - @attr name android:singleUser - */ - public static final int AndroidManifestProvider_singleUser = 16; - /** -

- @attr description - Flag indicating whether this content provider would like to - participate in data synchronization. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#syncable}. - @attr name android:syncable - */ - public static final int AndroidManifestProvider_syncable = 11; - /** -

- @attr description - A specific {@link android.R.attr#permission} name for write - access to a {@link android.content.ContentProvider}. See the - Security and Permissions - document for more information on permissions. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#writePermission}. - @attr name android:writePermission - */ - public static final int AndroidManifestProvider_writePermission = 5; - /** - The receiver tag declares an - {@link android.content.BroadcastReceiver} class that is available - as part of the package's application components, allowing the - application to receive actions or data broadcast by other - applications even if it is not currently running. - -

Zero or more {@link #AndroidManifestIntentFilter intent-filter} - tags can be included inside of a receiver, to specify the Intents - it will receive. If none are specified, the receiver will only - be run when an Intent is broadcast that is directed at its specific - class name. The receiver tag appears as a child tag of the - {@link #AndroidManifestApplication application} tag. -

Includes the following attributes:

- - - - - - - - - - - - - - -
AttributeDescription
{@link #AndroidManifestReceiver_description android:description} Descriptive text for the associated data.
{@link #AndroidManifestReceiver_enabled android:enabled} Specify whether the receiver is enabled or not (that is, can be instantiated by the system).
{@link #AndroidManifestReceiver_exported android:exported} Flag indicating whether the given application component is available - to other applications.
{@link #AndroidManifestReceiver_icon android:icon} A Drawable resource providing a graphical representation of its - associated item.
{@link #AndroidManifestReceiver_label android:label} A user-legible name for the given item.
{@link #AndroidManifestReceiver_logo android:logo} A Drawable resource providing an extended graphical logo for its - associated item.
{@link #AndroidManifestReceiver_name android:name} Required name of the class implementing the receiver, deriving from - {@link android.content.BroadcastReceiver}.
{@link #AndroidManifestReceiver_permission android:permission} Specify a permission that a client is required to have in order to - use the associated object.
{@link #AndroidManifestReceiver_process android:process} Specify a specific process that the associated code is to run in.
{@link #AndroidManifestReceiver_singleUser android:singleUser} If set to true, a single instance of this component will run for - all users.
- @see #AndroidManifestReceiver_description - @see #AndroidManifestReceiver_enabled - @see #AndroidManifestReceiver_exported - @see #AndroidManifestReceiver_icon - @see #AndroidManifestReceiver_label - @see #AndroidManifestReceiver_logo - @see #AndroidManifestReceiver_name - @see #AndroidManifestReceiver_permission - @see #AndroidManifestReceiver_process - @see #AndroidManifestReceiver_singleUser - */ - public static final int[] AndroidManifestReceiver = { - 0x01010001, 0x01010002, 0x01010003, 0x01010006, - 0x0101000e, 0x01010010, 0x01010011, 0x01010020, - 0x010102be, 0x010103bf}; - /** -

- @attr description - Descriptive text for the associated data. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#description}. - @attr name android:description - */ - public static final int AndroidManifestReceiver_description = 7; - /** -

- @attr description - Specify whether the receiver is enabled or not (that is, can be instantiated by the system). - It can also be specified for an application as a whole, in which case a value of "false" - will override any component specific values (a value of "true" will not override the - component specific values). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#enabled}. - @attr name android:enabled - */ - public static final int AndroidManifestReceiver_enabled = 4; - /** -

- @attr description - Flag indicating whether the given application component is available - to other applications. If false, it can only be accessed by - applications with its same user id (which usually means only by - code in its own package). If true, it can be invoked by external - entities, though which ones can do so may be controlled through - permissions. The default value is false for activity, receiver, - and service components that do not specify any intent filters; it - is true for activity, receiver, and service components that do - have intent filters (implying they expect to be invoked by others - who do not know their particular component name) and for all - content providers. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#exported}. - @attr name android:exported - */ - public static final int AndroidManifestReceiver_exported = 5; - /** -

- @attr description - A Drawable resource providing a graphical representation of its - associated item. Use with the - application tag (to supply a default icon for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific icon for that component). It may also be - used with the intent-filter tag to supply an icon to show to the - user when an activity is being selected based on a particular Intent. - -

The given icon will be used to display to the user a graphical - representation of its associated component; for example, as the icon - for main activity that is displayed in the launcher. This must be - a reference to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int AndroidManifestReceiver_icon = 1; - /** -

- @attr description - A user-legible name for the given item. Use with the - application tag (to supply a default label for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific label for that component). It may also be - used with the intent-filter tag to supply a label to show to the - user when an activity is being selected based on a particular Intent. - -

The given label will be used wherever the user sees information - about its associated component; for example, as the name of a - main activity that is displayed in the launcher. You should - generally set this to a reference to a string resource, so that - it can be localized, however it is also allowed to supply a plain - string for quick and dirty programming. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#label}. - @attr name android:label - */ - public static final int AndroidManifestReceiver_label = 0; - /** -

- @attr description - A Drawable resource providing an extended graphical logo for its - associated item. Use with the application tag (to supply a default - logo for all application components), or with the activity, receiver, - service, or instrumentation tag (to supply a specific logo for that - component). It may also be used with the intent-filter tag to supply - a logo to show to the user when an activity is being selected based - on a particular Intent. - -

The given logo will be used to display to the user a graphical - representation of its associated component; for example as the - header in the Action Bar. The primary differences between an icon - and a logo are that logos are often wider and more detailed, and are - used without an accompanying text caption. This must be a reference - to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#logo}. - @attr name android:logo - */ - public static final int AndroidManifestReceiver_logo = 8; - /** -

- @attr description - Required name of the class implementing the receiver, deriving from - {@link android.content.BroadcastReceiver}. This is a fully - qualified class name (for example, com.mycompany.myapp.MyReceiver); as a - short-hand if the first character of the class - is a period then it is appended to your package name. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestReceiver_name = 2; - /** -

- @attr description - Specify a permission that a client is required to have in order to - use the associated object. If the client does not hold the named - permission, its request will fail. See the - Security and Permissions - document for more information on permissions. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#permission}. - @attr name android:permission - */ - public static final int AndroidManifestReceiver_permission = 3; - /** -

- @attr description - Specify a specific process that the associated code is to run in. - Use with the application tag (to supply a default process for all - application components), or with the activity, receiver, service, - or provider tag (to supply a specific icon for that component). - -

Application components are normally run in a single process that - is created for the entire application. You can use this tag to modify - where they run. If the process name begins with a ':' character, - a new process private to that application will be created when needed - to run that component (allowing you to spread your application across - multiple processes). If the process name begins with a lower-case - character, the component will be run in a global process of that name, - provided that you have permission to do so, allowing multiple - applications to share one process to reduce resource usage. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#process}. - @attr name android:process - */ - public static final int AndroidManifestReceiver_process = 6; - /** -

- @attr description - If set to true, a single instance of this component will run for - all users. That instance will run as user 0, the default/primary - user. When the app running is in processes for other users and interacts - with this component (by binding to a service for example) those processes will - always interact with the instance running for user 0. Enabling - single user mode forces "exported" of the component to be false, to - help avoid introducing multi-user security bugs. This feature is only - available to applications built in to the system image; you must hold the - permission INTERACT_ACROSS_USERS in order - to use this feature. This flag can only be used with services, - receivers, and providers; it can not be used with activities. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#singleUser}. - @attr name android:singleUser - */ - public static final int AndroidManifestReceiver_singleUser = 9; - /** - The service tag declares a - {@link android.app.Service} class that is available - as part of the package's application components, implementing - long-running background operations or a rich communication API - that can be called by other packages. - -

Zero or more {@link #AndroidManifestIntentFilter intent-filter} - tags can be included inside of a service, to specify the Intents - that can connect with it. If none are specified, the service can - only be accessed by direct specification of its class name. - The service tag appears as a child tag of the - {@link #AndroidManifestApplication application} tag. -

Includes the following attributes:

- - - - - - - - - - - - - - - - -
AttributeDescription
{@link #AndroidManifestService_description android:description} Descriptive text for the associated data.
{@link #AndroidManifestService_enabled android:enabled} Specify whether the service is enabled or not (that is, can be instantiated by the system).
{@link #AndroidManifestService_exported android:exported} Flag indicating whether the given application component is available - to other applications.
{@link #AndroidManifestService_icon android:icon} A Drawable resource providing a graphical representation of its - associated item.
{@link #AndroidManifestService_isolatedProcess android:isolatedProcess} If set to true, this service will run under a special process - that is isolated from the rest of the system.
{@link #AndroidManifestService_label android:label} A user-legible name for the given item.
{@link #AndroidManifestService_logo android:logo} A Drawable resource providing an extended graphical logo for its - associated item.
{@link #AndroidManifestService_name android:name} Required name of the class implementing the service, deriving from - {@link android.app.Service}.
{@link #AndroidManifestService_permission android:permission} Specify a permission that a client is required to have in order to - use the associated object.
{@link #AndroidManifestService_process android:process} Specify a specific process that the associated code is to run in.
{@link #AndroidManifestService_singleUser android:singleUser} If set to true, a single instance of this component will run for - all users.
{@link #AndroidManifestService_stopWithTask android:stopWithTask} If set to true, this service with be automatically stopped - when the user remove a task rooted in an activity owned by - the application.
- @see #AndroidManifestService_description - @see #AndroidManifestService_enabled - @see #AndroidManifestService_exported - @see #AndroidManifestService_icon - @see #AndroidManifestService_isolatedProcess - @see #AndroidManifestService_label - @see #AndroidManifestService_logo - @see #AndroidManifestService_name - @see #AndroidManifestService_permission - @see #AndroidManifestService_process - @see #AndroidManifestService_singleUser - @see #AndroidManifestService_stopWithTask - */ - public static final int[] AndroidManifestService = { - 0x01010001, 0x01010002, 0x01010003, 0x01010006, - 0x0101000e, 0x01010010, 0x01010011, 0x01010020, - 0x010102be, 0x0101036a, 0x010103a9, 0x010103bf}; - /** -

- @attr description - Descriptive text for the associated data. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#description}. - @attr name android:description - */ - public static final int AndroidManifestService_description = 7; - /** -

- @attr description - Specify whether the service is enabled or not (that is, can be instantiated by the system). - It can also be specified for an application as a whole, in which case a value of "false" - will override any component specific values (a value of "true" will not override the - component specific values). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#enabled}. - @attr name android:enabled - */ - public static final int AndroidManifestService_enabled = 4; - /** -

- @attr description - Flag indicating whether the given application component is available - to other applications. If false, it can only be accessed by - applications with its same user id (which usually means only by - code in its own package). If true, it can be invoked by external - entities, though which ones can do so may be controlled through - permissions. The default value is false for activity, receiver, - and service components that do not specify any intent filters; it - is true for activity, receiver, and service components that do - have intent filters (implying they expect to be invoked by others - who do not know their particular component name) and for all - content providers. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#exported}. - @attr name android:exported - */ - public static final int AndroidManifestService_exported = 5; - /** -

- @attr description - A Drawable resource providing a graphical representation of its - associated item. Use with the - application tag (to supply a default icon for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific icon for that component). It may also be - used with the intent-filter tag to supply an icon to show to the - user when an activity is being selected based on a particular Intent. - -

The given icon will be used to display to the user a graphical - representation of its associated component; for example, as the icon - for main activity that is displayed in the launcher. This must be - a reference to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int AndroidManifestService_icon = 1; - /** -

- @attr description - If set to true, this service will run under a special process - that is isolated from the rest of the system. The only communication - with it is through the Service API (binding and starting). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#isolatedProcess}. - @attr name android:isolatedProcess - */ - public static final int AndroidManifestService_isolatedProcess = 10; - /** -

- @attr description - A user-legible name for the given item. Use with the - application tag (to supply a default label for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific label for that component). It may also be - used with the intent-filter tag to supply a label to show to the - user when an activity is being selected based on a particular Intent. - -

The given label will be used wherever the user sees information - about its associated component; for example, as the name of a - main activity that is displayed in the launcher. You should - generally set this to a reference to a string resource, so that - it can be localized, however it is also allowed to supply a plain - string for quick and dirty programming. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#label}. - @attr name android:label - */ - public static final int AndroidManifestService_label = 0; - /** -

- @attr description - A Drawable resource providing an extended graphical logo for its - associated item. Use with the application tag (to supply a default - logo for all application components), or with the activity, receiver, - service, or instrumentation tag (to supply a specific logo for that - component). It may also be used with the intent-filter tag to supply - a logo to show to the user when an activity is being selected based - on a particular Intent. - -

The given logo will be used to display to the user a graphical - representation of its associated component; for example as the - header in the Action Bar. The primary differences between an icon - and a logo are that logos are often wider and more detailed, and are - used without an accompanying text caption. This must be a reference - to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#logo}. - @attr name android:logo - */ - public static final int AndroidManifestService_logo = 8; - /** -

- @attr description - Required name of the class implementing the service, deriving from - {@link android.app.Service}. This is a fully - qualified class name (for example, com.mycompany.myapp.MyService); as a - short-hand if the first character of the class - is a period then it is appended to your package name. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestService_name = 2; - /** -

- @attr description - Specify a permission that a client is required to have in order to - use the associated object. If the client does not hold the named - permission, its request will fail. See the - Security and Permissions - document for more information on permissions. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#permission}. - @attr name android:permission - */ - public static final int AndroidManifestService_permission = 3; - /** -

- @attr description - Specify a specific process that the associated code is to run in. - Use with the application tag (to supply a default process for all - application components), or with the activity, receiver, service, - or provider tag (to supply a specific icon for that component). - -

Application components are normally run in a single process that - is created for the entire application. You can use this tag to modify - where they run. If the process name begins with a ':' character, - a new process private to that application will be created when needed - to run that component (allowing you to spread your application across - multiple processes). If the process name begins with a lower-case - character, the component will be run in a global process of that name, - provided that you have permission to do so, allowing multiple - applications to share one process to reduce resource usage. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#process}. - @attr name android:process - */ - public static final int AndroidManifestService_process = 6; - /** -

- @attr description - If set to true, a single instance of this component will run for - all users. That instance will run as user 0, the default/primary - user. When the app running is in processes for other users and interacts - with this component (by binding to a service for example) those processes will - always interact with the instance running for user 0. Enabling - single user mode forces "exported" of the component to be false, to - help avoid introducing multi-user security bugs. This feature is only - available to applications built in to the system image; you must hold the - permission INTERACT_ACROSS_USERS in order - to use this feature. This flag can only be used with services, - receivers, and providers; it can not be used with activities. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#singleUser}. - @attr name android:singleUser - */ - public static final int AndroidManifestService_singleUser = 11; - /** -

- @attr description - If set to true, this service with be automatically stopped - when the user remove a task rooted in an activity owned by - the application. The default is false. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#stopWithTask}. - @attr name android:stopWithTask - */ - public static final int AndroidManifestService_stopWithTask = 9; - /** - The input-type tag is a child of the supports-input tag, which - is itself a child of the root {@link #AndroidManifest manifest} tag. Each - input-type tag specifices the name of a specific input device type. When - grouped with the other elements of the parent supports-input tag it defines - a collection of input devices, which when all used together, are considered a supported - input mechanism for the application. There may be multiple supports-input - tags defined, each containing a different combination of input device types. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #AndroidManifestSupportsInputInputType_name android:name} Specifices the name of the input device type
- @see #AndroidManifestSupportsInputInputType_name - */ - public static final int[] AndroidManifestSupportsInputInputType = { - 0x01010003}; - /** -

- @attr description - Specifices the name of the input device type - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestSupportsInputInputType_name = 0; - /** - The supports-screens specifies the screen dimensions an - application supports. By default a modern application supports all - screen sizes and must explicitly disable certain screen sizes here; - older applications are assumed to only support the traditional normal - (HVGA) screen size. Note that screen size is a separate axis from - density, and is determined as the available pixels to an application - after density scaling has been applied. - -

This appears as a child tag of the - {@link #AndroidManifest manifest} tag. -

Includes the following attributes:

- - - - - - - - - - - - - -
AttributeDescription
{@link #AndroidManifestSupportsScreens_anyDensity android:anyDensity} Indicates whether the application can accommodate any screen - density.
{@link #AndroidManifestSupportsScreens_compatibleWidthLimitDp android:compatibleWidthLimitDp} Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}, - this is the new way to specify the largest screens an application is - compatible with.
{@link #AndroidManifestSupportsScreens_largeScreens android:largeScreens} Indicates whether the application supports larger screen form-factors.
{@link #AndroidManifestSupportsScreens_largestWidthLimitDp android:largestWidthLimitDp} Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}, - this is the new way to specify the screens an application is - compatible with.
{@link #AndroidManifestSupportsScreens_normalScreens android:normalScreens} Indicates whether an application supports the normal screen - form-factors.
{@link #AndroidManifestSupportsScreens_requiresSmallestWidthDp android:requiresSmallestWidthDp} Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}, - this is the new way to specify the minimum screen size an application is - compatible with.
{@link #AndroidManifestSupportsScreens_resizeable android:resizeable} Indicates whether the application can resize itself to newer - screen sizes.
{@link #AndroidManifestSupportsScreens_smallScreens android:smallScreens} Indicates whether the application supports smaller screen form-factors.
{@link #AndroidManifestSupportsScreens_xlargeScreens android:xlargeScreens} Indicates whether the application supports extra large screen form-factors.
- @see #AndroidManifestSupportsScreens_anyDensity - @see #AndroidManifestSupportsScreens_compatibleWidthLimitDp - @see #AndroidManifestSupportsScreens_largeScreens - @see #AndroidManifestSupportsScreens_largestWidthLimitDp - @see #AndroidManifestSupportsScreens_normalScreens - @see #AndroidManifestSupportsScreens_requiresSmallestWidthDp - @see #AndroidManifestSupportsScreens_resizeable - @see #AndroidManifestSupportsScreens_smallScreens - @see #AndroidManifestSupportsScreens_xlargeScreens - */ - public static final int[] AndroidManifestSupportsScreens = { - 0x0101026c, 0x01010284, 0x01010285, 0x01010286, - 0x0101028d, 0x010102bf, 0x01010364, 0x01010365, - 0x01010366}; - /** -

- @attr description - Indicates whether the application can accommodate any screen - density. Older applications are assumed to not be able to, - new ones able to. You can explicitly supply your abilities - here. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#anyDensity}. - @attr name android:anyDensity - */ - public static final int AndroidManifestSupportsScreens_anyDensity = 0; - /** -

- @attr description - Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}, - this is the new way to specify the largest screens an application is - compatible with. This attribute provides the maximum - "smallest screen width" (as per the -swNNNdp resource configuration) - that the application is designed for. If this value is smaller than - the "smallest screen width" of the device it is running on, the user - is offered to run it in a compatibility mode that emulates a - smaller screen and zooms it to fit the screen. Currently the compatibility mode only - emulates phone screens with a 320dp width, so compatibility mode is not applied if the - value for compatibleWidthLimitDp is larger than 320. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#compatibleWidthLimitDp}. - @attr name android:compatibleWidthLimitDp - */ - public static final int AndroidManifestSupportsScreens_compatibleWidthLimitDp = 7; - /** -

- @attr description - Indicates whether the application supports larger screen form-factors. - A large screen is defined as a screen that is significantly larger - than a normal phone screen, and thus may require some special care - on the application's part to make good use of it. An example would - be a VGA normal density screen, though even larger screens - are certainly possible. An application that does not support - large screens will be placed as a postage stamp on such a - screen, so that it retains the dimensions it was originally - designed for. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#largeScreens}. - @attr name android:largeScreens - */ - public static final int AndroidManifestSupportsScreens_largeScreens = 3; - /** -

- @attr description - Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}, - this is the new way to specify the screens an application is - compatible with. This attribute provides the maximum - "smallest screen width" (as per the -swNNNdp resource configuration) - that the application can work well on. If this value is smaller than - the "smallest screen width" of the device it is running on, the - application will be forced in to screen compatibility mode with - no way for the user to turn it off. Currently the compatibility mode only - emulates phone screens with a 320dp width, so compatibility mode is not applied if the - value for largestWidthLimitDp is larger than 320. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#largestWidthLimitDp}. - @attr name android:largestWidthLimitDp - */ - public static final int AndroidManifestSupportsScreens_largestWidthLimitDp = 8; - /** -

- @attr description - Indicates whether an application supports the normal screen - form-factors. Traditionally this is an HVGA normal density - screen, but WQVGA low density and WVGA high density are also - considered to be normal. This attribute is true by default, - and applications currently should leave it that way. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#normalScreens}. - @attr name android:normalScreens - */ - public static final int AndroidManifestSupportsScreens_normalScreens = 2; - /** -

- @attr description - Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}, - this is the new way to specify the minimum screen size an application is - compatible with. This attribute provides the required minimum - "smallest screen width" (as per the -swNNNdp resource configuration) - that the application can run on. For example, a typical phone - screen is 320, a 7" tablet 600, and a 10" tablet 720. If the - smallest screen width of the device is below the value supplied here, - then the application is considered incompatible with that device. - If not supplied, then any old smallScreens, normalScreens, largeScreens, - or xlargeScreens attributes will be used instead. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#requiresSmallestWidthDp}. - @attr name android:requiresSmallestWidthDp - */ - public static final int AndroidManifestSupportsScreens_requiresSmallestWidthDp = 6; - /** -

- @attr description - Indicates whether the application can resize itself to newer - screen sizes. This is mostly used to distinguish between old - applications that may not be compatible with newly introduced - screen sizes and newer applications that should be; it will be - set for you automatically based on whether you are targeting - a newer platform that supports more screens. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#resizeable}. - @attr name android:resizeable - */ - public static final int AndroidManifestSupportsScreens_resizeable = 4; - /** -

- @attr description - Indicates whether the application supports smaller screen form-factors. - A small screen is defined as one with a smaller aspect ratio than - the traditional HVGA screen; that is, for a portrait screen, less - tall than an HVGA screen. In practice, this means a QVGA low - density or VGA high density screen. An application that does - not support small screens will not be available for - small screen devices, since there is little the platform can do - to make such an application work on a smaller screen. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#smallScreens}. - @attr name android:smallScreens - */ - public static final int AndroidManifestSupportsScreens_smallScreens = 1; - /** -

- @attr description - Indicates whether the application supports extra large screen form-factors. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#xlargeScreens}. - @attr name android:xlargeScreens - */ - public static final int AndroidManifestSupportsScreens_xlargeScreens = 5; - /** - The uses-configuration tag specifies - a specific hardware configuration value used by the application. - For example an application might specify that it requires - a physical keyboard or a particular navigation method like - trackball. Multiple such attribute values can be specified by the - application. - -

This appears as a child tag of the root - {@link #AndroidManifest manifest} tag. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #AndroidManifestUsesConfiguration_reqFiveWayNav android:reqFiveWayNav} Application's requirement for five way navigation
{@link #AndroidManifestUsesConfiguration_reqHardKeyboard android:reqHardKeyboard} Application's requirement for a hard keyboard
{@link #AndroidManifestUsesConfiguration_reqKeyboardType android:reqKeyboardType} The input method preferred by an application.
{@link #AndroidManifestUsesConfiguration_reqNavigation android:reqNavigation} The navigation device preferred by an application.
{@link #AndroidManifestUsesConfiguration_reqTouchScreen android:reqTouchScreen} The type of touch screen used by an application.
- @see #AndroidManifestUsesConfiguration_reqFiveWayNav - @see #AndroidManifestUsesConfiguration_reqHardKeyboard - @see #AndroidManifestUsesConfiguration_reqKeyboardType - @see #AndroidManifestUsesConfiguration_reqNavigation - @see #AndroidManifestUsesConfiguration_reqTouchScreen - */ - public static final int[] AndroidManifestUsesConfiguration = { - 0x01010227, 0x01010228, 0x01010229, 0x0101022a, - 0x01010232}; - /** -

- @attr description - Application's requirement for five way navigation - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#reqFiveWayNav}. - @attr name android:reqFiveWayNav - */ - public static final int AndroidManifestUsesConfiguration_reqFiveWayNav = 4; - /** -

- @attr description - Application's requirement for a hard keyboard - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#reqHardKeyboard}. - @attr name android:reqHardKeyboard - */ - public static final int AndroidManifestUsesConfiguration_reqHardKeyboard = 2; - /** -

- @attr description - The input method preferred by an application. - - -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
undefined0
nokeys1
qwerty2
twelvekey3
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#reqKeyboardType}. - @attr name android:reqKeyboardType - */ - public static final int AndroidManifestUsesConfiguration_reqKeyboardType = 1; - /** -

- @attr description - The navigation device preferred by an application. - - -

Must be one of the following constant values.

- - - - - - - - - - -
ConstantValueDescription
undefined0
nonav1
dpad2
trackball3
wheel4
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#reqNavigation}. - @attr name android:reqNavigation - */ - public static final int AndroidManifestUsesConfiguration_reqNavigation = 3; - /** -

- @attr description - The type of touch screen used by an application. - - -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
undefined0
notouch1
stylus2
finger3
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#reqTouchScreen}. - @attr name android:reqTouchScreen - */ - public static final int AndroidManifestUsesConfiguration_reqTouchScreen = 0; - /** - The uses-feature tag specifies - a specific feature used by the application. - For example an application might specify that it requires - specific version of OpenGL. Multiple such attribute - values can be specified by the application. - -

This appears as a child tag of the root - {@link #AndroidManifest manifest} tag. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #AndroidManifestUsesFeature_glEsVersion android:glEsVersion} The GLES driver version number needed by an application.
{@link #AndroidManifestUsesFeature_name android:name} The name of the feature that is being used.
{@link #AndroidManifestUsesFeature_required android:required} Specify whether this feature is required for the application.
- @see #AndroidManifestUsesFeature_glEsVersion - @see #AndroidManifestUsesFeature_name - @see #AndroidManifestUsesFeature_required - */ - public static final int[] AndroidManifestUsesFeature = { - 0x01010003, 0x01010281, 0x0101028e}; - /** -

- @attr description - The GLES driver version number needed by an application. - The higher 16 bits represent the major number and the lower 16 bits - represent the minor number. For example for GL 1.2 referring to - 0x00000102, the actual value should be set as 0x00010002. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#glEsVersion}. - @attr name android:glEsVersion - */ - public static final int AndroidManifestUsesFeature_glEsVersion = 1; - /** -

- @attr description - The name of the feature that is being used. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestUsesFeature_name = 0; - /** -

- @attr description - Specify whether this feature is required for the application. - The default is true, meaning the application requires the - feature, and does not want to be installed on devices that - don't support it. If you set this to false, then this will - not impose a restriction on where the application can be - installed. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#required}. - @attr name android:required - */ - public static final int AndroidManifestUsesFeature_required = 2; - /** - The uses-libraries specifies a shared library that this - package requires to be linked against. Specifying this flag tells the - system to include this library's code in your class loader. - -

This appears as a child tag of the - {@link #AndroidManifestApplication application} tag. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #AndroidManifestUsesLibrary_name android:name} Required name of the library you use.
{@link #AndroidManifestUsesLibrary_required android:required} Specify whether this library is required for the application.
- @see #AndroidManifestUsesLibrary_name - @see #AndroidManifestUsesLibrary_required - */ - public static final int[] AndroidManifestUsesLibrary = { - 0x01010003, 0x0101028e}; - /** -

- @attr description - Required name of the library you use. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestUsesLibrary_name = 0; - /** -

- @attr description - Specify whether this library is required for the application. - The default is true, meaning the application requires the - library, and does not want to be installed on devices that - don't support it. If you set this to false, then this will - allow the application to be installed even if the library - doesn't exist, and you will need to check for its presence - dynamically at runtime. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#required}. - @attr name android:required - */ - public static final int AndroidManifestUsesLibrary_required = 1; - /** - The uses-permission tag requests a - {@link #AndroidManifestPermission <permission>} that the containing - package must be granted in order for it to operate correctly. - See the Security and Permissions - document for more information on permissions. Also available is a - {@link android.Manifest.permission list of permissions} included - with the base platform. - -

This appears as a child tag of the root - {@link #AndroidManifest manifest} tag. - Specify whether this permission is required for the application. - The default is true, meaning the application requires the - permission, and it must always be granted when it is installed. - If you set this to false, then in some cases the application may - be installed with it being granted the permission, and it will - need to request the permission later if it needs it. - - -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #AndroidManifestUsesPermission_maxSdkVersion android:maxSdkVersion} Optional: specify the maximum version of the Android OS for which the - application wishes to request the permission.
{@link #AndroidManifestUsesPermission_name android:name} Required name of the permission you use, as published with the - corresponding name attribute of a - {@link android.R.styleable#AndroidManifestPermission <permission>} - tag; often this is one of the {@link android.Manifest.permission standard - system permissions}.
- @see #AndroidManifestUsesPermission_maxSdkVersion - @see #AndroidManifestUsesPermission_name - */ - public static final int[] AndroidManifestUsesPermission = { - 0x01010003, 0x01010271}; - /** -

- @attr description - Optional: specify the maximum version of the Android OS for which the - application wishes to request the permission. When running on a version - of Android higher than the number given here, the permission will not - be requested. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#maxSdkVersion}. - @attr name android:maxSdkVersion - */ - public static final int AndroidManifestUsesPermission_maxSdkVersion = 1; - /** -

- @attr description - Required name of the permission you use, as published with the - corresponding name attribute of a - {@link android.R.styleable#AndroidManifestPermission <permission>} - tag; often this is one of the {@link android.Manifest.permission standard - system permissions}. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int AndroidManifestUsesPermission_name = 0; - /** - The uses-sdk tag describes the SDK features that the - containing package must be running on to operate correctly. - -

This appears as a child tag of the root - {@link #AndroidManifest manifest} tag. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #AndroidManifestUsesSdk_maxSdkVersion android:maxSdkVersion} This is the maximum SDK version number that an application works - on.
{@link #AndroidManifestUsesSdk_minSdkVersion android:minSdkVersion} This is the minimum SDK version number that the application - requires.
{@link #AndroidManifestUsesSdk_targetSdkVersion android:targetSdkVersion} This is the SDK version number that the application is targeting.
- @see #AndroidManifestUsesSdk_maxSdkVersion - @see #AndroidManifestUsesSdk_minSdkVersion - @see #AndroidManifestUsesSdk_targetSdkVersion - */ - public static final int[] AndroidManifestUsesSdk = { - 0x0101020c, 0x01010270, 0x01010271}; - /** -

- @attr description - This is the maximum SDK version number that an application works - on. You can use this to ensure your application is filtered out - of later versions of the platform when you know you have - incompatibility with them. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#maxSdkVersion}. - @attr name android:maxSdkVersion - */ - public static final int AndroidManifestUsesSdk_maxSdkVersion = 2; - /** -

- @attr description - This is the minimum SDK version number that the application - requires. This number is an abstract integer, from the list - in {@link android.os.Build.VERSION_CODES} If - not supplied, the application will work on any SDK. This - may also be string (such as "Donut") if the application was built - against a development branch, in which case it will only work against - the development builds. - - -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#minSdkVersion}. - @attr name android:minSdkVersion - */ - public static final int AndroidManifestUsesSdk_minSdkVersion = 0; - /** -

- @attr description - This is the SDK version number that the application is targeting. - It is able to run on older versions (down to minSdkVersion), but - was explicitly tested to work with the version specified here. - Specifying this version allows the platform to disable compatibility - code that are not required or enable newer features that are not - available to older applications. This may also be a string - (such as "Donut") if this is built against a development - branch, in which case minSdkVersion is also forced to be that - string. - - -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#targetSdkVersion}. - @attr name android:targetSdkVersion - */ - public static final int AndroidManifestUsesSdk_targetSdkVersion = 1; - /** - Attributes that can be used with a AnimatedRotateDrawable. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #AnimatedRotateDrawable_drawable android:drawable} Reference to a drawable resource to use for the frame.
{@link #AnimatedRotateDrawable_frameDuration android:frameDuration}
{@link #AnimatedRotateDrawable_framesCount android:framesCount}
{@link #AnimatedRotateDrawable_pivotX android:pivotX}
{@link #AnimatedRotateDrawable_pivotY android:pivotY}
{@link #AnimatedRotateDrawable_visible android:visible} Provides initial visibility state of the drawable; the default - value is false.
- @see #AnimatedRotateDrawable_drawable - @see #AnimatedRotateDrawable_frameDuration - @see #AnimatedRotateDrawable_framesCount - @see #AnimatedRotateDrawable_pivotX - @see #AnimatedRotateDrawable_pivotY - @see #AnimatedRotateDrawable_visible - */ - public static final int[] AnimatedRotateDrawable = { - 0x01010194, 0x01010199, 0x010101b5, 0x010101b6, - 0x0101044a, 0x0101044b}; - /** -

- @attr description - Reference to a drawable resource to use for the frame. If not - given, the drawable must be defined by the first child tag. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#drawable}. - @attr name android:drawable - */ - public static final int AnimatedRotateDrawable_drawable = 1; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#frameDuration} - attribute's value can be found in the {@link #AnimatedRotateDrawable} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name com.android.internal:frameDuration - */ - public static final int AnimatedRotateDrawable_frameDuration = 4; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#framesCount} - attribute's value can be found in the {@link #AnimatedRotateDrawable} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name com.android.internal:framesCount - */ - public static final int AnimatedRotateDrawable_framesCount = 5; - /** -

This symbol is the offset where the {@link android.R.attr#pivotX} - attribute's value can be found in the {@link #AnimatedRotateDrawable} array. - - -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:pivotX - */ - public static final int AnimatedRotateDrawable_pivotX = 2; - /** -

This symbol is the offset where the {@link android.R.attr#pivotY} - attribute's value can be found in the {@link #AnimatedRotateDrawable} array. - - -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:pivotY - */ - public static final int AnimatedRotateDrawable_pivotY = 3; - /** -

- @attr description - Provides initial visibility state of the drawable; the default - value is false. See - {@link android.graphics.drawable.Drawable#setVisible}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#visible}. - @attr name android:visible - */ - public static final int AnimatedRotateDrawable_visible = 0; - /** - Attributes that can be used with a Animation. -

Includes the following attributes:

- - - - - - - - - - - - - - - -
AttributeDescription
{@link #Animation_background android:background} Special background behind animation.
{@link #Animation_detachWallpaper android:detachWallpaper} Special option for window animations: if this window is on top - of a wallpaper, don't animate the wallpaper with it.
{@link #Animation_duration android:duration} Amount of time (in milliseconds) for the animation to run.
{@link #Animation_fillAfter android:fillAfter} When set to true, the animation transformation is applied after the animation is - over.
{@link #Animation_fillBefore android:fillBefore} When set to true or when fillEnabled is not set to true, the animation transformation - is applied before the animation has started.
{@link #Animation_fillEnabled android:fillEnabled} When set to true, the value of fillBefore is taken into account.
{@link #Animation_interpolator android:interpolator} Defines the interpolator used to smooth the animation movement in time.
{@link #Animation_repeatCount android:repeatCount} Defines how many times the animation should repeat.
{@link #Animation_repeatMode android:repeatMode} Defines the animation behavior when it reaches the end and the repeat count is - greater than 0 or infinite.
{@link #Animation_startOffset android:startOffset} Delay in milliseconds before the animation runs, once start time is reached.
{@link #Animation_zAdjustment android:zAdjustment} Allows for an adjustment of the Z ordering of the content being - animated for the duration of the animation.
- @see #Animation_background - @see #Animation_detachWallpaper - @see #Animation_duration - @see #Animation_fillAfter - @see #Animation_fillBefore - @see #Animation_fillEnabled - @see #Animation_interpolator - @see #Animation_repeatCount - @see #Animation_repeatMode - @see #Animation_startOffset - @see #Animation_zAdjustment - */ - public static final int[] Animation = { - 0x010100d4, 0x01010141, 0x01010198, 0x010101bc, - 0x010101bd, 0x010101be, 0x010101bf, 0x010101c0, - 0x010101c1, 0x0101024f, 0x010102a6}; - /** -

- @attr description - Special background behind animation. Only for use with window - animations. Can only be a color, and only black. If 0, the - default, there is no background. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#background}. - @attr name android:background - */ - public static final int Animation_background = 0; - /** -

- @attr description - Special option for window animations: if this window is on top - of a wallpaper, don't animate the wallpaper with it. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#detachWallpaper}. - @attr name android:detachWallpaper - */ - public static final int Animation_detachWallpaper = 10; - /** -

- @attr description - Amount of time (in milliseconds) for the animation to run. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#duration}. - @attr name android:duration - */ - public static final int Animation_duration = 2; - /** -

- @attr description - When set to true, the animation transformation is applied after the animation is - over. The default value is false. If fillEnabled is not set to true and the - animation is not set on a View, fillAfter is assumed to be true. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fillAfter}. - @attr name android:fillAfter - */ - public static final int Animation_fillAfter = 4; - /** -

- @attr description - When set to true or when fillEnabled is not set to true, the animation transformation - is applied before the animation has started. The default value is true. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fillBefore}. - @attr name android:fillBefore - */ - public static final int Animation_fillBefore = 3; - /** -

- @attr description - When set to true, the value of fillBefore is taken into account. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fillEnabled}. - @attr name android:fillEnabled - */ - public static final int Animation_fillEnabled = 9; - /** -

- @attr description - Defines the interpolator used to smooth the animation movement in time. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#interpolator}. - @attr name android:interpolator - */ - public static final int Animation_interpolator = 1; - /** -

- @attr description - Defines how many times the animation should repeat. The default value is 0. - - -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - -
ConstantValueDescription
infinite-1
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#repeatCount}. - @attr name android:repeatCount - */ - public static final int Animation_repeatCount = 6; - /** -

- @attr description - Defines the animation behavior when it reaches the end and the repeat count is - greater than 0 or infinite. The default value is restart. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
restart1 The animation starts again from the beginning.
reverse2 The animation plays backward.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#repeatMode}. - @attr name android:repeatMode - */ - public static final int Animation_repeatMode = 7; - /** -

- @attr description - Delay in milliseconds before the animation runs, once start time is reached. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#startOffset}. - @attr name android:startOffset - */ - public static final int Animation_startOffset = 5; - /** -

- @attr description - Allows for an adjustment of the Z ordering of the content being - animated for the duration of the animation. The default value is normal. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
normal0 The content being animated be kept in its current Z order.
top1 The content being animated is forced on top of all other - content for the duration of the animation.
bottom-1 The content being animated is forced under all other - content for the duration of the animation.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#zAdjustment}. - @attr name android:zAdjustment - */ - public static final int Animation_zAdjustment = 8; - /** - Drawable used to render several animated frames. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #AnimationDrawable_oneshot android:oneshot} If true, the animation will only run a single time and then - stop.
{@link #AnimationDrawable_variablePadding android:variablePadding} If true, allows the drawable's padding to change based on the - current state that is selected.
{@link #AnimationDrawable_visible android:visible} Provides initial visibility state of the drawable; the default - value is false.
- @see #AnimationDrawable_oneshot - @see #AnimationDrawable_variablePadding - @see #AnimationDrawable_visible - */ - public static final int[] AnimationDrawable = { - 0x01010194, 0x01010195, 0x01010197}; - /** -

- @attr description - If true, the animation will only run a single time and then - stop. If false (the default), it will continually run, - restarting at the first frame after the last has finished. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#oneshot}. - @attr name android:oneshot - */ - public static final int AnimationDrawable_oneshot = 2; - /** -

- @attr description - If true, allows the drawable's padding to change based on the - current state that is selected. If false, the padding will - stay the same (based on the maximum padding of all the states). - Enabling this feature requires that the owner of the drawable - deal with performing layout when the state changes, which is - often not supported. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#variablePadding}. - @attr name android:variablePadding - */ - public static final int AnimationDrawable_variablePadding = 1; - /** -

- @attr description - Provides initial visibility state of the drawable; the default - value is false. See - {@link android.graphics.drawable.Drawable#setVisible}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#visible}. - @attr name android:visible - */ - public static final int AnimationDrawable_visible = 0; - /** - Represents a single frame inside an AnimationDrawable. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #AnimationDrawableItem_drawable android:drawable} Reference to a drawable resource to use for the frame.
{@link #AnimationDrawableItem_duration android:duration} Amount of time (in milliseconds) to display this frame.
- @see #AnimationDrawableItem_drawable - @see #AnimationDrawableItem_duration - */ - public static final int[] AnimationDrawableItem = { - 0x01010198, 0x01010199}; - /** -

- @attr description - Reference to a drawable resource to use for the frame. If not - given, the drawable must be defined by the first child tag. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#drawable}. - @attr name android:drawable - */ - public static final int AnimationDrawableItem_drawable = 1; - /** -

- @attr description - Amount of time (in milliseconds) to display this frame. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#duration}. - @attr name android:duration - */ - public static final int AnimationDrawableItem_duration = 0; - /** - Attributes that can be used with a AnimationSet. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #AnimationSet_duration android:duration} Amount of time (in milliseconds) to display this frame.
{@link #AnimationSet_fillAfter android:fillAfter} When set to true, the animation transformation is applied after the animation is - over.
{@link #AnimationSet_fillBefore android:fillBefore} When set to true or when fillEnabled is not set to true, the animation transformation - is applied before the animation has started.
{@link #AnimationSet_repeatMode android:repeatMode} Defines the animation behavior when it reaches the end and the repeat count is - greater than 0 or infinite.
{@link #AnimationSet_shareInterpolator android:shareInterpolator}
{@link #AnimationSet_startOffset android:startOffset} Delay in milliseconds before the animation runs, once start time is reached.
- @see #AnimationSet_duration - @see #AnimationSet_fillAfter - @see #AnimationSet_fillBefore - @see #AnimationSet_repeatMode - @see #AnimationSet_shareInterpolator - @see #AnimationSet_startOffset - */ - public static final int[] AnimationSet = { - 0x01010198, 0x010101bb, 0x010101bc, 0x010101bd, - 0x010101be, 0x010101c0}; - /** -

- @attr description - Amount of time (in milliseconds) to display this frame. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#duration}. - @attr name android:duration - */ - public static final int AnimationSet_duration = 0; - /** -

- @attr description - When set to true, the animation transformation is applied after the animation is - over. The default value is false. If fillEnabled is not set to true and the - animation is not set on a View, fillAfter is assumed to be true. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fillAfter}. - @attr name android:fillAfter - */ - public static final int AnimationSet_fillAfter = 3; - /** -

- @attr description - When set to true or when fillEnabled is not set to true, the animation transformation - is applied before the animation has started. The default value is true. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fillBefore}. - @attr name android:fillBefore - */ - public static final int AnimationSet_fillBefore = 2; - /** -

- @attr description - Defines the animation behavior when it reaches the end and the repeat count is - greater than 0 or infinite. The default value is restart. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
restart1 The animation starts again from the beginning.
reverse2 The animation plays backward.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#repeatMode}. - @attr name android:repeatMode - */ - public static final int AnimationSet_repeatMode = 5; - /** -

This symbol is the offset where the {@link android.R.attr#shareInterpolator} - attribute's value can be found in the {@link #AnimationSet} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:shareInterpolator - */ - public static final int AnimationSet_shareInterpolator = 1; - /** -

- @attr description - Delay in milliseconds before the animation runs, once start time is reached. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#startOffset}. - @attr name android:startOffset - */ - public static final int AnimationSet_startOffset = 4; - /** - Attributes that can be used with a Animator. -

Includes the following attributes:

- - - - - - - - - - - - -
AttributeDescription
{@link #Animator_duration android:duration} Amount of time (in milliseconds) for the animation to run.
{@link #Animator_interpolator android:interpolator} Defines the interpolator used to smooth the animation movement in time.
{@link #Animator_repeatCount android:repeatCount} Defines how many times the animation should repeat.
{@link #Animator_repeatMode android:repeatMode} Defines the animation behavior when it reaches the end and the repeat count is - greater than 0 or infinite.
{@link #Animator_startOffset android:startOffset} Delay in milliseconds before the animation runs, once start time is reached.
{@link #Animator_valueFrom android:valueFrom} Value the animation starts from.
{@link #Animator_valueTo android:valueTo} Value the animation animates to.
{@link #Animator_valueType android:valueType} The type of valueFrom and valueTo.
- @see #Animator_duration - @see #Animator_interpolator - @see #Animator_repeatCount - @see #Animator_repeatMode - @see #Animator_startOffset - @see #Animator_valueFrom - @see #Animator_valueTo - @see #Animator_valueType - */ - public static final int[] Animator = { - 0x01010141, 0x01010198, 0x010101be, 0x010101bf, - 0x010101c0, 0x010102de, 0x010102df, 0x010102e0}; - /** -

- @attr description - Amount of time (in milliseconds) for the animation to run. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#duration}. - @attr name android:duration - */ - public static final int Animator_duration = 1; - /** -

- @attr description - Defines the interpolator used to smooth the animation movement in time. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#interpolator}. - @attr name android:interpolator - */ - public static final int Animator_interpolator = 0; - /** -

- @attr description - Defines how many times the animation should repeat. The default value is 0. - - -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - -
ConstantValueDescription
infinite-1
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#repeatCount}. - @attr name android:repeatCount - */ - public static final int Animator_repeatCount = 3; - /** -

- @attr description - Defines the animation behavior when it reaches the end and the repeat count is - greater than 0 or infinite. The default value is restart. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
restart1 The animation starts again from the beginning.
reverse2 The animation plays backward.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#repeatMode}. - @attr name android:repeatMode - */ - public static final int Animator_repeatMode = 4; - /** -

- @attr description - Delay in milliseconds before the animation runs, once start time is reached. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#startOffset}. - @attr name android:startOffset - */ - public static final int Animator_startOffset = 2; - /** -

- @attr description - Value the animation starts from. - - -

May be an integer value, such as "100". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

May be a floating point value, such as "1.2". -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#valueFrom}. - @attr name android:valueFrom - */ - public static final int Animator_valueFrom = 5; - /** -

- @attr description - Value the animation animates to. - - -

May be an integer value, such as "100". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

May be a floating point value, such as "1.2". -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#valueTo}. - @attr name android:valueTo - */ - public static final int Animator_valueTo = 6; - /** -

- @attr description - The type of valueFrom and valueTo. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
floatType0 valueFrom and valueTo are floats. This is the default value is valueType is - unspecified. Note that if either valueFrom or valueTo represent colors - (beginning with "#"), then this attribute is ignored and the color values are - interpreted as integers.
intType1 valueFrom and valueTo are integers.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#valueType}. - @attr name android:valueType - */ - public static final int Animator_valueType = 7; - /** - Attributes that can be used with a AnimatorSet. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #AnimatorSet_ordering android:ordering} Name of the property being animated.
- @see #AnimatorSet_ordering - */ - public static final int[] AnimatorSet = { - 0x010102e2}; - /** -

- @attr description - Name of the property being animated. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
together0 child animations should be played together.
sequentially1 child animations should be played sequentially, in the same order as the xml.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#ordering}. - @attr name android:ordering - */ - public static final int AnimatorSet_ordering = 0; - /** - Attributes that can be used with a AnticipateInterpolator. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #AnticipateInterpolator_tension android:tension} This is the amount of tension.
- @see #AnticipateInterpolator_tension - */ - public static final int[] AnticipateInterpolator = { - 0x0101026a}; - /** -

- @attr description - This is the amount of tension. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#tension}. - @attr name android:tension - */ - public static final int AnticipateInterpolator_tension = 0; - /** - Attributes that can be used with a AnticipateOvershootInterpolator. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #AnticipateOvershootInterpolator_extraTension android:extraTension} This is the amount by which to multiply the tension.
{@link #AnticipateOvershootInterpolator_tension android:tension} This is the amount of tension.
- @see #AnticipateOvershootInterpolator_extraTension - @see #AnticipateOvershootInterpolator_tension - */ - public static final int[] AnticipateOvershootInterpolator = { - 0x0101026a, 0x0101026b}; - /** -

- @attr description - This is the amount by which to multiply the tension. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#extraTension}. - @attr name android:extraTension - */ - public static final int AnticipateOvershootInterpolator_extraTension = 1; - /** -

- @attr description - This is the amount of tension. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#tension}. - @attr name android:tension - */ - public static final int AnticipateOvershootInterpolator_tension = 0; - /** - Use appwidget-provider as the root tag of the XML resource that - describes an AppWidget provider. See {@link android.appwidget android.appwidget} - package for more info. - -

Includes the following attributes:

- - - - - - - - - - - - - - - - -
AttributeDescription
{@link #AppWidgetProviderInfo_autoAdvanceViewId android:autoAdvanceViewId} The view id of the AppWidget subview which should be auto-advanced.
{@link #AppWidgetProviderInfo_configure android:configure} A class name in the AppWidget's package to be launched to configure.
{@link #AppWidgetProviderInfo_initialKeyguardLayout android:initialKeyguardLayout} A resource id of a layout.
{@link #AppWidgetProviderInfo_initialLayout android:initialLayout} A resource id of a layout.
{@link #AppWidgetProviderInfo_minHeight android:minHeight} Minimum height of the AppWidget.
{@link #AppWidgetProviderInfo_minResizeHeight android:minResizeHeight} Minimum height that the AppWidget can be resized to.
{@link #AppWidgetProviderInfo_minResizeWidth android:minResizeWidth} Minimum width that the AppWidget can be resized to.
{@link #AppWidgetProviderInfo_minWidth android:minWidth} Minimum width of the AppWidget.
{@link #AppWidgetProviderInfo_previewImage android:previewImage} A preview of what the AppWidget will look like after it's configured.
{@link #AppWidgetProviderInfo_resizeMode android:resizeMode} Optional parameter which indicates if and how this widget can be - resized.
{@link #AppWidgetProviderInfo_updatePeriodMillis android:updatePeriodMillis} Update period in milliseconds, or 0 if the AppWidget will update itself.
{@link #AppWidgetProviderInfo_widgetCategory android:widgetCategory} Optional parameter which indicates where this widget can be shown, - ie.
- @see #AppWidgetProviderInfo_autoAdvanceViewId - @see #AppWidgetProviderInfo_configure - @see #AppWidgetProviderInfo_initialKeyguardLayout - @see #AppWidgetProviderInfo_initialLayout - @see #AppWidgetProviderInfo_minHeight - @see #AppWidgetProviderInfo_minResizeHeight - @see #AppWidgetProviderInfo_minResizeWidth - @see #AppWidgetProviderInfo_minWidth - @see #AppWidgetProviderInfo_previewImage - @see #AppWidgetProviderInfo_resizeMode - @see #AppWidgetProviderInfo_updatePeriodMillis - @see #AppWidgetProviderInfo_widgetCategory - */ - public static final int[] AppWidgetProviderInfo = { - 0x0101013f, 0x01010140, 0x01010250, 0x01010251, - 0x0101025d, 0x010102da, 0x0101030f, 0x01010363, - 0x01010395, 0x01010396, 0x010103c2, 0x010103c4}; - /** -

- @attr description - The view id of the AppWidget subview which should be auto-advanced. - by the widget's host. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#autoAdvanceViewId}. - @attr name android:autoAdvanceViewId - */ - public static final int AppWidgetProviderInfo_autoAdvanceViewId = 6; - /** -

- @attr description - A class name in the AppWidget's package to be launched to configure. - If not supplied, then no activity will be launched. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#configure}. - @attr name android:configure - */ - public static final int AppWidgetProviderInfo_configure = 4; - /** -

- @attr description - A resource id of a layout. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#initialKeyguardLayout}. - @attr name android:initialKeyguardLayout - */ - public static final int AppWidgetProviderInfo_initialKeyguardLayout = 10; - /** -

- @attr description - A resource id of a layout. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#initialLayout}. - @attr name android:initialLayout - */ - public static final int AppWidgetProviderInfo_initialLayout = 3; - /** -

- @attr description - Minimum height of the AppWidget. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#minHeight}. - @attr name android:minHeight - */ - public static final int AppWidgetProviderInfo_minHeight = 1; - /** -

- @attr description - Minimum height that the AppWidget can be resized to. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#minResizeHeight}. - @attr name android:minResizeHeight - */ - public static final int AppWidgetProviderInfo_minResizeHeight = 9; - /** -

- @attr description - Minimum width that the AppWidget can be resized to. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#minResizeWidth}. - @attr name android:minResizeWidth - */ - public static final int AppWidgetProviderInfo_minResizeWidth = 8; - /** -

- @attr description - Minimum width of the AppWidget. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#minWidth}. - @attr name android:minWidth - */ - public static final int AppWidgetProviderInfo_minWidth = 0; - /** -

- @attr description - A preview of what the AppWidget will look like after it's configured. - If not supplied, the AppWidget's icon will be used. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#previewImage}. - @attr name android:previewImage - */ - public static final int AppWidgetProviderInfo_previewImage = 5; - /** -

- @attr description - Optional parameter which indicates if and how this widget can be - resized. Supports combined values using | operator. - - -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one or more (separated by '|') of the following constant values.

- - - - - - - - -
ConstantValueDescription
none0x0
horizontal0x1
vertical0x2
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#resizeMode}. - @attr name android:resizeMode - */ - public static final int AppWidgetProviderInfo_resizeMode = 7; - /** -

- @attr description - Update period in milliseconds, or 0 if the AppWidget will update itself. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#updatePeriodMillis}. - @attr name android:updatePeriodMillis - */ - public static final int AppWidgetProviderInfo_updatePeriodMillis = 2; - /** -

- @attr description - Optional parameter which indicates where this widget can be shown, - ie. home screen, keyguard or both. - resized. Supports combined values using | operator. - - -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one or more (separated by '|') of the following constant values.

- - - - - - - -
ConstantValueDescription
home_screen0x1
keyguard0x2
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#widgetCategory}. - @attr name android:widgetCategory - */ - public static final int AppWidgetProviderInfo_widgetCategory = 11; - /** - Attributes that can be used with a AutoCompleteTextView. -

Includes the following attributes:

- - - - - - - - - - - - - - -
AttributeDescription
{@link #AutoCompleteTextView_completionHint android:completionHint} Defines the hint displayed in the drop down menu.
{@link #AutoCompleteTextView_completionHintView android:completionHintView} Defines the hint view displayed in the drop down menu.
{@link #AutoCompleteTextView_completionThreshold android:completionThreshold} Defines the number of characters that the user must type before - completion suggestions are displayed in a drop down menu.
{@link #AutoCompleteTextView_dropDownAnchor android:dropDownAnchor} View to anchor the auto-complete dropdown to.
{@link #AutoCompleteTextView_dropDownHeight android:dropDownHeight} Specifies the basic height of the dropdown.
{@link #AutoCompleteTextView_dropDownHorizontalOffset android:dropDownHorizontalOffset} Amount of pixels by which the drop down should be offset horizontally.
{@link #AutoCompleteTextView_dropDownSelector android:dropDownSelector} Selector in a drop down list.
{@link #AutoCompleteTextView_dropDownVerticalOffset android:dropDownVerticalOffset} Amount of pixels by which the drop down should be offset vertically.
{@link #AutoCompleteTextView_dropDownWidth android:dropDownWidth} Specifies the basic width of the dropdown.
{@link #AutoCompleteTextView_inputType android:inputType} The type of data being placed in a text field, used to help an - input method decide how to let the user enter text.
- @see #AutoCompleteTextView_completionHint - @see #AutoCompleteTextView_completionHintView - @see #AutoCompleteTextView_completionThreshold - @see #AutoCompleteTextView_dropDownAnchor - @see #AutoCompleteTextView_dropDownHeight - @see #AutoCompleteTextView_dropDownHorizontalOffset - @see #AutoCompleteTextView_dropDownSelector - @see #AutoCompleteTextView_dropDownVerticalOffset - @see #AutoCompleteTextView_dropDownWidth - @see #AutoCompleteTextView_inputType - */ - public static final int[] AutoCompleteTextView = { - 0x01010172, 0x01010173, 0x01010174, 0x01010175, - 0x01010220, 0x01010262, 0x01010263, 0x01010283, - 0x010102ac, 0x010102ad}; - /** -

- @attr description - Defines the hint displayed in the drop down menu. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#completionHint}. - @attr name android:completionHint - */ - public static final int AutoCompleteTextView_completionHint = 0; - /** -

- @attr description - Defines the hint view displayed in the drop down menu. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#completionHintView}. - @attr name android:completionHintView - */ - public static final int AutoCompleteTextView_completionHintView = 1; - /** -

- @attr description - Defines the number of characters that the user must type before - completion suggestions are displayed in a drop down menu. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#completionThreshold}. - @attr name android:completionThreshold - */ - public static final int AutoCompleteTextView_completionThreshold = 2; - /** -

- @attr description - View to anchor the auto-complete dropdown to. If not specified, the text view itself - is used. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownAnchor}. - @attr name android:dropDownAnchor - */ - public static final int AutoCompleteTextView_dropDownAnchor = 6; - /** -

- @attr description - Specifies the basic height of the dropdown. Its value may - be a dimension (such as "12dip") for a constant height, - fill_parent or match_parent to fill the height of the - screen, or wrap_content to match the height of - the content of the drop down. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
fill_parent-1 The dropdown should fit the height of the screen. - This constant is deprecated starting from API Level 8 and - is replaced by {@code match_parent}.
match_parent-1 The dropdown should fit the height of the screen. - Introduced in API Level 8.
wrap_content-2 The dropdown should fit the height of the content.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownHeight}. - @attr name android:dropDownHeight - */ - public static final int AutoCompleteTextView_dropDownHeight = 7; - /** -

- @attr description - Amount of pixels by which the drop down should be offset horizontally. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownHorizontalOffset}. - @attr name android:dropDownHorizontalOffset - */ - public static final int AutoCompleteTextView_dropDownHorizontalOffset = 8; - /** -

- @attr description - Selector in a drop down list. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownSelector}. - @attr name android:dropDownSelector - */ - public static final int AutoCompleteTextView_dropDownSelector = 3; - /** -

- @attr description - Amount of pixels by which the drop down should be offset vertically. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownVerticalOffset}. - @attr name android:dropDownVerticalOffset - */ - public static final int AutoCompleteTextView_dropDownVerticalOffset = 9; - /** -

- @attr description - Specifies the basic width of the dropdown. Its value may - be a dimension (such as "12dip") for a constant width, - fill_parent or match_parent to match the width of the - screen, or wrap_content to match the width of - the anchored view. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
fill_parent-1 The dropdown should fill the width of the screen. - This constant is deprecated starting from API Level 8 and - is replaced by {@code match_parent}.
match_parent-1 The dropdown should fit the width of the screen. - Introduced in API Level 8.
wrap_content-2 The dropdown should fit the width of its anchor.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownWidth}. - @attr name android:dropDownWidth - */ - public static final int AutoCompleteTextView_dropDownWidth = 5; - /** -

- @attr description - The type of data being placed in a text field, used to help an - input method decide how to let the user enter text. The constants - here correspond to those defined by - {@link android.text.InputType}. Generally you can select - a single value, though some can be combined together as - indicated. Setting this attribute to anything besides - none also implies that the text is editable. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
none0x00000000 There is no content type. The text is not editable.
text0x00000001 Just plain old text. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_NORMAL}.
textCapCharacters0x00001001 Can be combined with text and its variations to - request capitalization of all characters. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_CHARACTERS}.
textCapWords0x00002001 Can be combined with text and its variations to - request capitalization of the first character of every word. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_WORDS}.
textCapSentences0x00004001 Can be combined with text and its variations to - request capitalization of the first character of every sentence. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_SENTENCES}.
textAutoCorrect0x00008001 Can be combined with text and its variations to - request auto-correction of text being input. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_CORRECT}.
textAutoComplete0x00010001 Can be combined with text and its variations to - specify that this field will be doing its own auto-completion and - talking with the input method appropriately. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_COMPLETE}.
textMultiLine0x00020001 Can be combined with text and its variations to - allow multiple lines of text in the field. If this flag is not set, - the text field will be constrained to a single line. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_MULTI_LINE}.
textImeMultiLine0x00040001 Can be combined with text and its variations to - indicate that though the regular text view should not be multiple - lines, the IME should provide multiple lines if it can. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_IME_MULTI_LINE}.
textNoSuggestions0x00080001 Can be combined with text and its variations to - indicate that the IME should not show any - dictionary-based word suggestions. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_NO_SUGGESTIONS}.
textUri0x00000011 Text that will be used as a URI. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_URI}.
textEmailAddress0x00000021 Text that will be used as an e-mail address. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_ADDRESS}.
textEmailSubject0x00000031 Text that is being supplied as the subject of an e-mail. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_SUBJECT}.
textShortMessage0x00000041 Text that is the content of a short message. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_SHORT_MESSAGE}.
textLongMessage0x00000051 Text that is the content of a long message. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_LONG_MESSAGE}.
textPersonName0x00000061 Text that is the name of a person. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_PERSON_NAME}.
textPostalAddress0x00000071 Text that is being supplied as a postal mailing address. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_POSTAL_ADDRESS}.
textPassword0x00000081 Text that is a password. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_PASSWORD}.
textVisiblePassword0x00000091 Text that is a password that should be visible. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_VISIBLE_PASSWORD}.
textWebEditText0x000000a1 Text that is being supplied as text in a web form. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EDIT_TEXT}.
textFilter0x000000b1 Text that is filtering some other data. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_FILTER}.
textPhonetic0x000000c1 Text that is for phonetic pronunciation, such as a phonetic name - field in a contact entry. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_PHONETIC}.
textWebEmailAddress0x000000d1 Text that will be used as an e-mail address on a web form. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS}.
textWebPassword0x000000e1 Text that will be used as a password on a web form. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_PASSWORD}.
number0x00000002 A numeric only field. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_VARIATION_NORMAL}.
numberSigned0x00001002 Can be combined with number and its other options to - allow a signed number. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_FLAG_SIGNED}.
numberDecimal0x00002002 Can be combined with number and its other options to - allow a decimal (fractional) number. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_FLAG_DECIMAL}.
numberPassword0x00000012 A numeric password field. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_VARIATION_PASSWORD}.
phone0x00000003 For entering a phone number. Corresponds to - {@link android.text.InputType#TYPE_CLASS_PHONE}.
datetime0x00000004 For entering a date and time. Corresponds to - {@link android.text.InputType#TYPE_CLASS_DATETIME} | - {@link android.text.InputType#TYPE_DATETIME_VARIATION_NORMAL}.
date0x00000014 For entering a date. Corresponds to - {@link android.text.InputType#TYPE_CLASS_DATETIME} | - {@link android.text.InputType#TYPE_DATETIME_VARIATION_DATE}.
time0x00000024 For entering a time. Corresponds to - {@link android.text.InputType#TYPE_CLASS_DATETIME} | - {@link android.text.InputType#TYPE_DATETIME_VARIATION_TIME}.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#inputType}. - @attr name android:inputType - */ - public static final int AutoCompleteTextView_inputType = 4; - /** - Drawable used to draw bitmaps. -

Includes the following attributes:

- - - - - - - - - - - - -
AttributeDescription
{@link #BitmapDrawable_antialias android:antialias} Enables or disables antialiasing.
{@link #BitmapDrawable_autoMirrored android:autoMirrored} Indicates if the drawable needs to be mirrored when its layout direction is - RTL (right-to-left).
{@link #BitmapDrawable_dither android:dither} Enables or disables dithering of the bitmap if the bitmap does not have the - same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with - an RGB 565 screen).
{@link #BitmapDrawable_filter android:filter} Enables or disables bitmap filtering.
{@link #BitmapDrawable_gravity android:gravity} Defines the gravity for the bitmap.
{@link #BitmapDrawable_mipMap android:mipMap} Enables or disables the mipmap hint.
{@link #BitmapDrawable_src android:src} Identifier of the bitmap file.
{@link #BitmapDrawable_tileMode android:tileMode} Defines the tile mode.
- @see #BitmapDrawable_antialias - @see #BitmapDrawable_autoMirrored - @see #BitmapDrawable_dither - @see #BitmapDrawable_filter - @see #BitmapDrawable_gravity - @see #BitmapDrawable_mipMap - @see #BitmapDrawable_src - @see #BitmapDrawable_tileMode - */ - public static final int[] BitmapDrawable = { - 0x010100af, 0x01010119, 0x0101011a, 0x0101011b, - 0x0101011c, 0x01010201, 0x010103cd, 0x010103ea}; - /** -

- @attr description - Enables or disables antialiasing. Antialiasing can be used to smooth the - edges of a bitmap when rotated. Default value is false. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#antialias}. - @attr name android:antialias - */ - public static final int BitmapDrawable_antialias = 2; - /** -

- @attr description - Indicates if the drawable needs to be mirrored when its layout direction is - RTL (right-to-left). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#autoMirrored}. - @attr name android:autoMirrored - */ - public static final int BitmapDrawable_autoMirrored = 7; - /** -

- @attr description - Enables or disables dithering of the bitmap if the bitmap does not have the - same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with - an RGB 565 screen). Default value is true. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dither}. - @attr name android:dither - */ - public static final int BitmapDrawable_dither = 4; - /** -

- @attr description - Enables or disables bitmap filtering. Filtering is used when the bitmap is - shrunk or stretched to smooth its apperance. Default value is true. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#filter}. - @attr name android:filter - */ - public static final int BitmapDrawable_filter = 3; - /** -

- @attr description - Defines the gravity for the bitmap. The gravity indicates where to position - the drawable in its container if the bitmap is smaller than the container. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#gravity}. - @attr name android:gravity - */ - public static final int BitmapDrawable_gravity = 0; - /** -

- @attr description - Enables or disables the mipmap hint. See - {@link android.graphics.Bitmap#setHasMipMap(boolean)} for more information. - Default value is false. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#mipMap}. - @attr name android:mipMap - */ - public static final int BitmapDrawable_mipMap = 6; - /** -

- @attr description - Identifier of the bitmap file. This attribute is mandatory. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#src}. - @attr name android:src - */ - public static final int BitmapDrawable_src = 1; - /** -

- @attr description - Defines the tile mode. When the tile mode is enabled, the bitmap is repeated. - Gravity is ignored when the tile mode is enabled. Default value is "disabled". - - -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
disabled-1 Do not tile the bitmap. This is the default value.
clamp0 Replicates the edge color.
repeat1 Repeats the bitmap in both direction.
mirror2 Repeats the shader's image horizontally and vertically, alternating - mirror images so that adjacent images always seam.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#tileMode}. - @attr name android:tileMode - */ - public static final int BitmapDrawable_tileMode = 5; - /** - * Attributes that can be used with a Button. - */ - public static final int[] Button = { - - }; - /** - Attributes that can be used with a CalendarView. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #CalendarView_dateTextAppearance android:dateTextAppearance} The text appearance for the calendar dates.
{@link #CalendarView_firstDayOfWeek android:firstDayOfWeek} The first day of week according to {@link java.util.Calendar}.
{@link #CalendarView_focusedMonthDateColor android:focusedMonthDateColor} The color for the dates of the focused month.
{@link #CalendarView_maxDate android:maxDate} The minimal date shown by this calendar view in mm/dd/yyyy format.
{@link #CalendarView_minDate android:minDate} The minimal date shown by this calendar view in mm/dd/yyyy format.
{@link #CalendarView_selectedDateVerticalBar android:selectedDateVerticalBar} Drawable for the vertical bar shown at the beginning and at the end of the selected date.
{@link #CalendarView_selectedWeekBackgroundColor android:selectedWeekBackgroundColor} The background color for the selected week.
{@link #CalendarView_showWeekNumber android:showWeekNumber} Whether do show week numbers.
{@link #CalendarView_shownWeekCount android:shownWeekCount} The number of weeks to be shown.
{@link #CalendarView_unfocusedMonthDateColor android:unfocusedMonthDateColor} The color for the dates of an unfocused month.
{@link #CalendarView_weekDayTextAppearance android:weekDayTextAppearance} The text appearance for the week day abbreviation of the calendar header.
{@link #CalendarView_weekNumberColor android:weekNumberColor} The color for the week numbers.
{@link #CalendarView_weekSeparatorLineColor android:weekSeparatorLineColor} The color for the separator line between weeks.
- @see #CalendarView_dateTextAppearance - @see #CalendarView_firstDayOfWeek - @see #CalendarView_focusedMonthDateColor - @see #CalendarView_maxDate - @see #CalendarView_minDate - @see #CalendarView_selectedDateVerticalBar - @see #CalendarView_selectedWeekBackgroundColor - @see #CalendarView_showWeekNumber - @see #CalendarView_shownWeekCount - @see #CalendarView_unfocusedMonthDateColor - @see #CalendarView_weekDayTextAppearance - @see #CalendarView_weekNumberColor - @see #CalendarView_weekSeparatorLineColor - */ - public static final int[] CalendarView = { - 0x0101033d, 0x0101033e, 0x0101033f, 0x01010340, - 0x01010341, 0x01010342, 0x01010343, 0x01010344, - 0x01010345, 0x01010346, 0x01010347, 0x01010348, - 0x01010349}; - /** -

- @attr description - The text appearance for the calendar dates. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dateTextAppearance}. - @attr name android:dateTextAppearance - */ - public static final int CalendarView_dateTextAppearance = 12; - /** -

- @attr description - The first day of week according to {@link java.util.Calendar}. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#firstDayOfWeek}. - @attr name android:firstDayOfWeek - */ - public static final int CalendarView_firstDayOfWeek = 0; - /** -

- @attr description - The color for the dates of the focused month. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#focusedMonthDateColor}. - @attr name android:focusedMonthDateColor - */ - public static final int CalendarView_focusedMonthDateColor = 6; - /** -

- @attr description - The minimal date shown by this calendar view in mm/dd/yyyy format. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#maxDate}. - @attr name android:maxDate - */ - public static final int CalendarView_maxDate = 3; - /** -

- @attr description - The minimal date shown by this calendar view in mm/dd/yyyy format. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#minDate}. - @attr name android:minDate - */ - public static final int CalendarView_minDate = 2; - /** -

- @attr description - Drawable for the vertical bar shown at the beginning and at the end of the selected date. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#selectedDateVerticalBar}. - @attr name android:selectedDateVerticalBar - */ - public static final int CalendarView_selectedDateVerticalBar = 10; - /** -

- @attr description - The background color for the selected week. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#selectedWeekBackgroundColor}. - @attr name android:selectedWeekBackgroundColor - */ - public static final int CalendarView_selectedWeekBackgroundColor = 5; - /** -

- @attr description - Whether do show week numbers. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#showWeekNumber}. - @attr name android:showWeekNumber - */ - public static final int CalendarView_showWeekNumber = 1; - /** -

- @attr description - The number of weeks to be shown. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#shownWeekCount}. - @attr name android:shownWeekCount - */ - public static final int CalendarView_shownWeekCount = 4; - /** -

- @attr description - The color for the dates of an unfocused month. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#unfocusedMonthDateColor}. - @attr name android:unfocusedMonthDateColor - */ - public static final int CalendarView_unfocusedMonthDateColor = 7; - /** -

- @attr description - The text appearance for the week day abbreviation of the calendar header. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#weekDayTextAppearance}. - @attr name android:weekDayTextAppearance - */ - public static final int CalendarView_weekDayTextAppearance = 11; - /** -

- @attr description - The color for the week numbers. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#weekNumberColor}. - @attr name android:weekNumberColor - */ - public static final int CalendarView_weekNumberColor = 8; - /** -

- @attr description - The color for the separator line between weeks. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#weekSeparatorLineColor}. - @attr name android:weekSeparatorLineColor - */ - public static final int CalendarView_weekSeparatorLineColor = 9; - /** - Base attributes available to CheckBoxPreference. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #CheckBoxPreference_disableDependentsState android:disableDependentsState} The state (true for on, or false for off) that causes dependents to be disabled.
{@link #CheckBoxPreference_summaryOff android:summaryOff} The summary for the Preference in a PreferenceActivity screen when the - CheckBoxPreference is unchecked.
{@link #CheckBoxPreference_summaryOn android:summaryOn} The summary for the Preference in a PreferenceActivity screen when the - CheckBoxPreference is checked.
- @see #CheckBoxPreference_disableDependentsState - @see #CheckBoxPreference_summaryOff - @see #CheckBoxPreference_summaryOn - */ - public static final int[] CheckBoxPreference = { - 0x010101ef, 0x010101f0, 0x010101f1}; - /** -

- @attr description - The state (true for on, or false for off) that causes dependents to be disabled. By default, - dependents will be disabled when this is unchecked, so the value of this preference is false. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#disableDependentsState}. - @attr name android:disableDependentsState - */ - public static final int CheckBoxPreference_disableDependentsState = 2; - /** -

- @attr description - The summary for the Preference in a PreferenceActivity screen when the - CheckBoxPreference is unchecked. If separate on/off summaries are not - needed, the summary attribute can be used instead. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#summaryOff}. - @attr name android:summaryOff - */ - public static final int CheckBoxPreference_summaryOff = 1; - /** -

- @attr description - The summary for the Preference in a PreferenceActivity screen when the - CheckBoxPreference is checked. If separate on/off summaries are not - needed, the summary attribute can be used instead. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#summaryOn}. - @attr name android:summaryOn - */ - public static final int CheckBoxPreference_summaryOn = 0; - /** - Attributes that can be used with a CheckedTextView. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #CheckedTextView_checkMark android:checkMark} Drawable used for the check mark graphic.
{@link #CheckedTextView_checked android:checked} Indicates the initial checked state of this text.
- @see #CheckedTextView_checkMark - @see #CheckedTextView_checked - */ - public static final int[] CheckedTextView = { - 0x01010106, 0x01010108}; - /** -

- @attr description - Drawable used for the check mark graphic. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#checkMark}. - @attr name android:checkMark - */ - public static final int CheckedTextView_checkMark = 1; - /** -

- @attr description - Indicates the initial checked state of this text. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#checked}. - @attr name android:checked - */ - public static final int CheckedTextView_checked = 0; - /** - Attributes that can be used with a Chronometer. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #Chronometer_format android:format} Format string: if specified, the Chronometer will display this - string, with the first "%s" replaced by the current timer value - in "MM:SS" or "H:MM:SS" form.
- @see #Chronometer_format - */ - public static final int[] Chronometer = { - 0x01010105}; - /** -

- @attr description - Format string: if specified, the Chronometer will display this - string, with the first "%s" replaced by the current timer value - in "MM:SS" or "H:MM:SS" form. - If no format string is specified, the Chronometer will simply display - "MM:SS" or "H:MM:SS". - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#format}. - @attr name android:format - */ - public static final int Chronometer_format = 0; - /** - Attributes that can be used with a ClipDrawable. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #ClipDrawable_clipOrientation android:clipOrientation} The orientation for the clip.
{@link #ClipDrawable_drawable android:drawable} Reference to a drawable resource to draw with the specified scale.
{@link #ClipDrawable_gravity android:gravity} Specifies where to clip within the drawable.
- @see #ClipDrawable_clipOrientation - @see #ClipDrawable_drawable - @see #ClipDrawable_gravity - */ - public static final int[] ClipDrawable = { - 0x010100af, 0x01010199, 0x0101020a}; - /** -

- @attr description - The orientation for the clip. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - -
ConstantValueDescription
horizontal1 Clip the drawable horizontally.
vertical2 Clip the drawable vertically.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#clipOrientation}. - @attr name android:clipOrientation - */ - public static final int ClipDrawable_clipOrientation = 2; - /** -

- @attr description - Reference to a drawable resource to draw with the specified scale. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#drawable}. - @attr name android:drawable - */ - public static final int ClipDrawable_drawable = 1; - /** -

- @attr description - Specifies where to clip within the drawable. The default value is - left. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#gravity}. - @attr name android:gravity - */ - public static final int ClipDrawable_gravity = 0; - /** - Drawable used to draw a single color. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ColorDrawable_color android:color} The color to use.
- @see #ColorDrawable_color - */ - public static final int[] ColorDrawable = { - 0x010101a5}; - /** -

- @attr description - The color to use. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#color}. - @attr name android:color - */ - public static final int ColorDrawable_color = 0; - /** - Attributes that can be used with a CompoundButton. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #CompoundButton_button android:button} Drawable used for the button graphic (e.
{@link #CompoundButton_checked android:checked} Indicates the initial checked state of this button.
- @see #CompoundButton_button - @see #CompoundButton_checked - */ - public static final int[] CompoundButton = { - 0x01010106, 0x01010107}; - /** -

- @attr description - Drawable used for the button graphic (e.g. checkbox, radio button, etc). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#button}. - @attr name android:button - */ - public static final int CompoundButton_button = 1; - /** -

- @attr description - Indicates the initial checked state of this button. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#checked}. - @attr name android:checked - */ - public static final int CompoundButton_checked = 0; - /** - Maps a specific contact data MIME-type to styling information. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #ContactsDataKind_allContactsName android:allContactsName} Resource representing the term "All Contacts" (e.
{@link #ContactsDataKind_detailColumn android:detailColumn} Column in data table that contains details for this data.
{@link #ContactsDataKind_detailSocialSummary android:detailSocialSummary} Flag indicating that detail should be built from SocialProvider.
{@link #ContactsDataKind_icon android:icon} Icon used to represent data of this kind.
{@link #ContactsDataKind_mimeType android:mimeType} Mime-type handled by this mapping.
{@link #ContactsDataKind_summaryColumn android:summaryColumn} Column in data table that summarizes this data.
- @see #ContactsDataKind_allContactsName - @see #ContactsDataKind_detailColumn - @see #ContactsDataKind_detailSocialSummary - @see #ContactsDataKind_icon - @see #ContactsDataKind_mimeType - @see #ContactsDataKind_summaryColumn - */ - public static final int[] ContactsDataKind = { - 0x01010002, 0x01010026, 0x010102a2, 0x010102a3, - 0x010102a4, 0x010102cc}; - /** -

- @attr description - Resource representing the term "All Contacts" (e.g. "All Friends" or - "All connections"). Optional (Default is "All Contacts"). - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#allContactsName}. - @attr name android:allContactsName - */ - public static final int ContactsDataKind_allContactsName = 5; - /** -

- @attr description - Column in data table that contains details for this data. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#detailColumn}. - @attr name android:detailColumn - */ - public static final int ContactsDataKind_detailColumn = 3; - /** -

- @attr description - Flag indicating that detail should be built from SocialProvider. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#detailSocialSummary}. - @attr name android:detailSocialSummary - */ - public static final int ContactsDataKind_detailSocialSummary = 4; - /** -

- @attr description - Icon used to represent data of this kind. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int ContactsDataKind_icon = 0; - /** -

- @attr description - Mime-type handled by this mapping. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#mimeType}. - @attr name android:mimeType - */ - public static final int ContactsDataKind_mimeType = 1; - /** -

- @attr description - Column in data table that summarizes this data. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#summaryColumn}. - @attr name android:summaryColumn - */ - public static final int ContactsDataKind_summaryColumn = 2; - /** - Attributes that can be used with a CycleInterpolator. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #CycleInterpolator_cycles android:cycles}
- @see #CycleInterpolator_cycles - */ - public static final int[] CycleInterpolator = { - 0x010101d4}; - /** -

This symbol is the offset where the {@link android.R.attr#cycles} - attribute's value can be found in the {@link #CycleInterpolator} array. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:cycles - */ - public static final int CycleInterpolator_cycles = 0; - /** - Attributes that can be used with a DatePicker. -

Includes the following attributes:

- - - - - - - - - - - -
AttributeDescription
{@link #DatePicker_calendarViewShown android:calendarViewShown} Whether the calendar view is shown.
{@link #DatePicker_endYear android:endYear} The last year (inclusive), for example "2010".
{@link #DatePicker_internalLayout android:internalLayout} @hide The layout of the date picker.
{@link #DatePicker_maxDate android:maxDate} The maximal date shown by this calendar view in mm/dd/yyyy format.
{@link #DatePicker_minDate android:minDate} The minimal date shown by this calendar view in mm/dd/yyyy format.
{@link #DatePicker_spinnersShown android:spinnersShown} Whether the spinners are shown.
{@link #DatePicker_startYear android:startYear} The first year (inclusive), for example "1940".
- @see #DatePicker_calendarViewShown - @see #DatePicker_endYear - @see #DatePicker_internalLayout - @see #DatePicker_maxDate - @see #DatePicker_minDate - @see #DatePicker_spinnersShown - @see #DatePicker_startYear - */ - public static final int[] DatePicker = { - 0x0101017c, 0x0101017d, 0x0101033f, 0x01010340, - 0x0101034b, 0x0101034c, 0x0101043c}; - /** -

- @attr description - Whether the calendar view is shown. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#calendarViewShown}. - @attr name android:calendarViewShown - */ - public static final int DatePicker_calendarViewShown = 5; - /** -

- @attr description - The last year (inclusive), for example "2010". - {@deprecated Use maxDate instead.} - - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#endYear}. - @attr name android:endYear - */ - @Deprecated - public static final int DatePicker_endYear = 1; - /** -

- @attr description - @hide The layout of the date picker. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:internalLayout - */ - public static final int DatePicker_internalLayout = 6; - /** -

- @attr description - The maximal date shown by this calendar view in mm/dd/yyyy format. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#maxDate}. - @attr name android:maxDate - */ - public static final int DatePicker_maxDate = 3; - /** -

- @attr description - The minimal date shown by this calendar view in mm/dd/yyyy format. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#minDate}. - @attr name android:minDate - */ - public static final int DatePicker_minDate = 2; - /** -

- @attr description - Whether the spinners are shown. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#spinnersShown}. - @attr name android:spinnersShown - */ - public static final int DatePicker_spinnersShown = 4; - /** -

- @attr description - The first year (inclusive), for example "1940". - {@deprecated Use minDate instead.} - - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#startYear}. - @attr name android:startYear - */ - @Deprecated - public static final int DatePicker_startYear = 0; - /** - Attributes that can be used with a DecelerateInterpolator. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #DecelerateInterpolator_factor android:factor} This is the amount of acceleration to add when easing out.
- @see #DecelerateInterpolator_factor - */ - public static final int[] DecelerateInterpolator = { - 0x010101d3}; - /** -

- @attr description - This is the amount of acceleration to add when easing out. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#factor}. - @attr name android:factor - */ - public static final int DecelerateInterpolator_factor = 0; - /** - Use device-admin as the root tag of the XML resource that - describes a - {@link android.app.admin.DeviceAdminReceiver}, which is - referenced from its - {@link android.app.admin.DeviceAdminReceiver#DEVICE_ADMIN_META_DATA} - meta-data entry. Described here are the attributes that can be - included in that tag. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #DeviceAdmin_visible android:visible} Control whether the admin is visible to the user, even when it - is not enabled.
- @see #DeviceAdmin_visible - */ - public static final int[] DeviceAdmin = { - 0x01010194}; - /** -

- @attr description - Control whether the admin is visible to the user, even when it - is not enabled. This is true by default. You may want to make - it false if your admin does not make sense to be turned on - unless some explicit action happens in your app. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#visible}. - @attr name android:visible - */ - public static final int DeviceAdmin_visible = 0; - /** - Base attributes available to DialogPreference. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #DialogPreference_dialogIcon android:dialogIcon} The icon for the dialog.
{@link #DialogPreference_dialogLayout android:dialogLayout} A layout to be used as the content View for the dialog.
{@link #DialogPreference_dialogMessage android:dialogMessage} The message in the dialog.
{@link #DialogPreference_dialogTitle android:dialogTitle} The title in the dialog.
{@link #DialogPreference_negativeButtonText android:negativeButtonText} The negative button text for the dialog.
{@link #DialogPreference_positiveButtonText android:positiveButtonText} The positive button text for the dialog.
- @see #DialogPreference_dialogIcon - @see #DialogPreference_dialogLayout - @see #DialogPreference_dialogMessage - @see #DialogPreference_dialogTitle - @see #DialogPreference_negativeButtonText - @see #DialogPreference_positiveButtonText - */ - public static final int[] DialogPreference = { - 0x010101f2, 0x010101f3, 0x010101f4, 0x010101f5, - 0x010101f6, 0x010101f7}; - /** -

- @attr description - The icon for the dialog. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dialogIcon}. - @attr name android:dialogIcon - */ - public static final int DialogPreference_dialogIcon = 2; - /** -

- @attr description - A layout to be used as the content View for the dialog. By default, this shouldn't - be needed. If a custom DialogPreference is required, this should be set. For example, - the EditTextPreference uses a layout with an EditText as this attribute. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dialogLayout}. - @attr name android:dialogLayout - */ - public static final int DialogPreference_dialogLayout = 5; - /** -

- @attr description - The message in the dialog. If a dialogLayout is provided and contains - a TextView with ID android:id/message, this message will be placed in there. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dialogMessage}. - @attr name android:dialogMessage - */ - public static final int DialogPreference_dialogMessage = 1; - /** -

- @attr description - The title in the dialog. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dialogTitle}. - @attr name android:dialogTitle - */ - public static final int DialogPreference_dialogTitle = 0; - /** -

- @attr description - The negative button text for the dialog. Set to @null to hide the negative button. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#negativeButtonText}. - @attr name android:negativeButtonText - */ - public static final int DialogPreference_negativeButtonText = 4; - /** -

- @attr description - The positive button text for the dialog. Set to @null to hide the positive button. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#positiveButtonText}. - @attr name android:positiveButtonText - */ - public static final int DialogPreference_positiveButtonText = 3; - /** - Base attributes that are available to all Drawable objects. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #Drawable_autoMirrored android:autoMirrored} Indicates if the drawable needs to be mirrored when its layout direction is - RTL (right-to-left).
{@link #Drawable_visible android:visible} Provides initial visibility state of the drawable; the default - value is false.
- @see #Drawable_autoMirrored - @see #Drawable_visible - */ - public static final int[] Drawable = { - 0x01010194, 0x010103ea}; - /** -

- @attr description - Indicates if the drawable needs to be mirrored when its layout direction is - RTL (right-to-left). See - {@link android.graphics.drawable.Drawable#setAutoMirrored}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#autoMirrored}. - @attr name android:autoMirrored - */ - public static final int Drawable_autoMirrored = 1; - /** -

- @attr description - Provides initial visibility state of the drawable; the default - value is false. See - {@link android.graphics.drawable.Drawable#setVisible}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#visible}. - @attr name android:visible - */ - public static final int Drawable_visible = 0; - /** - Describes the corners for the rectangle shape of a GradientDrawable. - This can be used to render rounded corners. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #DrawableCorners_bottomLeftRadius android:bottomLeftRadius} Radius of the bottom left corner.
{@link #DrawableCorners_bottomRightRadius android:bottomRightRadius} Radius of the bottom right corner.
{@link #DrawableCorners_radius android:radius} Defines the radius of the four corners.
{@link #DrawableCorners_topLeftRadius android:topLeftRadius} Radius of the top left corner.
{@link #DrawableCorners_topRightRadius android:topRightRadius} Radius of the top right corner.
- @see #DrawableCorners_bottomLeftRadius - @see #DrawableCorners_bottomRightRadius - @see #DrawableCorners_radius - @see #DrawableCorners_topLeftRadius - @see #DrawableCorners_topRightRadius - */ - public static final int[] DrawableCorners = { - 0x010101a8, 0x010101a9, 0x010101aa, 0x010101ab, - 0x010101ac}; - /** -

- @attr description - Radius of the bottom left corner. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#bottomLeftRadius}. - @attr name android:bottomLeftRadius - */ - public static final int DrawableCorners_bottomLeftRadius = 3; - /** -

- @attr description - Radius of the bottom right corner. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#bottomRightRadius}. - @attr name android:bottomRightRadius - */ - public static final int DrawableCorners_bottomRightRadius = 4; - /** -

- @attr description - Defines the radius of the four corners. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#radius}. - @attr name android:radius - */ - public static final int DrawableCorners_radius = 0; - /** -

- @attr description - Radius of the top left corner. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#topLeftRadius}. - @attr name android:topLeftRadius - */ - public static final int DrawableCorners_topLeftRadius = 1; - /** -

- @attr description - Radius of the top right corner. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#topRightRadius}. - @attr name android:topRightRadius - */ - public static final int DrawableCorners_topRightRadius = 2; - /** - Drawable states. - The mapping of Drawable states to a particular drawables is specified - in the "state" elements of a Widget's "selector" element. - Possible values: -

    -
  • "state_focused" -
  • "state_window_focused" -
  • "state_enabled" -
  • "state_checked" -
  • "state_selected" -
  • "state_active" -
  • "state_single" -
  • "state_first" -
  • "state_mid" -
  • "state_last" -
  • "state_only" -
  • "state_pressed" -
  • "state_activated" -
  • "state_error" -
  • "state_circle" -
  • "state_rect" -
  • "state_grow" -
  • "state_move" -
  • "state_hovered" -
  • "state_drag_can_accept" -
  • "state_drag_hovered" -
  • "state_accessibility_focused" -
-

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #DrawableStates_state_accelerated android:state_accelerated} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - indicating that the Drawable is in a view that is hardware accelerated.
{@link #DrawableStates_state_accessibility_focused android:state_accessibility_focused} State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} - indicating that a View has accessibility focus.
{@link #DrawableStates_state_activated android:state_activated} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view or its parent has been "activated" meaning the user has currently - marked it as being of interest.
{@link #DrawableStates_state_active android:state_active} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}.
{@link #DrawableStates_state_checkable android:state_checkable} State identifier indicating that the object may display a check mark.
{@link #DrawableStates_state_checked android:state_checked} State identifier indicating that the object is currently checked.
{@link #DrawableStates_state_drag_can_accept android:state_drag_can_accept} State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} - indicating that the Drawable is in a view that is capable of accepting a drop of - the content currently being manipulated in a drag-and-drop operation.
{@link #DrawableStates_state_drag_hovered android:state_drag_hovered} State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} - indicating that a drag operation (for which the Drawable's view is a valid recipient) - is currently positioned over the Drawable.
{@link #DrawableStates_state_enabled android:state_enabled} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view is enabled.
{@link #DrawableStates_state_first android:state_first} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}.
{@link #DrawableStates_state_focused android:state_focused} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view has input focus.
{@link #DrawableStates_state_hovered android:state_hovered} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a pointer is hovering over the view.
{@link #DrawableStates_state_last android:state_last} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}.
{@link #DrawableStates_state_middle android:state_middle} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}.
{@link #DrawableStates_state_pressed android:state_pressed} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when the user is pressing down in a view.
{@link #DrawableStates_state_selected android:state_selected} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view (or one of its parents) is currently selected.
{@link #DrawableStates_state_single android:state_single} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}.
{@link #DrawableStates_state_window_focused android:state_window_focused} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view's window has input focus.
- @see #DrawableStates_state_accelerated - @see #DrawableStates_state_accessibility_focused - @see #DrawableStates_state_activated - @see #DrawableStates_state_active - @see #DrawableStates_state_checkable - @see #DrawableStates_state_checked - @see #DrawableStates_state_drag_can_accept - @see #DrawableStates_state_drag_hovered - @see #DrawableStates_state_enabled - @see #DrawableStates_state_first - @see #DrawableStates_state_focused - @see #DrawableStates_state_hovered - @see #DrawableStates_state_last - @see #DrawableStates_state_middle - @see #DrawableStates_state_pressed - @see #DrawableStates_state_selected - @see #DrawableStates_state_single - @see #DrawableStates_state_window_focused - */ - public static final int[] DrawableStates = { - 0x0101009c, 0x0101009d, 0x0101009e, 0x0101009f, - 0x010100a0, 0x010100a1, 0x010100a2, 0x010100a3, - 0x010100a4, 0x010100a5, 0x010100a6, 0x010100a7, - 0x010102fe, 0x0101031b, 0x01010367, 0x01010368, - 0x01010369, 0x0101044c}; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - indicating that the Drawable is in a view that is hardware accelerated. - This means that the device can at least render a full-screen scaled - bitmap with one layer of text and bitmaps composited on top of it - at 60fps. When this is set, the colorBackgroundCacheHint will be - ignored even if it specifies a solid color, since that optimization - is not needed. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_accelerated}. - @attr name android:state_accelerated - */ - public static final int DrawableStates_state_accelerated = 13; - /** -

- @attr description - State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} - indicating that a View has accessibility focus. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:state_accessibility_focused - */ - public static final int DrawableStates_state_accessibility_focused = 17; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view or its parent has been "activated" meaning the user has currently - marked it as being of interest. This is an alternative representation of - state_checked for when the state should be propagated down the view hierarchy. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_activated}. - @attr name android:state_activated - */ - public static final int DrawableStates_state_activated = 12; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_active}. - @attr name android:state_active - */ - public static final int DrawableStates_state_active = 6; - /** -

- @attr description - State identifier indicating that the object may display a check mark. - See {@link R.attr#state_checked} for the identifier that indicates whether it is - actually checked. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_checkable}. - @attr name android:state_checkable - */ - public static final int DrawableStates_state_checkable = 3; - /** -

- @attr description - State identifier indicating that the object is currently checked. See - {@link R.attr#state_checkable} for an additional identifier that can indicate if - any object may ever display a check, regardless of whether state_checked is - currently set. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_checked}. - @attr name android:state_checked - */ - public static final int DrawableStates_state_checked = 4; - /** -

- @attr description - State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} - indicating that the Drawable is in a view that is capable of accepting a drop of - the content currently being manipulated in a drag-and-drop operation. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_drag_can_accept}. - @attr name android:state_drag_can_accept - */ - public static final int DrawableStates_state_drag_can_accept = 15; - /** -

- @attr description - State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} - indicating that a drag operation (for which the Drawable's view is a valid recipient) - is currently positioned over the Drawable. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_drag_hovered}. - @attr name android:state_drag_hovered - */ - public static final int DrawableStates_state_drag_hovered = 16; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view is enabled. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_enabled}. - @attr name android:state_enabled - */ - public static final int DrawableStates_state_enabled = 2; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_first}. - @attr name android:state_first - */ - public static final int DrawableStates_state_first = 8; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view has input focus. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_focused}. - @attr name android:state_focused - */ - public static final int DrawableStates_state_focused = 0; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a pointer is hovering over the view. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_hovered}. - @attr name android:state_hovered - */ - public static final int DrawableStates_state_hovered = 14; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_last}. - @attr name android:state_last - */ - public static final int DrawableStates_state_last = 10; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_middle}. - @attr name android:state_middle - */ - public static final int DrawableStates_state_middle = 9; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when the user is pressing down in a view. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_pressed}. - @attr name android:state_pressed - */ - public static final int DrawableStates_state_pressed = 11; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view (or one of its parents) is currently selected. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_selected}. - @attr name android:state_selected - */ - public static final int DrawableStates_state_selected = 5; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_single}. - @attr name android:state_single - */ - public static final int DrawableStates_state_single = 7; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view's window has input focus. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_window_focused}. - @attr name android:state_window_focused - */ - public static final int DrawableStates_state_window_focused = 1; - /** - Use dream as the root tag of the XML resource that - describes an - {@link android.service.dreams.DreamService}, which is - referenced from its - {@link android.service.dreams.DreamService#DREAM_META_DATA} - meta-data entry. Described here are the attributes that can be - included in that tag. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #Dream_settingsActivity android:settingsActivity} Component name of an activity that allows the user to modify - the settings for this dream.
- @see #Dream_settingsActivity - */ - public static final int[] Dream = { - 0x01010225}; - /** -

- @attr description - Component name of an activity that allows the user to modify - the settings for this dream. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#settingsActivity}. - @attr name android:settingsActivity - */ - public static final int Dream_settingsActivity = 0; - /** - * Attributes that can be used with a EditText. - */ - public static final int[] EditText = { - - }; - /** - State array representing an expandable list child's indicator. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ExpandableListChildIndicatorState_state_last android:state_last} State identifier indicating the child is the last child within its group.
- @see #ExpandableListChildIndicatorState_state_last - */ - public static final int[] ExpandableListChildIndicatorState = { - 0x010100a6}; - /** -

- @attr description - State identifier indicating the child is the last child within its group. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_last}. - @attr name android:state_last - */ - public static final int ExpandableListChildIndicatorState_state_last = 0; - /** - State array representing an expandable list group's indicator. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #ExpandableListGroupIndicatorState_state_empty android:state_empty} State identifier indicating the group is empty (has no children).
{@link #ExpandableListGroupIndicatorState_state_expanded android:state_expanded} State identifier indicating the group is expanded.
- @see #ExpandableListGroupIndicatorState_state_empty - @see #ExpandableListGroupIndicatorState_state_expanded - */ - public static final int[] ExpandableListGroupIndicatorState = { - 0x010100a8, 0x010100a9}; - /** -

- @attr description - State identifier indicating the group is empty (has no children). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_empty}. - @attr name android:state_empty - */ - public static final int ExpandableListGroupIndicatorState_state_empty = 1; - /** -

- @attr description - State identifier indicating the group is expanded. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_expanded}. - @attr name android:state_expanded - */ - public static final int ExpandableListGroupIndicatorState_state_expanded = 0; - /** - Attributes that can be used with a ExpandableListView. -

Includes the following attributes:

- - - - - - - - - - - - - - - -
AttributeDescription
{@link #ExpandableListView_childDivider android:childDivider} Drawable or color that is used as a divider for children.
{@link #ExpandableListView_childIndicator android:childIndicator} Indicator shown beside the child View.
{@link #ExpandableListView_childIndicatorEnd android:childIndicatorEnd} The end bound for a child's indicator.
{@link #ExpandableListView_childIndicatorLeft android:childIndicatorLeft} The left bound for a child's indicator.
{@link #ExpandableListView_childIndicatorRight android:childIndicatorRight} The right bound for a child's indicator.
{@link #ExpandableListView_childIndicatorStart android:childIndicatorStart} The start bound for a child's indicator.
{@link #ExpandableListView_groupIndicator android:groupIndicator} Indicator shown beside the group View.
{@link #ExpandableListView_indicatorEnd android:indicatorEnd} The end bound for an item's indicator.
{@link #ExpandableListView_indicatorLeft android:indicatorLeft} The left bound for an item's indicator.
{@link #ExpandableListView_indicatorRight android:indicatorRight} The right bound for an item's indicator.
{@link #ExpandableListView_indicatorStart android:indicatorStart} The start bound for an item's indicator.
- @see #ExpandableListView_childDivider - @see #ExpandableListView_childIndicator - @see #ExpandableListView_childIndicatorEnd - @see #ExpandableListView_childIndicatorLeft - @see #ExpandableListView_childIndicatorRight - @see #ExpandableListView_childIndicatorStart - @see #ExpandableListView_groupIndicator - @see #ExpandableListView_indicatorEnd - @see #ExpandableListView_indicatorLeft - @see #ExpandableListView_indicatorRight - @see #ExpandableListView_indicatorStart - */ - public static final int[] ExpandableListView = { - 0x0101010b, 0x0101010c, 0x0101010d, 0x0101010e, - 0x0101010f, 0x01010110, 0x01010111, 0x010103d1, - 0x010103d2, 0x010103d3, 0x010103d4}; - /** -

- @attr description - Drawable or color that is used as a divider for children. (It will drawn - below and above child items.) The height of this will be the same as - the height of the normal list item divider. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#childDivider}. - @attr name android:childDivider - */ - public static final int ExpandableListView_childDivider = 6; - /** -

- @attr description - Indicator shown beside the child View. This can be a stateful Drawable. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#childIndicator}. - @attr name android:childIndicator - */ - public static final int ExpandableListView_childIndicator = 1; - /** -

- @attr description - The end bound for a child's indicator. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#childIndicatorEnd}. - @attr name android:childIndicatorEnd - */ - public static final int ExpandableListView_childIndicatorEnd = 10; - /** -

- @attr description - The left bound for a child's indicator. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#childIndicatorLeft}. - @attr name android:childIndicatorLeft - */ - public static final int ExpandableListView_childIndicatorLeft = 4; - /** -

- @attr description - The right bound for a child's indicator. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#childIndicatorRight}. - @attr name android:childIndicatorRight - */ - public static final int ExpandableListView_childIndicatorRight = 5; - /** -

- @attr description - The start bound for a child's indicator. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#childIndicatorStart}. - @attr name android:childIndicatorStart - */ - public static final int ExpandableListView_childIndicatorStart = 9; - /** -

- @attr description - Indicator shown beside the group View. This can be a stateful Drawable. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#groupIndicator}. - @attr name android:groupIndicator - */ - public static final int ExpandableListView_groupIndicator = 0; - /** -

- @attr description - The end bound for an item's indicator. To specify a right bound specific to children, - use childIndicatorEnd. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#indicatorEnd}. - @attr name android:indicatorEnd - */ - public static final int ExpandableListView_indicatorEnd = 8; - /** -

- @attr description - The left bound for an item's indicator. To specify a left bound specific to children, - use childIndicatorLeft. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#indicatorLeft}. - @attr name android:indicatorLeft - */ - public static final int ExpandableListView_indicatorLeft = 2; - /** -

- @attr description - The right bound for an item's indicator. To specify a right bound specific to children, - use childIndicatorRight. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#indicatorRight}. - @attr name android:indicatorRight - */ - public static final int ExpandableListView_indicatorRight = 3; - /** -

- @attr description - The start bound for an item's indicator. To specify a start bound specific to children, - use childIndicatorStart. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#indicatorStart}. - @attr name android:indicatorStart - */ - public static final int ExpandableListView_indicatorStart = 7; - /** - An extra data value to place into a an extra/name value pair held - in a Bundle, as per {@link android.os.Bundle}. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #Extra_name android:name} Required name of the extra data.
{@link #Extra_value android:value} Concrete value to put for this named extra data.
- @see #Extra_name - @see #Extra_value - */ - public static final int[] Extra = { - 0x01010003, 0x01010024}; - /** -

- @attr description - Required name of the extra data. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int Extra_name = 0; - /** -

- @attr description - Concrete value to put for this named extra data. - - -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

May be an integer value, such as "100". -

May be a boolean value, either "true" or "false". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

May be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#value}. - @attr name android:value - */ - public static final int Extra_value = 1; - /** - Use fadeas the root tag of the XML resource that - describes a {@link android.transition.Fade Fade} transition. - The attributes of the {@link android.R.styleable#Transition Transition} - resource are available in addition to the specific attributes of Fade - described here. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #Fade_fadingMode android:fadingMode}
- @see #Fade_fadingMode - */ - public static final int[] Fade = { - 0x010103e1}; - /** -

This symbol is the offset where the {@link android.R.attr#fadingMode} - attribute's value can be found in the {@link #Fade} array. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
fade_in1 Fade will only fade appearing items in.
fade_out2 Fade will only fade disappearing items out.
fade_in_out3 Fade will fade appearing items in and disappearing items out.
- @attr name android:fadingMode - */ - public static final int Fade_fadingMode = 0; - /** - Attributes that can be used with <fragment> - tags inside of the layout of an Activity. This instantiates - the given {@link android.app.Fragment} and inserts its content - view into the current location in the layout. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #Fragment_id android:id} Supply an identifier name for the top-level view, to later retrieve it - with {@link android.view.View#findViewById View.findViewById()} or - {@link android.app.Activity#findViewById Activity.findViewById()}.
{@link #Fragment_name android:name} Supply the name of the fragment class to instantiate.
{@link #Fragment_tag android:tag} Supply a tag for the top-level view containing a String, to be retrieved - later with {@link android.view.View#getTag View.getTag()} or - searched for with {@link android.view.View#findViewWithTag - View.findViewWithTag()}.
- @see #Fragment_id - @see #Fragment_name - @see #Fragment_tag - */ - public static final int[] Fragment = { - 0x01010003, 0x010100d0, 0x010100d1}; - /** -

- @attr description - Supply an identifier name for the top-level view, to later retrieve it - with {@link android.view.View#findViewById View.findViewById()} or - {@link android.app.Activity#findViewById Activity.findViewById()}. - This must be a - resource reference; typically you set this using the - @+ syntax to create a new ID resources. - For example: android:id="@+id/my_id" which - allows you to later retrieve the view - with findViewById(R.id.my_id). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#id}. - @attr name android:id - */ - public static final int Fragment_id = 1; - /** -

- @attr description - Supply the name of the fragment class to instantiate. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int Fragment_name = 0; - /** -

- @attr description - Supply a tag for the top-level view containing a String, to be retrieved - later with {@link android.view.View#getTag View.getTag()} or - searched for with {@link android.view.View#findViewWithTag - View.findViewWithTag()}. It is generally preferable to use - IDs (through the android:id attribute) instead of tags because - they are faster and allow for compile-time type checking. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#tag}. - @attr name android:tag - */ - public static final int Fragment_tag = 2; - /** - Fragment animation class attributes. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #FragmentAnimation_fragmentCloseEnterAnimation android:fragmentCloseEnterAnimation}
{@link #FragmentAnimation_fragmentCloseExitAnimation android:fragmentCloseExitAnimation}
{@link #FragmentAnimation_fragmentFadeEnterAnimation android:fragmentFadeEnterAnimation}
{@link #FragmentAnimation_fragmentFadeExitAnimation android:fragmentFadeExitAnimation}
{@link #FragmentAnimation_fragmentOpenEnterAnimation android:fragmentOpenEnterAnimation}
{@link #FragmentAnimation_fragmentOpenExitAnimation android:fragmentOpenExitAnimation}
- @see #FragmentAnimation_fragmentCloseEnterAnimation - @see #FragmentAnimation_fragmentCloseExitAnimation - @see #FragmentAnimation_fragmentFadeEnterAnimation - @see #FragmentAnimation_fragmentFadeExitAnimation - @see #FragmentAnimation_fragmentOpenEnterAnimation - @see #FragmentAnimation_fragmentOpenExitAnimation - */ - public static final int[] FragmentAnimation = { - 0x010102e5, 0x010102e6, 0x010102e7, 0x010102e8, - 0x010102e9, 0x010102ea}; - /** -

This symbol is the offset where the {@link android.R.attr#fragmentCloseEnterAnimation} - attribute's value can be found in the {@link #FragmentAnimation} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name android:fragmentCloseEnterAnimation - */ - public static final int FragmentAnimation_fragmentCloseEnterAnimation = 2; - /** -

This symbol is the offset where the {@link android.R.attr#fragmentCloseExitAnimation} - attribute's value can be found in the {@link #FragmentAnimation} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name android:fragmentCloseExitAnimation - */ - public static final int FragmentAnimation_fragmentCloseExitAnimation = 3; - /** -

This symbol is the offset where the {@link android.R.attr#fragmentFadeEnterAnimation} - attribute's value can be found in the {@link #FragmentAnimation} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name android:fragmentFadeEnterAnimation - */ - public static final int FragmentAnimation_fragmentFadeEnterAnimation = 4; - /** -

This symbol is the offset where the {@link android.R.attr#fragmentFadeExitAnimation} - attribute's value can be found in the {@link #FragmentAnimation} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name android:fragmentFadeExitAnimation - */ - public static final int FragmentAnimation_fragmentFadeExitAnimation = 5; - /** -

This symbol is the offset where the {@link android.R.attr#fragmentOpenEnterAnimation} - attribute's value can be found in the {@link #FragmentAnimation} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name android:fragmentOpenEnterAnimation - */ - public static final int FragmentAnimation_fragmentOpenEnterAnimation = 0; - /** -

This symbol is the offset where the {@link android.R.attr#fragmentOpenExitAnimation} - attribute's value can be found in the {@link #FragmentAnimation} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name android:fragmentOpenExitAnimation - */ - public static final int FragmentAnimation_fragmentOpenExitAnimation = 1; - /** - Attributes that can be used with <FragmentBreadCrumbs> - tags. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #FragmentBreadCrumbs_gravity android:gravity} Specifies how an object should position its content, on both the X and Y axes, - within its own bounds.
- @see #FragmentBreadCrumbs_gravity - */ - public static final int[] FragmentBreadCrumbs = { - 0x010100af}; - /** -

- @attr description - Specifies how an object should position its content, on both the X and Y axes, - within its own bounds. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#gravity}. - @attr name android:gravity - */ - public static final int FragmentBreadCrumbs_gravity = 0; - /** - Attributes that can be used with a FrameLayout. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #FrameLayout_foreground android:foreground} Defines the drawable to draw over the content.
{@link #FrameLayout_foregroundGravity android:foregroundGravity} Defines the gravity to apply to the foreground drawable.
{@link #FrameLayout_foregroundInsidePadding android:foregroundInsidePadding} Defines whether the foreground drawable should be drawn inside the padding.
{@link #FrameLayout_measureAllChildren android:measureAllChildren} Determines whether to measure all children or just those in - the VISIBLE or INVISIBLE state when measuring.
- @see #FrameLayout_foreground - @see #FrameLayout_foregroundGravity - @see #FrameLayout_foregroundInsidePadding - @see #FrameLayout_measureAllChildren - */ - public static final int[] FrameLayout = { - 0x01010109, 0x0101010a, 0x01010200, 0x0101042e}; - /** -

- @attr description - Defines the drawable to draw over the content. This can be used as an overlay. - The foreground drawable participates in the padding of the content if the gravity - is set to fill. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#foreground}. - @attr name android:foreground - */ - public static final int FrameLayout_foreground = 0; - /** -

- @attr description - Defines the gravity to apply to the foreground drawable. The gravity defaults - to fill. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#foregroundGravity}. - @attr name android:foregroundGravity - */ - public static final int FrameLayout_foregroundGravity = 2; - /** -

- @attr description - Defines whether the foreground drawable should be drawn inside the padding. - This property is turned on by default. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:foregroundInsidePadding - */ - public static final int FrameLayout_foregroundInsidePadding = 3; - /** -

- @attr description - Determines whether to measure all children or just those in - the VISIBLE or INVISIBLE state when measuring. Defaults to false. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#measureAllChildren}. - @attr name android:measureAllChildren - */ - public static final int FrameLayout_measureAllChildren = 1; - /** - Attributes that can be used with a FrameLayout_Layout. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #FrameLayout_Layout_layout_gravity android:layout_gravity} Standard gravity constant that a child supplies to its parent.
- @see #FrameLayout_Layout_layout_gravity - */ - public static final int[] FrameLayout_Layout = { - 0x010100b3}; - /** -

- @attr description - Standard gravity constant that a child supplies to its parent. - Defines how the child view should be positioned, on both the X and Y axes, within its enclosing layout. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_gravity}. - @attr name android:layout_gravity - */ - public static final int FrameLayout_Layout_layout_gravity = 0; - /** - Attributes that can be used with a Gallery. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #Gallery_animationDuration android:animationDuration} Sets how long a transition animation should run (in milliseconds) - when layout has changed.
{@link #Gallery_gravity android:gravity} Specifies how an object should position its content, on both the X and Y axes, - within its own bounds.
{@link #Gallery_spacing android:spacing}
{@link #Gallery_unselectedAlpha android:unselectedAlpha} Sets the alpha on the items that are not selected.
- @see #Gallery_animationDuration - @see #Gallery_gravity - @see #Gallery_spacing - @see #Gallery_unselectedAlpha - */ - public static final int[] Gallery = { - 0x010100af, 0x01010112, 0x01010113, 0x0101020e}; - /** -

- @attr description - Sets how long a transition animation should run (in milliseconds) - when layout has changed. Only relevant if animation is turned on. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#animationDuration}. - @attr name android:animationDuration - */ - public static final int Gallery_animationDuration = 1; - /** -

- @attr description - Specifies how an object should position its content, on both the X and Y axes, - within its own bounds. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#gravity}. - @attr name android:gravity - */ - public static final int Gallery_gravity = 0; - /** -

This symbol is the offset where the {@link android.R.attr#spacing} - attribute's value can be found in the {@link #Gallery} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:spacing - */ - public static final int Gallery_spacing = 2; - /** -

- @attr description - Sets the alpha on the items that are not selected. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#unselectedAlpha}. - @attr name android:unselectedAlpha - */ - public static final int Gallery_unselectedAlpha = 3; - /** - GestureOverlayView specific attributes. These attributes are used to configure - a GestureOverlayView from XML. -

Includes the following attributes:

- - - - - - - - - - - - - - - - -
AttributeDescription
{@link #GestureOverlayView_eventsInterceptionEnabled android:eventsInterceptionEnabled} Defines whether the overlay should intercept the motion events when a gesture - is recognized.
{@link #GestureOverlayView_fadeDuration android:fadeDuration} Duration, in milliseconds, of the fade out effect after the user is done - drawing a gesture.
{@link #GestureOverlayView_fadeEnabled android:fadeEnabled} Defines whether the gesture will automatically fade out after being recognized.
{@link #GestureOverlayView_fadeOffset android:fadeOffset} Time, in milliseconds, to wait before the gesture fades out after the user - is done drawing it.
{@link #GestureOverlayView_gestureColor android:gestureColor} Color used to draw a gesture.
{@link #GestureOverlayView_gestureStrokeAngleThreshold android:gestureStrokeAngleThreshold} Minimum curve angle a stroke must contain before it is recognized as a gesture.
{@link #GestureOverlayView_gestureStrokeLengthThreshold android:gestureStrokeLengthThreshold} Minimum length of a stroke before it is recognized as a gesture.
{@link #GestureOverlayView_gestureStrokeSquarenessThreshold android:gestureStrokeSquarenessThreshold} Squareness threshold of a stroke before it is recognized as a gesture.
{@link #GestureOverlayView_gestureStrokeType android:gestureStrokeType} Defines the type of strokes that define a gesture.
{@link #GestureOverlayView_gestureStrokeWidth android:gestureStrokeWidth} Width of the stroke used to draw the gesture.
{@link #GestureOverlayView_orientation android:orientation} Indicates whether horizontal (when the orientation is vertical) or vertical - (when orientation is horizontal) strokes automatically define a gesture.
{@link #GestureOverlayView_uncertainGestureColor android:uncertainGestureColor} Color used to draw the user's strokes until we are sure it's a gesture.
- @see #GestureOverlayView_eventsInterceptionEnabled - @see #GestureOverlayView_fadeDuration - @see #GestureOverlayView_fadeEnabled - @see #GestureOverlayView_fadeOffset - @see #GestureOverlayView_gestureColor - @see #GestureOverlayView_gestureStrokeAngleThreshold - @see #GestureOverlayView_gestureStrokeLengthThreshold - @see #GestureOverlayView_gestureStrokeSquarenessThreshold - @see #GestureOverlayView_gestureStrokeType - @see #GestureOverlayView_gestureStrokeWidth - @see #GestureOverlayView_orientation - @see #GestureOverlayView_uncertainGestureColor - */ - public static final int[] GestureOverlayView = { - 0x010100c4, 0x01010274, 0x01010275, 0x01010276, - 0x01010277, 0x01010278, 0x01010279, 0x0101027a, - 0x0101027b, 0x0101027c, 0x0101027d, 0x0101027e}; - /** -

- @attr description - Defines whether the overlay should intercept the motion events when a gesture - is recognized. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#eventsInterceptionEnabled}. - @attr name android:eventsInterceptionEnabled - */ - public static final int GestureOverlayView_eventsInterceptionEnabled = 10; - /** -

- @attr description - Duration, in milliseconds, of the fade out effect after the user is done - drawing a gesture. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fadeDuration}. - @attr name android:fadeDuration - */ - public static final int GestureOverlayView_fadeDuration = 5; - /** -

- @attr description - Defines whether the gesture will automatically fade out after being recognized. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fadeEnabled}. - @attr name android:fadeEnabled - */ - public static final int GestureOverlayView_fadeEnabled = 11; - /** -

- @attr description - Time, in milliseconds, to wait before the gesture fades out after the user - is done drawing it. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fadeOffset}. - @attr name android:fadeOffset - */ - public static final int GestureOverlayView_fadeOffset = 4; - /** -

- @attr description - Color used to draw a gesture. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#gestureColor}. - @attr name android:gestureColor - */ - public static final int GestureOverlayView_gestureColor = 2; - /** -

- @attr description - Minimum curve angle a stroke must contain before it is recognized as a gesture. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#gestureStrokeAngleThreshold}. - @attr name android:gestureStrokeAngleThreshold - */ - public static final int GestureOverlayView_gestureStrokeAngleThreshold = 9; - /** -

- @attr description - Minimum length of a stroke before it is recognized as a gesture. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#gestureStrokeLengthThreshold}. - @attr name android:gestureStrokeLengthThreshold - */ - public static final int GestureOverlayView_gestureStrokeLengthThreshold = 7; - /** -

- @attr description - Squareness threshold of a stroke before it is recognized as a gesture. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#gestureStrokeSquarenessThreshold}. - @attr name android:gestureStrokeSquarenessThreshold - */ - public static final int GestureOverlayView_gestureStrokeSquarenessThreshold = 8; - /** -

- @attr description - Defines the type of strokes that define a gesture. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
single0 A gesture is made of only one stroke.
multiple1 A gesture is made of multiple strokes.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#gestureStrokeType}. - @attr name android:gestureStrokeType - */ - public static final int GestureOverlayView_gestureStrokeType = 6; - /** -

- @attr description - Width of the stroke used to draw the gesture. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#gestureStrokeWidth}. - @attr name android:gestureStrokeWidth - */ - public static final int GestureOverlayView_gestureStrokeWidth = 1; - /** -

- @attr description - Indicates whether horizontal (when the orientation is vertical) or vertical - (when orientation is horizontal) strokes automatically define a gesture. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
horizontal0 Defines an horizontal widget.
vertical1 Defines a vertical widget.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#orientation}. - @attr name android:orientation - */ - public static final int GestureOverlayView_orientation = 0; - /** -

- @attr description - Color used to draw the user's strokes until we are sure it's a gesture. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#uncertainGestureColor}. - @attr name android:uncertainGestureColor - */ - public static final int GestureOverlayView_uncertainGestureColor = 3; - /** - Attributes that can be used with a GlowPadView. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #GlowPadView_allowScaling android:allowScaling} Determine whether the glow pad is allowed to scale to fit the bounds indicated - by its parent.
{@link #GlowPadView_alwaysTrackFinger android:alwaysTrackFinger} Used when the handle shouldn't wait to be hit before following the finger
{@link #GlowPadView_directionDescriptions android:directionDescriptions} Reference to an array resource that be used to announce the directions with targets around the circle.
{@link #GlowPadView_feedbackCount android:feedbackCount} Number of waves/chevrons to show in animation.
{@link #GlowPadView_firstItemOffset android:firstItemOffset} Location along the circle of the first item, in degrees.
{@link #GlowPadView_glowRadius android:glowRadius} Radius of glow under finger.
{@link #GlowPadView_gravity android:gravity} Specifies how an object should position its content, on both the X and Y axes, - within its own bounds.
{@link #GlowPadView_handleDrawable android:handleDrawable} Sets a drawable as the center.
{@link #GlowPadView_innerRadius android:innerRadius} Inner radius of glow area.
{@link #GlowPadView_magneticTargets android:magneticTargets} Causes targets to snap to the finger location on activation.
{@link #GlowPadView_outerRadius android:outerRadius} Outer radius of glow area.
{@link #GlowPadView_outerRingDrawable android:outerRingDrawable} Drawable to use for wave ripple animation.
{@link #GlowPadView_pointDrawable android:pointDrawable} Drawble used for drawing points
{@link #GlowPadView_snapMargin android:snapMargin} How close we need to be before snapping to a target.
{@link #GlowPadView_targetDescriptions android:targetDescriptions} Reference to an array resource that be used as description for the targets around the circle.
{@link #GlowPadView_targetDrawables android:targetDrawables} Reference to an array resource that be shown as targets around a circle.
{@link #GlowPadView_vibrationDuration android:vibrationDuration} Tactile feedback duration for actions.
- @see #GlowPadView_allowScaling - @see #GlowPadView_alwaysTrackFinger - @see #GlowPadView_directionDescriptions - @see #GlowPadView_feedbackCount - @see #GlowPadView_firstItemOffset - @see #GlowPadView_glowRadius - @see #GlowPadView_gravity - @see #GlowPadView_handleDrawable - @see #GlowPadView_innerRadius - @see #GlowPadView_magneticTargets - @see #GlowPadView_outerRadius - @see #GlowPadView_outerRingDrawable - @see #GlowPadView_pointDrawable - @see #GlowPadView_snapMargin - @see #GlowPadView_targetDescriptions - @see #GlowPadView_targetDrawables - @see #GlowPadView_vibrationDuration - */ - public static final int[] GlowPadView = { - 0x010100af, 0x0101025f, 0x010103a0, 0x010103a1, - 0x01010450, 0x01010451, 0x01010452, 0x01010453, - 0x01010454, 0x01010455, 0x01010456, 0x01010457, - 0x0101045a, 0x0101045b, 0x0101045c, 0x0101045d, - 0x0101045e}; - /** -

- @attr description - Determine whether the glow pad is allowed to scale to fit the bounds indicated - by its parent. If this is set to false, no scaling will occur. If this is set to true - scaling will occur to fit for any axis in which gravity is set to center. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:allowScaling - */ - public static final int GlowPadView_allowScaling = 9; - /** -

- @attr description - Used when the handle shouldn't wait to be hit before following the finger - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:alwaysTrackFinger - */ - public static final int GlowPadView_alwaysTrackFinger = 16; - /** -

- @attr description - Reference to an array resource that be used to announce the directions with targets around the circle. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#directionDescriptions}. - @attr name android:directionDescriptions - */ - public static final int GlowPadView_directionDescriptions = 3; - /** -

- @attr description - Number of waves/chevrons to show in animation. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:feedbackCount - */ - public static final int GlowPadView_feedbackCount = 15; - /** -

- @attr description - Location along the circle of the first item, in degrees. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:firstItemOffset - */ - public static final int GlowPadView_firstItemOffset = 7; - /** -

- @attr description - Radius of glow under finger. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:glowRadius - */ - public static final int GlowPadView_glowRadius = 6; - /** -

- @attr description - Specifies how an object should position its content, on both the X and Y axes, - within its own bounds. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#gravity}. - @attr name android:gravity - */ - public static final int GlowPadView_gravity = 0; - /** -

- @attr description - Sets a drawable as the center. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:handleDrawable - */ - public static final int GlowPadView_handleDrawable = 11; - /** -

- @attr description - Inner radius of glow area. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#innerRadius}. - @attr name android:innerRadius - */ - public static final int GlowPadView_innerRadius = 1; - /** -

- @attr description - Causes targets to snap to the finger location on activation. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:magneticTargets - */ - public static final int GlowPadView_magneticTargets = 8; - /** -

- @attr description - Outer radius of glow area. Target icons will be drawn on this circle. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:outerRadius - */ - public static final int GlowPadView_outerRadius = 12; - /** -

- @attr description - Drawable to use for wave ripple animation. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:outerRingDrawable - */ - public static final int GlowPadView_outerRingDrawable = 4; - /** -

- @attr description - Drawble used for drawing points - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:pointDrawable - */ - public static final int GlowPadView_pointDrawable = 5; - /** -

- @attr description - How close we need to be before snapping to a target. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:snapMargin - */ - public static final int GlowPadView_snapMargin = 14; - /** -

- @attr description - Reference to an array resource that be used as description for the targets around the circle. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#targetDescriptions}. - @attr name android:targetDescriptions - */ - public static final int GlowPadView_targetDescriptions = 2; - /** -

- @attr description - Reference to an array resource that be shown as targets around a circle. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:targetDrawables - */ - public static final int GlowPadView_targetDrawables = 10; - /** -

- @attr description - Tactile feedback duration for actions. Set to '0' for no vibration. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:vibrationDuration - */ - public static final int GlowPadView_vibrationDuration = 13; - /** - Drawable used to render a geometric shape, with a gradient or a solid color. -

Includes the following attributes:

- - - - - - - - - - - - -
AttributeDescription
{@link #GradientDrawable_dither android:dither} Enables or disables dithering.
{@link #GradientDrawable_innerRadius android:innerRadius} Inner radius of the ring.
{@link #GradientDrawable_innerRadiusRatio android:innerRadiusRatio} Inner radius of the ring expressed as a ratio of the ring's width.
{@link #GradientDrawable_shape android:shape} Indicates what shape to fill with a gradient.
{@link #GradientDrawable_thickness android:thickness} Thickness of the ring.
{@link #GradientDrawable_thicknessRatio android:thicknessRatio} Thickness of the ring expressed as a ratio of the ring's width.
{@link #GradientDrawable_useLevel android:useLevel} Indicates whether the drawable's level affects the way the gradient is drawn.
{@link #GradientDrawable_visible android:visible} Indicates whether the drawable should intially be visible.
- @see #GradientDrawable_dither - @see #GradientDrawable_innerRadius - @see #GradientDrawable_innerRadiusRatio - @see #GradientDrawable_shape - @see #GradientDrawable_thickness - @see #GradientDrawable_thicknessRatio - @see #GradientDrawable_useLevel - @see #GradientDrawable_visible - */ - public static final int[] GradientDrawable = { - 0x0101011c, 0x01010194, 0x0101019a, 0x0101019b, - 0x0101019c, 0x0101019f, 0x0101025f, 0x01010260}; - /** -

- @attr description - Enables or disables dithering. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dither}. - @attr name android:dither - */ - public static final int GradientDrawable_dither = 0; - /** -

- @attr description - Inner radius of the ring. When defined, innerRadiusRatio is ignored. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#innerRadius}. - @attr name android:innerRadius - */ - public static final int GradientDrawable_innerRadius = 6; - /** -

- @attr description - Inner radius of the ring expressed as a ratio of the ring's width. For instance, - if innerRadiusRatio=9, then the inner radius equals the ring's width divided by 9. - This value is ignored if innerRadius is defined. Default value is 9. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#innerRadiusRatio}. - @attr name android:innerRadiusRatio - */ - public static final int GradientDrawable_innerRadiusRatio = 3; - /** -

- @attr description - Indicates what shape to fill with a gradient. - - -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
rectangle0 Rectangle shape, with optional rounder corners.
oval1 Oval shape.
line2 Line shape.
ring3 Ring shape.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#shape}. - @attr name android:shape - */ - public static final int GradientDrawable_shape = 2; - /** -

- @attr description - Thickness of the ring. When defined, thicknessRatio is ignored. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#thickness}. - @attr name android:thickness - */ - public static final int GradientDrawable_thickness = 7; - /** -

- @attr description - Thickness of the ring expressed as a ratio of the ring's width. For instance, - if thicknessRatio=3, then the thickness equals the ring's width divided by 3. - This value is ignored if innerRadius is defined. Default value is 3. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#thicknessRatio}. - @attr name android:thicknessRatio - */ - public static final int GradientDrawable_thicknessRatio = 4; - /** -

- @attr description - Indicates whether the drawable's level affects the way the gradient is drawn. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#useLevel}. - @attr name android:useLevel - */ - public static final int GradientDrawable_useLevel = 5; - /** -

- @attr description - Indicates whether the drawable should intially be visible. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#visible}. - @attr name android:visible - */ - public static final int GradientDrawable_visible = 1; - /** - Used to describe the gradient used to fill the shape of a GradientDrawable. -

Includes the following attributes:

- - - - - - - - - - - - - -
AttributeDescription
{@link #GradientDrawableGradient_angle android:angle} Angle of the gradient.
{@link #GradientDrawableGradient_centerColor android:centerColor} Optional center color.
{@link #GradientDrawableGradient_centerX android:centerX} X coordinate of the origin of the gradient within the shape.
{@link #GradientDrawableGradient_centerY android:centerY} Y coordinate of the origin of the gradient within the shape.
{@link #GradientDrawableGradient_endColor android:endColor} End color of the gradient.
{@link #GradientDrawableGradient_gradientRadius android:gradientRadius} Radius of the gradient, used only with radial gradient.
{@link #GradientDrawableGradient_startColor android:startColor} Start color of the gradient.
{@link #GradientDrawableGradient_type android:type} Type of gradient.
{@link #GradientDrawableGradient_useLevel android:useLevel}
- @see #GradientDrawableGradient_angle - @see #GradientDrawableGradient_centerColor - @see #GradientDrawableGradient_centerX - @see #GradientDrawableGradient_centerY - @see #GradientDrawableGradient_endColor - @see #GradientDrawableGradient_gradientRadius - @see #GradientDrawableGradient_startColor - @see #GradientDrawableGradient_type - @see #GradientDrawableGradient_useLevel - */ - public static final int[] GradientDrawableGradient = { - 0x0101019d, 0x0101019e, 0x0101019f, 0x010101a0, - 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, - 0x0101020b}; - /** -

- @attr description - Angle of the gradient. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#angle}. - @attr name android:angle - */ - public static final int GradientDrawableGradient_angle = 3; - /** -

- @attr description - Optional center color. For linear gradients, use centerX or centerY - to place the center color. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#centerColor}. - @attr name android:centerColor - */ - public static final int GradientDrawableGradient_centerColor = 8; - /** -

- @attr description - X coordinate of the origin of the gradient within the shape. - - -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#centerX}. - @attr name android:centerX - */ - public static final int GradientDrawableGradient_centerX = 5; - /** -

- @attr description - Y coordinate of the origin of the gradient within the shape. - - -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#centerY}. - @attr name android:centerY - */ - public static final int GradientDrawableGradient_centerY = 6; - /** -

- @attr description - End color of the gradient. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#endColor}. - @attr name android:endColor - */ - public static final int GradientDrawableGradient_endColor = 1; - /** -

- @attr description - Radius of the gradient, used only with radial gradient. - - -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#gradientRadius}. - @attr name android:gradientRadius - */ - public static final int GradientDrawableGradient_gradientRadius = 7; - /** -

- @attr description - Start color of the gradient. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#startColor}. - @attr name android:startColor - */ - public static final int GradientDrawableGradient_startColor = 0; - /** -

- @attr description - Type of gradient. The default type is linear. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
linear0 Linear gradient.
radial1 Radial, or circular, gradient.
sweep2 Sweep, or angled or diamond, gradient.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#type}. - @attr name android:type - */ - public static final int GradientDrawableGradient_type = 4; - /** -

This symbol is the offset where the {@link android.R.attr#useLevel} - attribute's value can be found in the {@link #GradientDrawableGradient} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:useLevel - */ - public static final int GradientDrawableGradient_useLevel = 2; - /** - Used to specify the optional padding of a GradientDrawable. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #GradientDrawablePadding_bottom android:bottom} Amount of bottom padding inside the gradient shape.
{@link #GradientDrawablePadding_left android:left} Amount of left padding inside the gradient shape.
{@link #GradientDrawablePadding_right android:right} Amount of right padding inside the gradient shape.
{@link #GradientDrawablePadding_top android:top} Amount of top padding inside the gradient shape.
- @see #GradientDrawablePadding_bottom - @see #GradientDrawablePadding_left - @see #GradientDrawablePadding_right - @see #GradientDrawablePadding_top - */ - public static final int[] GradientDrawablePadding = { - 0x010101ad, 0x010101ae, 0x010101af, 0x010101b0}; - /** -

- @attr description - Amount of bottom padding inside the gradient shape. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#bottom}. - @attr name android:bottom - */ - public static final int GradientDrawablePadding_bottom = 3; - /** -

- @attr description - Amount of left padding inside the gradient shape. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#left}. - @attr name android:left - */ - public static final int GradientDrawablePadding_left = 0; - /** -

- @attr description - Amount of right padding inside the gradient shape. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#right}. - @attr name android:right - */ - public static final int GradientDrawablePadding_right = 2; - /** -

- @attr description - Amount of top padding inside the gradient shape. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#top}. - @attr name android:top - */ - public static final int GradientDrawablePadding_top = 1; - /** - Used to specify the size of the shape for GradientDrawable. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #GradientDrawableSize_height android:height} Height of the gradient shape.
{@link #GradientDrawableSize_width android:width} Width of the gradient shape.
- @see #GradientDrawableSize_height - @see #GradientDrawableSize_width - */ - public static final int[] GradientDrawableSize = { - 0x01010155, 0x01010159}; - /** -

- @attr description - Height of the gradient shape. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#height}. - @attr name android:height - */ - public static final int GradientDrawableSize_height = 0; - /** -

- @attr description - Width of the gradient shape. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#width}. - @attr name android:width - */ - public static final int GradientDrawableSize_width = 1; - /** - Used to fill the shape of GradientDrawable with a solid color. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #GradientDrawableSolid_color android:color} Solid color for the gradient shape.
- @see #GradientDrawableSolid_color - */ - public static final int[] GradientDrawableSolid = { - 0x010101a5}; - /** -

- @attr description - Solid color for the gradient shape. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#color}. - @attr name android:color - */ - public static final int GradientDrawableSolid_color = 0; - /** - Used to describe the optional stroke of a GradientDrawable. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #GradientDrawableStroke_color android:color} Color of the gradient shape's stroke.
{@link #GradientDrawableStroke_dashGap android:dashGap} Gap between dashes in the stroke.
{@link #GradientDrawableStroke_dashWidth android:dashWidth} Length of a dash in the stroke.
{@link #GradientDrawableStroke_width android:width} Width of the gradient shape's stroke.
- @see #GradientDrawableStroke_color - @see #GradientDrawableStroke_dashGap - @see #GradientDrawableStroke_dashWidth - @see #GradientDrawableStroke_width - */ - public static final int[] GradientDrawableStroke = { - 0x01010159, 0x010101a5, 0x010101a6, 0x010101a7}; - /** -

- @attr description - Color of the gradient shape's stroke. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#color}. - @attr name android:color - */ - public static final int GradientDrawableStroke_color = 1; - /** -

- @attr description - Gap between dashes in the stroke. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dashGap}. - @attr name android:dashGap - */ - public static final int GradientDrawableStroke_dashGap = 3; - /** -

- @attr description - Length of a dash in the stroke. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dashWidth}. - @attr name android:dashWidth - */ - public static final int GradientDrawableStroke_dashWidth = 2; - /** -

- @attr description - Width of the gradient shape's stroke. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#width}. - @attr name android:width - */ - public static final int GradientDrawableStroke_width = 0; - /** - Attributes that can be used with a GridLayout. -

Includes the following attributes:

- - - - - - - - - - - -
AttributeDescription
{@link #GridLayout_alignmentMode android:alignmentMode} When set to alignMargins, causes alignment to take place between the outer - boundary of a view, as defined by its margins.
{@link #GridLayout_columnCount android:columnCount} The maxmimum number of columns to create when automatically positioning children.
{@link #GridLayout_columnOrderPreserved android:columnOrderPreserved} When set to true, forces column boundaries to appear in the same order - as column indices.
{@link #GridLayout_orientation android:orientation} The orientation property is not used during layout.
{@link #GridLayout_rowCount android:rowCount} The maxmimum number of rows to create when automatically positioning children.
{@link #GridLayout_rowOrderPreserved android:rowOrderPreserved} When set to true, forces row boundaries to appear in the same order - as row indices.
{@link #GridLayout_useDefaultMargins android:useDefaultMargins} When set to true, tells GridLayout to use default margins when none are specified - in a view's layout parameters.
- @see #GridLayout_alignmentMode - @see #GridLayout_columnCount - @see #GridLayout_columnOrderPreserved - @see #GridLayout_orientation - @see #GridLayout_rowCount - @see #GridLayout_rowOrderPreserved - @see #GridLayout_useDefaultMargins - */ - public static final int[] GridLayout = { - 0x010100c4, 0x01010375, 0x01010376, 0x01010377, - 0x01010378, 0x01010379, 0x0101037a}; - /** -

- @attr description - When set to alignMargins, causes alignment to take place between the outer - boundary of a view, as defined by its margins. When set to alignBounds, - causes alignment to take place between the edges of the view. - The default is alignMargins. - See {@link android.widget.GridLayout#setAlignmentMode(int)}. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
alignBounds0 Align the bounds of the children. - See {@link android.widget.GridLayout#ALIGN_BOUNDS}.
alignMargins1 Align the margins of the children. - See {@link android.widget.GridLayout#ALIGN_MARGINS}.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#alignmentMode}. - @attr name android:alignmentMode - */ - public static final int GridLayout_alignmentMode = 6; - /** -

- @attr description - The maxmimum number of columns to create when automatically positioning children. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#columnCount}. - @attr name android:columnCount - */ - public static final int GridLayout_columnCount = 3; - /** -

- @attr description - When set to true, forces column boundaries to appear in the same order - as column indices. - The default is true. - See {@link android.widget.GridLayout#setColumnOrderPreserved(boolean)}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#columnOrderPreserved}. - @attr name android:columnOrderPreserved - */ - public static final int GridLayout_columnOrderPreserved = 4; - /** -

- @attr description - The orientation property is not used during layout. It is only used to - allocate row and column parameters when they are not specified by its children's - layout paramters. GridLayout works like LinearLayout in this case; - putting all the components either in a single row or in a single column - - depending on the value of this flag. In the horizontal case, a columnCount - property may be additionally supplied to force new rows to be created when a - row is full. The rowCount attribute may be used similarly in the vertical case. - The default is horizontal. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
horizontal0 Defines an horizontal widget.
vertical1 Defines a vertical widget.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#orientation}. - @attr name android:orientation - */ - public static final int GridLayout_orientation = 0; - /** -

- @attr description - The maxmimum number of rows to create when automatically positioning children. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#rowCount}. - @attr name android:rowCount - */ - public static final int GridLayout_rowCount = 1; - /** -

- @attr description - When set to true, forces row boundaries to appear in the same order - as row indices. - The default is true. - See {@link android.widget.GridLayout#setRowOrderPreserved(boolean)}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#rowOrderPreserved}. - @attr name android:rowOrderPreserved - */ - public static final int GridLayout_rowOrderPreserved = 2; - /** -

- @attr description - When set to true, tells GridLayout to use default margins when none are specified - in a view's layout parameters. - The default value is false. - See {@link android.widget.GridLayout#setUseDefaultMargins(boolean)}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#useDefaultMargins}. - @attr name android:useDefaultMargins - */ - public static final int GridLayout_useDefaultMargins = 5; - /** - Attributes that can be used with a GridLayoutAnimation. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #GridLayoutAnimation_columnDelay android:columnDelay} Fraction of the animation duration used to delay the beginning of - the animation of each column.
{@link #GridLayoutAnimation_direction android:direction} Direction of the animation in the grid.
{@link #GridLayoutAnimation_directionPriority android:directionPriority} Priority of the rows and columns.
{@link #GridLayoutAnimation_rowDelay android:rowDelay} Fraction of the animation duration used to delay the beginning of - the animation of each row.
- @see #GridLayoutAnimation_columnDelay - @see #GridLayoutAnimation_direction - @see #GridLayoutAnimation_directionPriority - @see #GridLayoutAnimation_rowDelay - */ - public static final int[] GridLayoutAnimation = { - 0x010101cf, 0x010101d0, 0x010101d1, 0x010101d2}; - /** -

- @attr description - Fraction of the animation duration used to delay the beginning of - the animation of each column. - - -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#columnDelay}. - @attr name android:columnDelay - */ - public static final int GridLayoutAnimation_columnDelay = 0; - /** -

- @attr description - Direction of the animation in the grid. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - -
ConstantValueDescription
left_to_right0x0 Animates columns from left to right.
right_to_left0x1 Animates columns from right to left.
top_to_bottom0x0 Animates rows from top to bottom.
bottom_to_top0x2 Animates rows from bottom to top.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#direction}. - @attr name android:direction - */ - public static final int GridLayoutAnimation_direction = 2; - /** -

- @attr description - Priority of the rows and columns. When the priority is none, - both rows and columns have the same priority. When the priority is - column, the animations will be applied on the columns first. The same - goes for rows. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
none0 Rows and columns are animated at the same time.
column1 Columns are animated first.
row2 Rows are animated first.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#directionPriority}. - @attr name android:directionPriority - */ - public static final int GridLayoutAnimation_directionPriority = 3; - /** -

- @attr description - Fraction of the animation duration used to delay the beginning of - the animation of each row. - - -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#rowDelay}. - @attr name android:rowDelay - */ - public static final int GridLayoutAnimation_rowDelay = 1; - /** - Attributes that can be used with a GridLayout_Layout. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #GridLayout_Layout_layout_column android:layout_column} The column boundary delimiting the left of the group of cells - occupied by this view.
{@link #GridLayout_Layout_layout_columnSpan android:layout_columnSpan} The column span: the difference between the right and left - boundaries delimiting the group of cells occupied by this view.
{@link #GridLayout_Layout_layout_gravity android:layout_gravity} Gravity specifies how a component should be placed in its group of cells.
{@link #GridLayout_Layout_layout_row android:layout_row} The row boundary delimiting the top of the group of cells - occupied by this view.
{@link #GridLayout_Layout_layout_rowSpan android:layout_rowSpan} The row span: the difference between the bottom and top - boundaries delimiting the group of cells occupied by this view.
- @see #GridLayout_Layout_layout_column - @see #GridLayout_Layout_layout_columnSpan - @see #GridLayout_Layout_layout_gravity - @see #GridLayout_Layout_layout_row - @see #GridLayout_Layout_layout_rowSpan - */ - public static final int[] GridLayout_Layout = { - 0x010100b3, 0x0101014c, 0x0101037b, 0x0101037c, - 0x0101037d}; - /** -

- @attr description - The column boundary delimiting the left of the group of cells - occupied by this view. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_column}. - @attr name android:layout_column - */ - public static final int GridLayout_Layout_layout_column = 1; - /** -

- @attr description - The column span: the difference between the right and left - boundaries delimiting the group of cells occupied by this view. - The default is one. - See {@link android.widget.GridLayout.Spec}. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_columnSpan}. - @attr name android:layout_columnSpan - */ - public static final int GridLayout_Layout_layout_columnSpan = 4; - /** -

- @attr description - Gravity specifies how a component should be placed in its group of cells. - The default is LEFT | BASELINE. - See {@link android.widget.GridLayout.LayoutParams#setGravity(int)}. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_gravity}. - @attr name android:layout_gravity - */ - public static final int GridLayout_Layout_layout_gravity = 0; - /** -

- @attr description - The row boundary delimiting the top of the group of cells - occupied by this view. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_row}. - @attr name android:layout_row - */ - public static final int GridLayout_Layout_layout_row = 2; - /** -

- @attr description - The row span: the difference between the bottom and top - boundaries delimiting the group of cells occupied by this view. - The default is one. - See {@link android.widget.GridLayout.Spec}. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_rowSpan}. - @attr name android:layout_rowSpan - */ - public static final int GridLayout_Layout_layout_rowSpan = 3; - /** - Attributes that can be used with a GridView. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #GridView_columnWidth android:columnWidth} Specifies the fixed width for each column.
{@link #GridView_gravity android:gravity} Specifies the gravity within each cell.
{@link #GridView_horizontalSpacing android:horizontalSpacing} Defines the default horizontal spacing between columns.
{@link #GridView_numColumns android:numColumns} Defines how many columns to show.
{@link #GridView_stretchMode android:stretchMode} Defines how columns should stretch to fill the available empty space, if any.
{@link #GridView_verticalSpacing android:verticalSpacing} Defines the default vertical spacing between rows.
- @see #GridView_columnWidth - @see #GridView_gravity - @see #GridView_horizontalSpacing - @see #GridView_numColumns - @see #GridView_stretchMode - @see #GridView_verticalSpacing - */ - public static final int[] GridView = { - 0x010100af, 0x01010114, 0x01010115, 0x01010116, - 0x01010117, 0x01010118}; - /** -

- @attr description - Specifies the fixed width for each column. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#columnWidth}. - @attr name android:columnWidth - */ - public static final int GridView_columnWidth = 4; - /** -

- @attr description - Specifies the gravity within each cell. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#gravity}. - @attr name android:gravity - */ - public static final int GridView_gravity = 0; - /** -

- @attr description - Defines the default horizontal spacing between columns. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#horizontalSpacing}. - @attr name android:horizontalSpacing - */ - public static final int GridView_horizontalSpacing = 1; - /** -

- @attr description - Defines how many columns to show. - - -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - -
ConstantValueDescription
auto_fit-1 Display as many columns as possible to fill the available space.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#numColumns}. - @attr name android:numColumns - */ - public static final int GridView_numColumns = 5; - /** -

- @attr description - Defines how columns should stretch to fill the available empty space, if any. - - -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
none0 Stretching is disabled.
spacingWidth1 The spacing between each column is stretched.
columnWidth2 Each column is stretched equally.
spacingWidthUniform3 The spacing between each column is uniformly stretched..
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#stretchMode}. - @attr name android:stretchMode - */ - public static final int GridView_stretchMode = 3; - /** -

- @attr description - Defines the default vertical spacing between rows. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#verticalSpacing}. - @attr name android:verticalSpacing - */ - public static final int GridView_verticalSpacing = 2; - /** - Attributes that can be used with a HorizontalScrollView. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #HorizontalScrollView_fillViewport android:fillViewport} Defines whether the scrollview should stretch its content to fill the viewport.
- @see #HorizontalScrollView_fillViewport - */ - public static final int[] HorizontalScrollView = { - 0x0101017a}; - /** -

- @attr description - Defines whether the scrollview should stretch its content to fill the viewport. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fillViewport}. - @attr name android:fillViewport - */ - public static final int HorizontalScrollView_fillViewport = 0; - /** - Use host-apdu-service as the root tag of the XML resource that - describes an {@link android.nfc.cardemulation.HostApduService} service, which - is referenced from its {@link android.nfc.cardemulation.HostApduService#SERVICE_META_DATA} - entry. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #HostApduService_apduServiceBanner android:apduServiceBanner} A drawable that can be rendered in Android's system UI for representing - the service.
{@link #HostApduService_description android:description} Short description of the functionality the service implements.
{@link #HostApduService_requireDeviceUnlock android:requireDeviceUnlock} Whether the device must be unlocked before routing data to this service.
- @see #HostApduService_apduServiceBanner - @see #HostApduService_description - @see #HostApduService_requireDeviceUnlock - */ - public static final int[] HostApduService = { - 0x01010020, 0x010103ec, 0x010103ed}; - /** -

- @attr description - A drawable that can be rendered in Android's system UI for representing - the service. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#apduServiceBanner}. - @attr name android:apduServiceBanner - */ - public static final int HostApduService_apduServiceBanner = 2; - /** -

- @attr description - Short description of the functionality the service implements. This attribute - is mandatory. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#description}. - @attr name android:description - */ - public static final int HostApduService_description = 0; - /** -

- @attr description - Whether the device must be unlocked before routing data to this service. - The default is false. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#requireDeviceUnlock}. - @attr name android:requireDeviceUnlock - */ - public static final int HostApduService_requireDeviceUnlock = 1; - /** - Attributes that can be used with a Icon. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #Icon_icon android:icon} A Drawable resource providing a graphical representation of its - associated item.
{@link #Icon_mimeType android:mimeType} Specify a MIME type that is handled, as per - {@link android.content.IntentFilter#addDataType - IntentFilter.addDataType()}.
- @see #Icon_icon - @see #Icon_mimeType - */ - public static final int[] Icon = { - 0x01010002, 0x01010026}; - /** -

- @attr description - A Drawable resource providing a graphical representation of its - associated item. Use with the - application tag (to supply a default icon for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific icon for that component). It may also be - used with the intent-filter tag to supply an icon to show to the - user when an activity is being selected based on a particular Intent. - -

The given icon will be used to display to the user a graphical - representation of its associated component; for example, as the icon - for main activity that is displayed in the launcher. This must be - a reference to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int Icon_icon = 0; - /** -

- @attr description - Specify a MIME type that is handled, as per - {@link android.content.IntentFilter#addDataType - IntentFilter.addDataType()}. -

Note: MIME type matching in the Android framework is - case-sensitive, unlike formal RFC MIME types. As a result, - MIME types here should always use lower case letters.

- - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#mimeType}. - @attr name android:mimeType - */ - public static final int Icon_mimeType = 1; - /** - Attributes that can be used with a IconDefault. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #IconDefault_icon android:icon} A Drawable resource providing a graphical representation of its - associated item.
- @see #IconDefault_icon - */ - public static final int[] IconDefault = { - 0x01010002}; - /** -

- @attr description - A Drawable resource providing a graphical representation of its - associated item. Use with the - application tag (to supply a default icon for all application - components), or with the activity, receiver, service, or instrumentation - tag (to supply a specific icon for that component). It may also be - used with the intent-filter tag to supply an icon to show to the - user when an activity is being selected based on a particular Intent. - -

The given icon will be used to display to the user a graphical - representation of its associated component; for example, as the icon - for main activity that is displayed in the launcher. This must be - a reference to a Drawable resource containing the image definition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int IconDefault_icon = 0; - /** - Attributes that can be used with a IconMenuView. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #IconMenuView_maxItems android:maxItems} Defines the maximum number of items to show.
{@link #IconMenuView_maxItemsPerRow android:maxItemsPerRow} Defines the maximum number of items per row.
{@link #IconMenuView_maxRows android:maxRows} Defines the maximum number of rows displayed.
{@link #IconMenuView_moreIcon android:moreIcon} 'More' icon.
{@link #IconMenuView_rowHeight android:rowHeight} Defines the height of each row.
- @see #IconMenuView_maxItems - @see #IconMenuView_maxItemsPerRow - @see #IconMenuView_maxRows - @see #IconMenuView_moreIcon - @see #IconMenuView_rowHeight - */ - public static final int[] IconMenuView = { - 0x01010132, 0x01010133, 0x01010134, 0x01010135, - 0x01010436}; - /** -

- @attr description - Defines the maximum number of items to show. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:maxItems - */ - public static final int IconMenuView_maxItems = 4; - /** -

- @attr description - Defines the maximum number of items per row. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#maxItemsPerRow}. - @attr name android:maxItemsPerRow - */ - public static final int IconMenuView_maxItemsPerRow = 2; - /** -

- @attr description - Defines the maximum number of rows displayed. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#maxRows}. - @attr name android:maxRows - */ - public static final int IconMenuView_maxRows = 1; - /** -

- @attr description - 'More' icon. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#moreIcon}. - @attr name android:moreIcon - */ - public static final int IconMenuView_moreIcon = 3; - /** -

- @attr description - Defines the height of each row. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#rowHeight}. - @attr name android:rowHeight - */ - public static final int IconMenuView_rowHeight = 0; - /** - * Attributes that can be used with a ImageSwitcher. - */ - public static final int[] ImageSwitcher = { - - }; - /** - Attributes that can be used with a ImageView. -

Includes the following attributes:

- - - - - - - - - - - - - - -
AttributeDescription
{@link #ImageView_adjustViewBounds android:adjustViewBounds} Set this to true if you want the ImageView to adjust its bounds - to preserve the aspect ratio of its drawable.
{@link #ImageView_baseline android:baseline} The offset of the baseline within this view.
{@link #ImageView_baselineAlignBottom android:baselineAlignBottom} If true, the image view will be baseline aligned with based on its - bottom edge.
{@link #ImageView_cropToPadding android:cropToPadding} If true, the image will be cropped to fit within its padding.
{@link #ImageView_drawableAlpha android:drawableAlpha} @hide The alpha value (0-255) set on the ImageView's drawable.
{@link #ImageView_maxHeight android:maxHeight} An optional argument to supply a maximum height for this view.
{@link #ImageView_maxWidth android:maxWidth} An optional argument to supply a maximum width for this view.
{@link #ImageView_scaleType android:scaleType} Controls how the image should be resized or moved to match the size - of this ImageView.
{@link #ImageView_src android:src} Sets a drawable as the content of this ImageView.
{@link #ImageView_tint android:tint} Set a tinting color for the image.
- @see #ImageView_adjustViewBounds - @see #ImageView_baseline - @see #ImageView_baselineAlignBottom - @see #ImageView_cropToPadding - @see #ImageView_drawableAlpha - @see #ImageView_maxHeight - @see #ImageView_maxWidth - @see #ImageView_scaleType - @see #ImageView_src - @see #ImageView_tint - */ - public static final int[] ImageView = { - 0x01010119, 0x0101011d, 0x0101011e, 0x0101011f, - 0x01010120, 0x01010121, 0x01010122, 0x01010123, - 0x0101031c, 0x0101042f}; - /** -

- @attr description - Set this to true if you want the ImageView to adjust its bounds - to preserve the aspect ratio of its drawable. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#adjustViewBounds}. - @attr name android:adjustViewBounds - */ - public static final int ImageView_adjustViewBounds = 2; - /** -

- @attr description - The offset of the baseline within this view. See {see android.view.View#getBaseline} - for details - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#baseline}. - @attr name android:baseline - */ - public static final int ImageView_baseline = 8; - /** -

- @attr description - If true, the image view will be baseline aligned with based on its - bottom edge. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#baselineAlignBottom}. - @attr name android:baselineAlignBottom - */ - public static final int ImageView_baselineAlignBottom = 6; - /** -

- @attr description - If true, the image will be cropped to fit within its padding. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#cropToPadding}. - @attr name android:cropToPadding - */ - public static final int ImageView_cropToPadding = 7; - /** -

- @attr description - @hide The alpha value (0-255) set on the ImageView's drawable. Equivalent - to calling ImageView.setAlpha(int), not the same as View.setAlpha(float). - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:drawableAlpha - */ - public static final int ImageView_drawableAlpha = 9; - /** -

- @attr description - An optional argument to supply a maximum height for this view. - See {see android.widget.ImageView#setMaxHeight} for details. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#maxHeight}. - @attr name android:maxHeight - */ - public static final int ImageView_maxHeight = 4; - /** -

- @attr description - An optional argument to supply a maximum width for this view. - See {see android.widget.ImageView#setMaxWidth} for details. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#maxWidth}. - @attr name android:maxWidth - */ - public static final int ImageView_maxWidth = 3; - /** -

- @attr description - Controls how the image should be resized or moved to match the size - of this ImageView. - - -

Must be one of the following constant values.

- - - - - - - - - - - - - -
ConstantValueDescription
matrix0
fitXY1
fitStart2
fitCenter3
fitEnd4
center5
centerCrop6
centerInside7
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#scaleType}. - @attr name android:scaleType - */ - public static final int ImageView_scaleType = 1; - /** -

- @attr description - Sets a drawable as the content of this ImageView. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#src}. - @attr name android:src - */ - public static final int ImageView_src = 0; - /** -

- @attr description - Set a tinting color for the image. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#tint}. - @attr name android:tint - */ - public static final int ImageView_tint = 5; - /** - An input-extras is a container for extra data to supply to - an input method. Contains - one more more {@link #Extra } tags. - */ - public static final int[] InputExtras = { - - }; - /** - Use input-method as the root tag of the XML resource that - describes an - {@link android.view.inputmethod.InputMethod} service, which is - referenced from its - {@link android.view.inputmethod.InputMethod#SERVICE_META_DATA} - meta-data entry. Described here are the attributes that can be - included in that tag. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #InputMethod_isDefault android:isDefault} Set to true in all of the configurations for which this input - method should be considered an option as the default.
{@link #InputMethod_settingsActivity android:settingsActivity} Component name of an activity that allows the user to modify - the settings for this service.
{@link #InputMethod_supportsSwitchingToNextInputMethod android:supportsSwitchingToNextInputMethod} Set to true if this input method supports ways to switch to - a next input method (e.
- @see #InputMethod_isDefault - @see #InputMethod_settingsActivity - @see #InputMethod_supportsSwitchingToNextInputMethod - */ - public static final int[] InputMethod = { - 0x01010221, 0x01010225, 0x010103eb}; - /** -

- @attr description - Set to true in all of the configurations for which this input - method should be considered an option as the default. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#isDefault}. - @attr name android:isDefault - */ - public static final int InputMethod_isDefault = 0; - /** -

- @attr description - Component name of an activity that allows the user to modify - the settings for this service. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#settingsActivity}. - @attr name android:settingsActivity - */ - public static final int InputMethod_settingsActivity = 1; - /** -

- @attr description - Set to true if this input method supports ways to switch to - a next input method (e.g. a globe key.). When this is true and - InputMethodManager#shouldOfferSwitchingToNextInputMethod() returns true, - the IME has to offer ways to to invoke InputMethodManager#switchToNextInputMethod() - accordingly. -

Note that the system determines the most appropriate next input method - and subtype in order to provide the consistent user experience in switching - between IMEs and subtypes. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#supportsSwitchingToNextInputMethod}. - @attr name android:supportsSwitchingToNextInputMethod - */ - public static final int InputMethod_supportsSwitchingToNextInputMethod = 2; - /** - Attributes that can be used with a InputMethodService. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #InputMethodService_imeExtractEnterAnimation android:imeExtractEnterAnimation} Animation to use when showing the fullscreen extract UI after - it had previously been hidden.
{@link #InputMethodService_imeExtractExitAnimation android:imeExtractExitAnimation} Animation to use when hiding the fullscreen extract UI after - it had previously been shown.
{@link #InputMethodService_imeFullscreenBackground android:imeFullscreenBackground} Background to use for entire input method when it is being - shown in fullscreen mode with the extract view, to ensure - that it completely covers the application.
- @see #InputMethodService_imeExtractEnterAnimation - @see #InputMethodService_imeExtractExitAnimation - @see #InputMethodService_imeFullscreenBackground - */ - public static final int[] InputMethodService = { - 0x0101022c, 0x01010268, 0x01010269}; - /** -

- @attr description - Animation to use when showing the fullscreen extract UI after - it had previously been hidden. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#imeExtractEnterAnimation}. - @attr name android:imeExtractEnterAnimation - */ - public static final int InputMethodService_imeExtractEnterAnimation = 1; - /** -

- @attr description - Animation to use when hiding the fullscreen extract UI after - it had previously been shown. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#imeExtractExitAnimation}. - @attr name android:imeExtractExitAnimation - */ - public static final int InputMethodService_imeExtractExitAnimation = 2; - /** -

- @attr description - Background to use for entire input method when it is being - shown in fullscreen mode with the extract view, to ensure - that it completely covers the application. This allows, - for example, the candidate view to be hidden - while in fullscreen mode without having the application show through - behind it. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#imeFullscreenBackground}. - @attr name android:imeFullscreenBackground - */ - public static final int InputMethodService_imeFullscreenBackground = 0; - /** - This is the subtype of InputMethod. Subtype can describe locales (e.g. en_US, fr_FR...) - and modes (e.g. voice, keyboard...), and is used for IME switch. This subtype allows - the system to call the specified subtype of the IME directly. -

Includes the following attributes:

- - - - - - - - - - - - - -
AttributeDescription
{@link #InputMethod_Subtype_icon android:icon} The icon of the subtype.
{@link #InputMethod_Subtype_imeSubtypeExtraValue android:imeSubtypeExtraValue} The extra value of the subtype.
{@link #InputMethod_Subtype_imeSubtypeLocale android:imeSubtypeLocale} The locale of the subtype.
{@link #InputMethod_Subtype_imeSubtypeMode android:imeSubtypeMode} The mode of the subtype.
{@link #InputMethod_Subtype_isAsciiCapable android:isAsciiCapable} Set to true if this subtype is ASCII capable.
{@link #InputMethod_Subtype_isAuxiliary android:isAuxiliary} Set true if the subtype is auxiliary.
{@link #InputMethod_Subtype_label android:label} The name of the subtype.
{@link #InputMethod_Subtype_overridesImplicitlyEnabledSubtype android:overridesImplicitlyEnabledSubtype} Set true when this subtype should be selected by default if no other subtypes are - selected explicitly.
{@link #InputMethod_Subtype_subtypeId android:subtypeId} The unique id for the subtype.
- @see #InputMethod_Subtype_icon - @see #InputMethod_Subtype_imeSubtypeExtraValue - @see #InputMethod_Subtype_imeSubtypeLocale - @see #InputMethod_Subtype_imeSubtypeMode - @see #InputMethod_Subtype_isAsciiCapable - @see #InputMethod_Subtype_isAuxiliary - @see #InputMethod_Subtype_label - @see #InputMethod_Subtype_overridesImplicitlyEnabledSubtype - @see #InputMethod_Subtype_subtypeId - */ - public static final int[] InputMethod_Subtype = { - 0x01010001, 0x01010002, 0x010102ec, 0x010102ed, - 0x010102ee, 0x0101037f, 0x010103a2, 0x010103c1, - 0x010103e9}; - /** -

- @attr description - The icon of the subtype. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int InputMethod_Subtype_icon = 1; - /** -

- @attr description - The extra value of the subtype. This string can be any string and will be passed to - the IME when the framework calls the IME with the subtype. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#imeSubtypeExtraValue}. - @attr name android:imeSubtypeExtraValue - */ - public static final int InputMethod_Subtype_imeSubtypeExtraValue = 4; - /** -

- @attr description - The locale of the subtype. This string should be a locale (e.g. en_US, fr_FR...) - and will be passed to the IME when the framework calls the IME - with the subtype. This is also used by the framework to know the supported locales - of the IME. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#imeSubtypeLocale}. - @attr name android:imeSubtypeLocale - */ - public static final int InputMethod_Subtype_imeSubtypeLocale = 2; - /** -

- @attr description - The mode of the subtype. This string can be a mode (e.g. voice, keyboard...) and this - string will be passed to the IME when the framework calls the IME with the - subtype. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#imeSubtypeMode}. - @attr name android:imeSubtypeMode - */ - public static final int InputMethod_Subtype_imeSubtypeMode = 3; - /** -

- @attr description - Set to true if this subtype is ASCII capable. If the subtype is ASCII - capable, it should guarantee that the user can input ASCII characters with - this subtype. This is important because many password fields only allow - ASCII-characters. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#isAsciiCapable}. - @attr name android:isAsciiCapable - */ - public static final int InputMethod_Subtype_isAsciiCapable = 8; - /** -

- @attr description - Set true if the subtype is auxiliary. An auxiliary subtype won't be shown in the - input method selection list in the settings app. - InputMethodManager#switchToLastInputMethod will ignore auxiliary subtypes when it - chooses a target subtype. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#isAuxiliary}. - @attr name android:isAuxiliary - */ - public static final int InputMethod_Subtype_isAuxiliary = 5; - /** -

- @attr description - The name of the subtype. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#label}. - @attr name android:label - */ - public static final int InputMethod_Subtype_label = 0; - /** -

- @attr description - Set true when this subtype should be selected by default if no other subtypes are - selected explicitly. Note that a subtype with this parameter being true will - not be shown in the subtypes list. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#overridesImplicitlyEnabledSubtype}. - @attr name android:overridesImplicitlyEnabledSubtype - */ - public static final int InputMethod_Subtype_overridesImplicitlyEnabledSubtype = 6; - /** -

- @attr description - The unique id for the subtype. The input method framework keeps track of enabled - subtypes by ID. When the IME package gets upgraded, enabled IDs will stay enabled even - if other attributes are different. If the ID is unspecified (by calling the other - constructor or 0. Arrays.hashCode(new Object[] {locale, mode, extraValue, - isAuxiliary, overridesImplicitlyEnabledSubtype}) will be used instead. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#subtypeId}. - @attr name android:subtypeId - */ - public static final int InputMethod_Subtype_subtypeId = 7; - /** - Attributes that can be used with a InsetDrawable. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #InsetDrawable_drawable android:drawable} Reference to a drawable resource to use for the frame.
{@link #InsetDrawable_insetBottom android:insetBottom}
{@link #InsetDrawable_insetLeft android:insetLeft}
{@link #InsetDrawable_insetRight android:insetRight}
{@link #InsetDrawable_insetTop android:insetTop}
{@link #InsetDrawable_visible android:visible} Provides initial visibility state of the drawable; the default - value is false.
- @see #InsetDrawable_drawable - @see #InsetDrawable_insetBottom - @see #InsetDrawable_insetLeft - @see #InsetDrawable_insetRight - @see #InsetDrawable_insetTop - @see #InsetDrawable_visible - */ - public static final int[] InsetDrawable = { - 0x01010194, 0x01010199, 0x010101b7, 0x010101b8, - 0x010101b9, 0x010101ba}; - /** -

- @attr description - Reference to a drawable resource to use for the frame. If not - given, the drawable must be defined by the first child tag. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#drawable}. - @attr name android:drawable - */ - public static final int InsetDrawable_drawable = 1; - /** -

This symbol is the offset where the {@link android.R.attr#insetBottom} - attribute's value can be found in the {@link #InsetDrawable} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:insetBottom - */ - public static final int InsetDrawable_insetBottom = 5; - /** -

This symbol is the offset where the {@link android.R.attr#insetLeft} - attribute's value can be found in the {@link #InsetDrawable} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:insetLeft - */ - public static final int InsetDrawable_insetLeft = 2; - /** -

This symbol is the offset where the {@link android.R.attr#insetRight} - attribute's value can be found in the {@link #InsetDrawable} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:insetRight - */ - public static final int InsetDrawable_insetRight = 3; - /** -

This symbol is the offset where the {@link android.R.attr#insetTop} - attribute's value can be found in the {@link #InsetDrawable} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:insetTop - */ - public static final int InsetDrawable_insetTop = 4; - /** -

- @attr description - Provides initial visibility state of the drawable; the default - value is false. See - {@link android.graphics.drawable.Drawable#setVisible}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#visible}. - @attr name android:visible - */ - public static final int InsetDrawable_visible = 0; - /** - Declaration of an {@link android.content.Intent} object in XML. May - also include zero or more {@link #IntentCategory and - {@link #Extra } tags. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #Intent_action android:action} The action name to assign to the Intent, as per - {@link android.content.Intent#setAction Intent.setAction()}.
{@link #Intent_data android:data} The data URI to assign to the Intent, as per - {@link android.content.Intent#setData Intent.setData()}.
{@link #Intent_mimeType android:mimeType} The MIME type name to assign to the Intent, as per - {@link android.content.Intent#setType Intent.setType()}.
{@link #Intent_targetClass android:targetClass} The class part of the ComponentName to assign to the Intent, as per - {@link android.content.Intent#setComponent Intent.setComponent()}.
{@link #Intent_targetPackage android:targetPackage} The package part of the ComponentName to assign to the Intent, as per - {@link android.content.Intent#setComponent Intent.setComponent()}.
- @see #Intent_action - @see #Intent_data - @see #Intent_mimeType - @see #Intent_targetClass - @see #Intent_targetPackage - */ - public static final int[] Intent = { - 0x01010021, 0x01010026, 0x0101002d, 0x0101002e, - 0x0101002f}; - /** -

- @attr description - The action name to assign to the Intent, as per - {@link android.content.Intent#setAction Intent.setAction()}. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#action}. - @attr name android:action - */ - public static final int Intent_action = 2; - /** -

- @attr description - The data URI to assign to the Intent, as per - {@link android.content.Intent#setData Intent.setData()}. -

Note: scheme and host name matching in the Android framework is - case-sensitive, unlike the formal RFC. As a result, - URIs here should always be normalized to use lower case letters - for these elements (as well as other proper Uri normalization).

- - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#data}. - @attr name android:data - */ - public static final int Intent_data = 3; - /** -

- @attr description - The MIME type name to assign to the Intent, as per - {@link android.content.Intent#setType Intent.setType()}. -

Note: MIME type matching in the Android framework is - case-sensitive, unlike formal RFC MIME types. As a result, - MIME types here should always use lower case letters.

- - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#mimeType}. - @attr name android:mimeType - */ - public static final int Intent_mimeType = 1; - /** -

- @attr description - The class part of the ComponentName to assign to the Intent, as per - {@link android.content.Intent#setComponent Intent.setComponent()}. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#targetClass}. - @attr name android:targetClass - */ - public static final int Intent_targetClass = 4; - /** -

- @attr description - The package part of the ComponentName to assign to the Intent, as per - {@link android.content.Intent#setComponent Intent.setComponent()}. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#targetPackage}. - @attr name android:targetPackage - */ - public static final int Intent_targetPackage = 0; - /** - A category to add to an Intent, as per - {@link android.content.Intent#addCategory Intent.addCategory()}. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #IntentCategory_name android:name} Required name of the category.
- @see #IntentCategory_name - */ - public static final int[] IntentCategory = { - 0x01010003}; - /** -

- @attr description - Required name of the category. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int IntentCategory_name = 0; - /** - Attributes that can be used with a KeySet. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #KeySet_name android:name} A unique name for the given item.
- @see #KeySet_name - */ - public static final int[] KeySet = { - 0x01010003}; - /** -

- @attr description - A unique name for the given item. This must use a Java-style naming - convention to ensure the name is unique, for example - "com.mycompany.MyName". - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int KeySet_name = 0; - /** - Attributes that can be used with a Keyboard. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #Keyboard_horizontalGap android:horizontalGap} Default horizontal gap between keys.
{@link #Keyboard_keyHeight android:keyHeight} Default height of a key, in pixels or percentage of display width.
{@link #Keyboard_keyWidth android:keyWidth} Default width of a key, in pixels or percentage of display width.
{@link #Keyboard_verticalGap android:verticalGap} Default vertical gap between rows of keys.
- @see #Keyboard_horizontalGap - @see #Keyboard_keyHeight - @see #Keyboard_keyWidth - @see #Keyboard_verticalGap - */ - public static final int[] Keyboard = { - 0x0101023d, 0x0101023e, 0x0101023f, 0x01010240}; - /** -

- @attr description - Default horizontal gap between keys. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#horizontalGap}. - @attr name android:horizontalGap - */ - public static final int Keyboard_horizontalGap = 2; - /** -

- @attr description - Default height of a key, in pixels or percentage of display width. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#keyHeight}. - @attr name android:keyHeight - */ - public static final int Keyboard_keyHeight = 1; - /** -

- @attr description - Default width of a key, in pixels or percentage of display width. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#keyWidth}. - @attr name android:keyWidth - */ - public static final int Keyboard_keyWidth = 0; - /** -

- @attr description - Default vertical gap between rows of keys. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#verticalGap}. - @attr name android:verticalGap - */ - public static final int Keyboard_verticalGap = 3; - /** - Use keyboard-layouts as the root tag of the XML resource that - describes a collection of keyboard layouts provided by an application. - Each keyboard layout is declared by a keyboard-layout tag - with these attributes. - - The XML resource that contains the keyboard layouts must be referenced from its - {@link android.hardware.input.InputManager#META_DATA_KEYBOARD_LAYOUTS} - meta-data entry used with broadcast receivers for - {@link android.hardware.input.InputManager#ACTION_QUERY_KEYBOARD_LAYOUTS}. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #KeyboardLayout_keyboardLayout android:keyboardLayout} The key character map file resource.
{@link #KeyboardLayout_label android:label} The display label of the keyboard layout.
{@link #KeyboardLayout_name android:name} The name of the keyboard layout, must be unique in the receiver.
- @see #KeyboardLayout_keyboardLayout - @see #KeyboardLayout_label - @see #KeyboardLayout_name - */ - public static final int[] KeyboardLayout = { - 0x01010001, 0x01010003, 0x010103ab}; - /** -

- @attr description - The key character map file resource. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#keyboardLayout}. - @attr name android:keyboardLayout - */ - public static final int KeyboardLayout_keyboardLayout = 2; - /** -

- @attr description - The display label of the keyboard layout. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#label}. - @attr name android:label - */ - public static final int KeyboardLayout_label = 0; - /** -

- @attr description - The name of the keyboard layout, must be unique in the receiver. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#name}. - @attr name android:name - */ - public static final int KeyboardLayout_name = 1; - /** - Attributes that can be used with a KeyboardView. -

Includes the following attributes:

- - - - - - - - - - - - - - - - -
AttributeDescription
{@link #KeyboardView_keyBackground android:keyBackground} Image for the key.
{@link #KeyboardView_keyPreviewHeight android:keyPreviewHeight} Height of the key press feedback popup.
{@link #KeyboardView_keyPreviewLayout android:keyPreviewLayout} Layout resource for key press feedback.
{@link #KeyboardView_keyPreviewOffset android:keyPreviewOffset} Vertical offset of the key press feedback from the key.
{@link #KeyboardView_keyTextColor android:keyTextColor} Color to use for the label in a key.
{@link #KeyboardView_keyTextSize android:keyTextSize} Size of the text for character keys.
{@link #KeyboardView_keyboardViewStyle android:keyboardViewStyle} Default KeyboardView style.
{@link #KeyboardView_labelTextSize android:labelTextSize} Size of the text for custom keys with some text and no icon.
{@link #KeyboardView_popupLayout android:popupLayout} Layout resource for popup keyboards.
{@link #KeyboardView_shadowColor android:shadowColor} Place a shadow of the specified color behind the text.
{@link #KeyboardView_shadowRadius android:shadowRadius} Radius of the shadow.
{@link #KeyboardView_verticalCorrection android:verticalCorrection} Amount to offset the touch Y coordinate by, for bias correction.
- @see #KeyboardView_keyBackground - @see #KeyboardView_keyPreviewHeight - @see #KeyboardView_keyPreviewLayout - @see #KeyboardView_keyPreviewOffset - @see #KeyboardView_keyTextColor - @see #KeyboardView_keyTextSize - @see #KeyboardView_keyboardViewStyle - @see #KeyboardView_labelTextSize - @see #KeyboardView_popupLayout - @see #KeyboardView_shadowColor - @see #KeyboardView_shadowRadius - @see #KeyboardView_verticalCorrection - */ - public static final int[] KeyboardView = { - 0x01010161, 0x01010164, 0x01010233, 0x01010234, - 0x01010235, 0x01010236, 0x01010237, 0x01010238, - 0x01010239, 0x0101023a, 0x0101023b, 0x0101044f}; - /** -

- @attr description - Image for the key. This image needs to be a StateListDrawable, with the following - possible states: normal, pressed, checkable, checkable+pressed, checkable+checked, - checkable+checked+pressed. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#keyBackground}. - @attr name android:keyBackground - */ - public static final int KeyboardView_keyBackground = 2; - /** -

- @attr description - Height of the key press feedback popup. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#keyPreviewHeight}. - @attr name android:keyPreviewHeight - */ - public static final int KeyboardView_keyPreviewHeight = 8; - /** -

- @attr description - Layout resource for key press feedback. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#keyPreviewLayout}. - @attr name android:keyPreviewLayout - */ - public static final int KeyboardView_keyPreviewLayout = 6; - /** -

- @attr description - Vertical offset of the key press feedback from the key. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#keyPreviewOffset}. - @attr name android:keyPreviewOffset - */ - public static final int KeyboardView_keyPreviewOffset = 7; - /** -

- @attr description - Color to use for the label in a key. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#keyTextColor}. - @attr name android:keyTextColor - */ - public static final int KeyboardView_keyTextColor = 5; - /** -

- @attr description - Size of the text for character keys. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#keyTextSize}. - @attr name android:keyTextSize - */ - public static final int KeyboardView_keyTextSize = 3; - /** -

- @attr description - Default KeyboardView style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:keyboardViewStyle - */ - public static final int KeyboardView_keyboardViewStyle = 11; - /** -

- @attr description - Size of the text for custom keys with some text and no icon. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#labelTextSize}. - @attr name android:labelTextSize - */ - public static final int KeyboardView_labelTextSize = 4; - /** -

- @attr description - Layout resource for popup keyboards. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#popupLayout}. - @attr name android:popupLayout - */ - public static final int KeyboardView_popupLayout = 10; - /** -

- @attr description - Place a shadow of the specified color behind the text. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#shadowColor}. - @attr name android:shadowColor - */ - public static final int KeyboardView_shadowColor = 0; - /** -

- @attr description - Radius of the shadow. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#shadowRadius}. - @attr name android:shadowRadius - */ - public static final int KeyboardView_shadowRadius = 1; - /** -

- @attr description - Amount to offset the touch Y coordinate by, for bias correction. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#verticalCorrection}. - @attr name android:verticalCorrection - */ - public static final int KeyboardView_verticalCorrection = 9; - /** - Attributes that can be used with a KeyboardViewPreviewState. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #KeyboardViewPreviewState_state_long_pressable android:state_long_pressable} State for {@link android.inputmethodservice.KeyboardView KeyboardView} - key preview background.
- @see #KeyboardViewPreviewState_state_long_pressable - */ - public static final int[] KeyboardViewPreviewState = { - 0x0101023c}; - /** -

- @attr description - State for {@link android.inputmethodservice.KeyboardView KeyboardView} - key preview background. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_long_pressable}. - @attr name android:state_long_pressable - */ - public static final int KeyboardViewPreviewState_state_long_pressable = 0; - /** - Attributes that can be used with a Keyboard_Key. -

Includes the following attributes:

- - - - - - - - - - - - - - - - -
AttributeDescription
{@link #Keyboard_Key_codes android:codes} The unicode value or comma-separated values that this key outputs.
{@link #Keyboard_Key_iconPreview android:iconPreview} The icon to show in the popup preview.
{@link #Keyboard_Key_isModifier android:isModifier} Whether this is a modifier key such as Alt or Shift.
{@link #Keyboard_Key_isRepeatable android:isRepeatable} Whether long-pressing on this key will make it repeat.
{@link #Keyboard_Key_isSticky android:isSticky} Whether this is a toggle key.
{@link #Keyboard_Key_keyEdgeFlags android:keyEdgeFlags} Key edge flags.
{@link #Keyboard_Key_keyIcon android:keyIcon} The icon to display on the key instead of the label.
{@link #Keyboard_Key_keyLabel android:keyLabel} The label to display on the key.
{@link #Keyboard_Key_keyOutputText android:keyOutputText} The string of characters to output when this key is pressed.
{@link #Keyboard_Key_keyboardMode android:keyboardMode} Mode of the keyboard.
{@link #Keyboard_Key_popupCharacters android:popupCharacters} The characters to display in the popup keyboard.
{@link #Keyboard_Key_popupKeyboard android:popupKeyboard} The XML keyboard layout of any popup keyboard.
- @see #Keyboard_Key_codes - @see #Keyboard_Key_iconPreview - @see #Keyboard_Key_isModifier - @see #Keyboard_Key_isRepeatable - @see #Keyboard_Key_isSticky - @see #Keyboard_Key_keyEdgeFlags - @see #Keyboard_Key_keyIcon - @see #Keyboard_Key_keyLabel - @see #Keyboard_Key_keyOutputText - @see #Keyboard_Key_keyboardMode - @see #Keyboard_Key_popupCharacters - @see #Keyboard_Key_popupKeyboard - */ - public static final int[] Keyboard_Key = { - 0x01010242, 0x01010243, 0x01010244, 0x01010245, - 0x01010246, 0x01010247, 0x01010248, 0x01010249, - 0x0101024a, 0x0101024b, 0x0101024c, 0x0101024d}; - /** -

- @attr description - The unicode value or comma-separated values that this key outputs. - - -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#codes}. - @attr name android:codes - */ - public static final int Keyboard_Key_codes = 0; - /** -

- @attr description - The icon to show in the popup preview. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#iconPreview}. - @attr name android:iconPreview - */ - public static final int Keyboard_Key_iconPreview = 7; - /** -

- @attr description - Whether this is a modifier key such as Alt or Shift. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#isModifier}. - @attr name android:isModifier - */ - public static final int Keyboard_Key_isModifier = 4; - /** -

- @attr description - Whether long-pressing on this key will make it repeat. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#isRepeatable}. - @attr name android:isRepeatable - */ - public static final int Keyboard_Key_isRepeatable = 6; - /** -

- @attr description - Whether this is a toggle key. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#isSticky}. - @attr name android:isSticky - */ - public static final int Keyboard_Key_isSticky = 5; - /** -

- @attr description - Key edge flags. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - -
ConstantValueDescription
left1 Key is anchored to the left of the keyboard.
right2 Key is anchored to the right of the keyboard.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#keyEdgeFlags}. - @attr name android:keyEdgeFlags - */ - public static final int Keyboard_Key_keyEdgeFlags = 3; - /** -

- @attr description - The icon to display on the key instead of the label. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#keyIcon}. - @attr name android:keyIcon - */ - public static final int Keyboard_Key_keyIcon = 10; - /** -

- @attr description - The label to display on the key. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#keyLabel}. - @attr name android:keyLabel - */ - public static final int Keyboard_Key_keyLabel = 9; - /** -

- @attr description - The string of characters to output when this key is pressed. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#keyOutputText}. - @attr name android:keyOutputText - */ - public static final int Keyboard_Key_keyOutputText = 8; - /** -

- @attr description - Mode of the keyboard. If the mode doesn't match the - requested keyboard mode, the key will be skipped. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#keyboardMode}. - @attr name android:keyboardMode - */ - public static final int Keyboard_Key_keyboardMode = 11; - /** -

- @attr description - The characters to display in the popup keyboard. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#popupCharacters}. - @attr name android:popupCharacters - */ - public static final int Keyboard_Key_popupCharacters = 2; - /** -

- @attr description - The XML keyboard layout of any popup keyboard. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#popupKeyboard}. - @attr name android:popupKeyboard - */ - public static final int Keyboard_Key_popupKeyboard = 1; - /** - Attributes that can be used with a Keyboard_Row. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #Keyboard_Row_keyboardMode android:keyboardMode} Mode of the keyboard.
{@link #Keyboard_Row_rowEdgeFlags android:rowEdgeFlags} Row edge flags.
- @see #Keyboard_Row_keyboardMode - @see #Keyboard_Row_rowEdgeFlags - */ - public static final int[] Keyboard_Row = { - 0x01010241, 0x0101024d}; - /** -

- @attr description - Mode of the keyboard. If the mode doesn't match the - requested keyboard mode, the row will be skipped. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#keyboardMode}. - @attr name android:keyboardMode - */ - public static final int Keyboard_Row_keyboardMode = 1; - /** -

- @attr description - Row edge flags. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - -
ConstantValueDescription
top4 Row is anchored to the top of the keyboard.
bottom8 Row is anchored to the bottom of the keyboard.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#rowEdgeFlags}. - @attr name android:rowEdgeFlags - */ - public static final int Keyboard_Row_rowEdgeFlags = 0; - /** - Attributes that can be used with a KeyguardGlowStripView. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #KeyguardGlowStripView_dotSize android:dotSize}
{@link #KeyguardGlowStripView_glowDot android:glowDot}
{@link #KeyguardGlowStripView_leftToRight android:leftToRight}
{@link #KeyguardGlowStripView_numDots android:numDots}
- @see #KeyguardGlowStripView_dotSize - @see #KeyguardGlowStripView_glowDot - @see #KeyguardGlowStripView_leftToRight - @see #KeyguardGlowStripView_numDots - */ - public static final int[] KeyguardGlowStripView = { - 0x01010475, 0x01010476, 0x01010477, 0x01010478}; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#dotSize} - attribute's value can be found in the {@link #KeyguardGlowStripView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name com.android.internal:dotSize - */ - public static final int KeyguardGlowStripView_dotSize = 0; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#glowDot} - attribute's value can be found in the {@link #KeyguardGlowStripView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name com.android.internal:glowDot - */ - public static final int KeyguardGlowStripView_glowDot = 2; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#leftToRight} - attribute's value can be found in the {@link #KeyguardGlowStripView} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name com.android.internal:leftToRight - */ - public static final int KeyguardGlowStripView_leftToRight = 3; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#numDots} - attribute's value can be found in the {@link #KeyguardGlowStripView} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name com.android.internal:numDots - */ - public static final int KeyguardGlowStripView_numDots = 1; - /** - Attributes that can be used with a KeyguardSecurityViewFlipper_Layout. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #KeyguardSecurityViewFlipper_Layout_layout_maxHeight android:layout_maxHeight} The maximum valid height for this item.
{@link #KeyguardSecurityViewFlipper_Layout_layout_maxWidth android:layout_maxWidth}
- @see #KeyguardSecurityViewFlipper_Layout_layout_maxHeight - @see #KeyguardSecurityViewFlipper_Layout_layout_maxWidth - */ - public static final int[] KeyguardSecurityViewFlipper_Layout = { - 0x0101045f, 0x0101047b}; - /** -

- @attr description - The maximum valid height for this item. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - -
ConstantValueDescription
unbounded-1 Indicates that the view may be resized arbitrarily large.
-

This is a private symbol. - @attr name com.android.internal:layout_maxHeight - */ - public static final int KeyguardSecurityViewFlipper_Layout_layout_maxHeight = 0; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#layout_maxWidth} - attribute's value can be found in the {@link #KeyguardSecurityViewFlipper_Layout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name com.android.internal:layout_maxWidth - */ - public static final int KeyguardSecurityViewFlipper_Layout_layout_maxWidth = 1; - /** - Drawable used to render several drawables stacked on top of each other. - Each child drawable can be controlled individually. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #LayerDrawable_autoMirrored android:autoMirrored} Indicates if the drawable needs to be mirrored when its layout direction is - RTL (right-to-left).
{@link #LayerDrawable_opacity android:opacity} Indicates the opacity of the layer.
- @see #LayerDrawable_autoMirrored - @see #LayerDrawable_opacity - */ - public static final int[] LayerDrawable = { - 0x0101031e, 0x010103ea}; - /** -

- @attr description - Indicates if the drawable needs to be mirrored when its layout direction is - RTL (right-to-left). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#autoMirrored}. - @attr name android:autoMirrored - */ - public static final int LayerDrawable_autoMirrored = 1; - /** -

- @attr description - Indicates the opacity of the layer. This can be useful to allow the - system to enable drawing optimizations. The default value is - translucent. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
opaque-1 Indicates that the layer is opaque and contains no transparent - nor translucent pixels.
transparent-2 The layer is completely transparent (no pixel will be drawn.)
translucent-3 The layer has translucent pixels.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#opacity}. - @attr name android:opacity - */ - public static final int LayerDrawable_opacity = 0; - /** - Describes an item (or child) of a LayerDrawable. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #LayerDrawableItem_bottom android:bottom} Bottom coordinate of the layer.
{@link #LayerDrawableItem_drawable android:drawable} Drawable used to render the layer.
{@link #LayerDrawableItem_id android:id} Identifier of the layer.
{@link #LayerDrawableItem_left android:left} Left coordinate of the layer.
{@link #LayerDrawableItem_right android:right} Right coordinate of the layer.
{@link #LayerDrawableItem_top android:top} Top coordinate of the layer.
- @see #LayerDrawableItem_bottom - @see #LayerDrawableItem_drawable - @see #LayerDrawableItem_id - @see #LayerDrawableItem_left - @see #LayerDrawableItem_right - @see #LayerDrawableItem_top - */ - public static final int[] LayerDrawableItem = { - 0x010100d0, 0x01010199, 0x010101ad, 0x010101ae, - 0x010101af, 0x010101b0}; - /** -

- @attr description - Bottom coordinate of the layer. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#bottom}. - @attr name android:bottom - */ - public static final int LayerDrawableItem_bottom = 5; - /** -

- @attr description - Drawable used to render the layer. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#drawable}. - @attr name android:drawable - */ - public static final int LayerDrawableItem_drawable = 1; - /** -

- @attr description - Identifier of the layer. This can be used to retrieve the layer - from a drawbable container. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#id}. - @attr name android:id - */ - public static final int LayerDrawableItem_id = 0; - /** -

- @attr description - Left coordinate of the layer. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#left}. - @attr name android:left - */ - public static final int LayerDrawableItem_left = 2; - /** -

- @attr description - Right coordinate of the layer. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#right}. - @attr name android:right - */ - public static final int LayerDrawableItem_right = 4; - /** -

- @attr description - Top coordinate of the layer. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#top}. - @attr name android:top - */ - public static final int LayerDrawableItem_top = 3; - /** - Attributes that can be used with a LayoutAnimation. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #LayoutAnimation_animation android:animation} Animation to use on each child.
{@link #LayoutAnimation_animationOrder android:animationOrder} The order in which the animations will be started.
{@link #LayoutAnimation_delay android:delay} Fraction of the animation duration used to delay the beginning of - the animation of each child.
{@link #LayoutAnimation_interpolator android:interpolator} Interpolator used to interpolate the delay between the start of - each animation.
- @see #LayoutAnimation_animation - @see #LayoutAnimation_animationOrder - @see #LayoutAnimation_delay - @see #LayoutAnimation_interpolator - */ - public static final int[] LayoutAnimation = { - 0x01010141, 0x010101cc, 0x010101cd, 0x010101ce}; - /** -

- @attr description - Animation to use on each child. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#animation}. - @attr name android:animation - */ - public static final int LayoutAnimation_animation = 2; - /** -

- @attr description - The order in which the animations will be started. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
normal0 Animations are started in the natural order.
reverse1 Animations are started in the reverse order.
random2 Animations are started randomly.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#animationOrder}. - @attr name android:animationOrder - */ - public static final int LayoutAnimation_animationOrder = 3; - /** -

- @attr description - Fraction of the animation duration used to delay the beginning of - the animation of each child. - - -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#delay}. - @attr name android:delay - */ - public static final int LayoutAnimation_delay = 1; - /** -

- @attr description - Interpolator used to interpolate the delay between the start of - each animation. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#interpolator}. - @attr name android:interpolator - */ - public static final int LayoutAnimation_interpolator = 0; - /** - Attributes that can be used with a LevelListDrawableItem. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #LevelListDrawableItem_drawable android:drawable} Reference to a drawable resource to use for the frame.
{@link #LevelListDrawableItem_maxLevel android:maxLevel} The maximum level allowed for this item.
{@link #LevelListDrawableItem_minLevel android:minLevel} The minimum level allowed for this item.
- @see #LevelListDrawableItem_drawable - @see #LevelListDrawableItem_maxLevel - @see #LevelListDrawableItem_minLevel - */ - public static final int[] LevelListDrawableItem = { - 0x01010199, 0x010101b1, 0x010101b2}; - /** -

- @attr description - Reference to a drawable resource to use for the frame. If not - given, the drawable must be defined by the first child tag. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#drawable}. - @attr name android:drawable - */ - public static final int LevelListDrawableItem_drawable = 0; - /** -

- @attr description - The maximum level allowed for this item. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#maxLevel}. - @attr name android:maxLevel - */ - public static final int LevelListDrawableItem_maxLevel = 2; - /** -

- @attr description - The minimum level allowed for this item. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#minLevel}. - @attr name android:minLevel - */ - public static final int LevelListDrawableItem_minLevel = 1; - /** - Attributes that can be used with a LinearLayout. -

Includes the following attributes:

- - - - - - - - - - - - - -
AttributeDescription
{@link #LinearLayout_baselineAligned android:baselineAligned} When set to false, prevents the layout from aligning its children's - baselines.
{@link #LinearLayout_baselineAlignedChildIndex android:baselineAlignedChildIndex} When a linear layout is part of another layout that is baseline - aligned, it can specify which of its children to baseline align to - (that is, which child TextView).
{@link #LinearLayout_divider android:divider} Drawable to use as a vertical divider between buttons.
{@link #LinearLayout_dividerPadding android:dividerPadding} Size of padding on either end of a divider.
{@link #LinearLayout_gravity android:gravity} Specifies how an object should position its content, on both the X and Y axes, - within its own bounds.
{@link #LinearLayout_measureWithLargestChild android:measureWithLargestChild} When set to true, all children with a weight will be considered having - the minimum size of the largest child.
{@link #LinearLayout_orientation android:orientation} Should the layout be a column or a row? Use "horizontal" - for a row, "vertical" for a column.
{@link #LinearLayout_showDividers android:showDividers} Setting for which dividers to show.
{@link #LinearLayout_weightSum android:weightSum} Defines the maximum weight sum.
- @see #LinearLayout_baselineAligned - @see #LinearLayout_baselineAlignedChildIndex - @see #LinearLayout_divider - @see #LinearLayout_dividerPadding - @see #LinearLayout_gravity - @see #LinearLayout_measureWithLargestChild - @see #LinearLayout_orientation - @see #LinearLayout_showDividers - @see #LinearLayout_weightSum - */ - public static final int[] LinearLayout = { - 0x010100af, 0x010100c4, 0x01010126, 0x01010127, - 0x01010128, 0x01010129, 0x010102d4, 0x01010329, - 0x0101032a}; - /** -

- @attr description - When set to false, prevents the layout from aligning its children's - baselines. This attribute is particularly useful when the children - use different values for gravity. The default value is true. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#baselineAligned}. - @attr name android:baselineAligned - */ - public static final int LinearLayout_baselineAligned = 2; - /** -

- @attr description - When a linear layout is part of another layout that is baseline - aligned, it can specify which of its children to baseline align to - (that is, which child TextView). - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#baselineAlignedChildIndex}. - @attr name android:baselineAlignedChildIndex - */ - public static final int LinearLayout_baselineAlignedChildIndex = 3; - /** -

- @attr description - Drawable to use as a vertical divider between buttons. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#divider}. - @attr name android:divider - */ - public static final int LinearLayout_divider = 5; - /** -

- @attr description - Size of padding on either end of a divider. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dividerPadding}. - @attr name android:dividerPadding - */ - public static final int LinearLayout_dividerPadding = 8; - /** -

- @attr description - Specifies how an object should position its content, on both the X and Y axes, - within its own bounds. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#gravity}. - @attr name android:gravity - */ - public static final int LinearLayout_gravity = 0; - /** -

- @attr description - When set to true, all children with a weight will be considered having - the minimum size of the largest child. If false, all children are - measured normally. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#measureWithLargestChild}. - @attr name android:measureWithLargestChild - */ - public static final int LinearLayout_measureWithLargestChild = 6; - /** -

- @attr description - Should the layout be a column or a row? Use "horizontal" - for a row, "vertical" for a column. The default is - horizontal. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
horizontal0 Defines an horizontal widget.
vertical1 Defines a vertical widget.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#orientation}. - @attr name android:orientation - */ - public static final int LinearLayout_orientation = 1; - /** -

- @attr description - Setting for which dividers to show. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - -
ConstantValueDescription
none0
beginning1
middle2
end4
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#showDividers}. - @attr name android:showDividers - */ - public static final int LinearLayout_showDividers = 7; - /** -

- @attr description - Defines the maximum weight sum. If unspecified, the sum is computed - by adding the layout_weight of all of the children. This can be - used for instance to give a single child 50% of the total available - space by giving it a layout_weight of 0.5 and setting the weightSum - to 1.0. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#weightSum}. - @attr name android:weightSum - */ - public static final int LinearLayout_weightSum = 4; - /** - Attributes that can be used with a LinearLayout_Layout. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #LinearLayout_Layout_layout_gravity android:layout_gravity} Standard gravity constant that a child supplies to its parent.
{@link #LinearLayout_Layout_layout_height android:layout_height} Specifies the basic height of the view.
{@link #LinearLayout_Layout_layout_weight android:layout_weight}
{@link #LinearLayout_Layout_layout_width android:layout_width} Specifies the basic width of the view.
- @see #LinearLayout_Layout_layout_gravity - @see #LinearLayout_Layout_layout_height - @see #LinearLayout_Layout_layout_weight - @see #LinearLayout_Layout_layout_width - */ - public static final int[] LinearLayout_Layout = { - 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181}; - /** -

- @attr description - Standard gravity constant that a child supplies to its parent. - Defines how the child view should be positioned, on both the X and Y axes, within its enclosing layout. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_gravity}. - @attr name android:layout_gravity - */ - public static final int LinearLayout_Layout_layout_gravity = 0; - /** -

- @attr description - Specifies the basic height of the view. This is a required attribute - for any view inside of a containing layout manager. Its value may - be a dimension (such as "12dip") for a constant height or one of - the special constants. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
fill_parent-1 The view should be as big as its parent (minus padding). - This constant is deprecated starting from API Level 8 and - is replaced by {@code match_parent}.
match_parent-1 The view should be as big as its parent (minus padding). - Introduced in API Level 8.
wrap_content-2 The view should be only big enough to enclose its content (plus padding).
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_height}. - @attr name android:layout_height - */ - public static final int LinearLayout_Layout_layout_height = 2; - /** -

This symbol is the offset where the {@link android.R.attr#layout_weight} - attribute's value can be found in the {@link #LinearLayout_Layout} array. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:layout_weight - */ - public static final int LinearLayout_Layout_layout_weight = 3; - /** -

- @attr description - Specifies the basic width of the view. This is a required attribute - for any view inside of a containing layout manager. Its value may - be a dimension (such as "12dip") for a constant width or one of - the special constants. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
fill_parent-1 The view should be as big as its parent (minus padding). - This constant is deprecated starting from API Level 8 and - is replaced by {@code match_parent}.
match_parent-1 The view should be as big as its parent (minus padding). - Introduced in API Level 8.
wrap_content-2 The view should be only big enough to enclose its content (plus padding).
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_width}. - @attr name android:layout_width - */ - public static final int LinearLayout_Layout_layout_width = 1; - /** - Base attributes available to ListPreference. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #ListPreference_entries android:entries} The human-readable array to present as a list.
{@link #ListPreference_entryValues android:entryValues} The array to find the value to save for a preference when an entry from - entries is selected.
- @see #ListPreference_entries - @see #ListPreference_entryValues - */ - public static final int[] ListPreference = { - 0x010100b2, 0x010101f8}; - /** -

- @attr description - The human-readable array to present as a list. Each entry must have a corresponding - index in entryValues. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#entries}. - @attr name android:entries - */ - public static final int ListPreference_entries = 0; - /** -

- @attr description - The array to find the value to save for a preference when an entry from - entries is selected. If a user clicks on the second item in entries, the - second item in this array will be saved to the preference. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#entryValues}. - @attr name android:entryValues - */ - public static final int ListPreference_entryValues = 1; - /** - Attributes that can be used with a ListView. -

Includes the following attributes:

- - - - - - - - - - - -
AttributeDescription
{@link #ListView_divider android:divider} Drawable or color to draw between list items.
{@link #ListView_dividerHeight android:dividerHeight} Height of the divider.
{@link #ListView_entries android:entries} Reference to an array resource that will populate the ListView.
{@link #ListView_footerDividersEnabled android:footerDividersEnabled} When set to false, the ListView will not draw the divider before each footer view.
{@link #ListView_headerDividersEnabled android:headerDividersEnabled} When set to false, the ListView will not draw the divider after each header view.
{@link #ListView_overScrollFooter android:overScrollFooter} Drawable to draw below list content.
{@link #ListView_overScrollHeader android:overScrollHeader} Drawable to draw above list content.
- @see #ListView_divider - @see #ListView_dividerHeight - @see #ListView_entries - @see #ListView_footerDividersEnabled - @see #ListView_headerDividersEnabled - @see #ListView_overScrollFooter - @see #ListView_overScrollHeader - */ - public static final int[] ListView = { - 0x010100b2, 0x01010129, 0x0101012a, 0x0101022e, - 0x0101022f, 0x010102c2, 0x010102c3}; - /** -

- @attr description - Drawable or color to draw between list items. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#divider}. - @attr name android:divider - */ - public static final int ListView_divider = 1; - /** -

- @attr description - Height of the divider. Will use the intrinsic height of the divider if this - is not specified. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dividerHeight}. - @attr name android:dividerHeight - */ - public static final int ListView_dividerHeight = 2; - /** -

- @attr description - Reference to an array resource that will populate the ListView. For static content, - this is simpler than populating the ListView programmatically. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#entries}. - @attr name android:entries - */ - public static final int ListView_entries = 0; - /** -

- @attr description - When set to false, the ListView will not draw the divider before each footer view. - The default value is true. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#footerDividersEnabled}. - @attr name android:footerDividersEnabled - */ - public static final int ListView_footerDividersEnabled = 4; - /** -

- @attr description - When set to false, the ListView will not draw the divider after each header view. - The default value is true. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#headerDividersEnabled}. - @attr name android:headerDividersEnabled - */ - public static final int ListView_headerDividersEnabled = 3; - /** -

- @attr description - Drawable to draw below list content. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#overScrollFooter}. - @attr name android:overScrollFooter - */ - public static final int ListView_overScrollFooter = 6; - /** -

- @attr description - Drawable to draw above list content. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#overScrollHeader}. - @attr name android:overScrollHeader - */ - public static final int ListView_overScrollHeader = 5; - /** - Attributes that can be used with a LockPatternView. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #LockPatternView_aspect android:aspect} Aspect to use when drawing LockPatternView.
- @see #LockPatternView_aspect - */ - public static final int[] LockPatternView = { - 0x01010461}; - /** -

- @attr description - Aspect to use when drawing LockPatternView. Choices are "square"(default), "lock_width" - or "lock_height" - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:aspect - */ - public static final int LockPatternView_aspect = 0; - /** - The set of attributes for a MapView. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #MapView_apiKey android:apiKey} Value is a string that specifies the Maps API Key to use.
- @see #MapView_apiKey - */ - public static final int[] MapView = { - 0x01010211}; - /** -

- @attr description - Value is a string that specifies the Maps API Key to use. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#apiKey}. - @attr name android:apiKey - */ - public static final int MapView_apiKey = 0; - /** - Attributes that can be used with a MediaRouteButton. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #MediaRouteButton_externalRouteEnabledDrawable android:externalRouteEnabledDrawable} This drawable is a state list where the "activated" state - indicates active media routing.
{@link #MediaRouteButton_mediaRouteTypes android:mediaRouteTypes} The types of media routes the button and its resulting - chooser will filter by.
{@link #MediaRouteButton_minHeight android:minHeight}
{@link #MediaRouteButton_minWidth android:minWidth}
- @see #MediaRouteButton_externalRouteEnabledDrawable - @see #MediaRouteButton_mediaRouteTypes - @see #MediaRouteButton_minHeight - @see #MediaRouteButton_minWidth - */ - public static final int[] MediaRouteButton = { - 0x0101013f, 0x01010140, 0x010103ae, 0x01010471}; - /** -

- @attr description - This drawable is a state list where the "activated" state - indicates active media routing. Non-activated indicates - that media is playing to the local device only. - @hide - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:externalRouteEnabledDrawable - */ - public static final int MediaRouteButton_externalRouteEnabledDrawable = 3; - /** -

- @attr description - The types of media routes the button and its resulting - chooser will filter by. - - -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - -
ConstantValueDescription
liveAudio0x1 Allow selection of live audio routes.
user0x800000 Allow selection of user (app-specified) routes.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#mediaRouteTypes}. - @attr name android:mediaRouteTypes - */ - public static final int MediaRouteButton_mediaRouteTypes = 2; - /** -

This symbol is the offset where the {@link android.R.attr#minHeight} - attribute's value can be found in the {@link #MediaRouteButton} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:minHeight - */ - public static final int MediaRouteButton_minHeight = 1; - /** -

This symbol is the offset where the {@link android.R.attr#minWidth} - attribute's value can be found in the {@link #MediaRouteButton} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:minWidth - */ - public static final int MediaRouteButton_minWidth = 0; - /** - * Base attributes that are available to all Menu objects. - */ - public static final int[] Menu = { - - }; - /** - Base attributes that are available to all groups. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #MenuGroup_checkableBehavior android:checkableBehavior} Whether the items are capable of displaying a check mark.
{@link #MenuGroup_enabled android:enabled} Whether the items are enabled.
{@link #MenuGroup_id android:id} The ID of the group.
{@link #MenuGroup_menuCategory android:menuCategory} The category applied to all items within this group.
{@link #MenuGroup_orderInCategory android:orderInCategory} The order within the category applied to all items within this group.
{@link #MenuGroup_visible android:visible} Whether the items are shown/visible.
- @see #MenuGroup_checkableBehavior - @see #MenuGroup_enabled - @see #MenuGroup_id - @see #MenuGroup_menuCategory - @see #MenuGroup_orderInCategory - @see #MenuGroup_visible - */ - public static final int[] MenuGroup = { - 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, - 0x010101df, 0x010101e0}; - /** -

- @attr description - Whether the items are capable of displaying a check mark. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
none0 The items are not checkable.
all1 The items are all checkable.
single2 The items are checkable and there will only be a single checked item in - this group.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#checkableBehavior}. - @attr name android:checkableBehavior - */ - public static final int MenuGroup_checkableBehavior = 5; - /** -

- @attr description - Whether the items are enabled. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#enabled}. - @attr name android:enabled - */ - public static final int MenuGroup_enabled = 0; - /** -

- @attr description - The ID of the group. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#id}. - @attr name android:id - */ - public static final int MenuGroup_id = 1; - /** -

- @attr description - The category applied to all items within this group. - (This will be or'ed with the orderInCategory attribute.) - - -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
container0x00010000 Items are part of a container.
system0x00020000 Items are provided by the system.
secondary0x00030000 Items are user-supplied secondary (infrequently used).
alternative0x00040000 Items are alternative actions.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#menuCategory}. - @attr name android:menuCategory - */ - public static final int MenuGroup_menuCategory = 3; - /** -

- @attr description - The order within the category applied to all items within this group. - (This will be or'ed with the category attribute.) - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#orderInCategory}. - @attr name android:orderInCategory - */ - public static final int MenuGroup_orderInCategory = 4; - /** -

- @attr description - Whether the items are shown/visible. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#visible}. - @attr name android:visible - */ - public static final int MenuGroup_visible = 2; - /** - Base attributes that are available to all Item objects. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #MenuItem_actionLayout android:actionLayout} An optional layout to be used as an action view.
{@link #MenuItem_actionProviderClass android:actionProviderClass} The name of an optional ActionProvider class to instantiate an action view - and perform operations such as default action for that menu item.
{@link #MenuItem_actionViewClass android:actionViewClass} The name of an optional View class to instantiate and use as an - action view.
{@link #MenuItem_alphabeticShortcut android:alphabeticShortcut} The alphabetic shortcut key.
{@link #MenuItem_checkable android:checkable} Whether the item is capable of displaying a check mark.
{@link #MenuItem_checked android:checked} Whether the item is checked.
{@link #MenuItem_enabled android:enabled} Whether the item is enabled.
{@link #MenuItem_icon android:icon} The icon associated with this item.
{@link #MenuItem_id android:id} The ID of the item.
{@link #MenuItem_menuCategory android:menuCategory} The category applied to the item.
{@link #MenuItem_numericShortcut android:numericShortcut} The numeric shortcut key.
{@link #MenuItem_onClick android:onClick} Name of a method on the Context used to inflate the menu that will be - called when the item is clicked.
{@link #MenuItem_orderInCategory android:orderInCategory} The order within the category applied to the item.
{@link #MenuItem_showAsAction android:showAsAction} How this item should display in the Action Bar, if present.
{@link #MenuItem_title android:title} The title associated with the item.
{@link #MenuItem_titleCondensed android:titleCondensed} The condensed title associated with the item.
{@link #MenuItem_visible android:visible} Whether the item is shown/visible.
- @see #MenuItem_actionLayout - @see #MenuItem_actionProviderClass - @see #MenuItem_actionViewClass - @see #MenuItem_alphabeticShortcut - @see #MenuItem_checkable - @see #MenuItem_checked - @see #MenuItem_enabled - @see #MenuItem_icon - @see #MenuItem_id - @see #MenuItem_menuCategory - @see #MenuItem_numericShortcut - @see #MenuItem_onClick - @see #MenuItem_orderInCategory - @see #MenuItem_showAsAction - @see #MenuItem_title - @see #MenuItem_titleCondensed - @see #MenuItem_visible - */ - public static final int[] MenuItem = { - 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, - 0x01010194, 0x010101de, 0x010101df, 0x010101e1, - 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, - 0x0101026f, 0x010102d9, 0x010102fb, 0x010102fc, - 0x01010389}; - /** -

- @attr description - An optional layout to be used as an action view. - See {@link android.view.MenuItem#setActionView(android.view.View)} - for more info. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionLayout}. - @attr name android:actionLayout - */ - public static final int MenuItem_actionLayout = 14; - /** -

- @attr description - The name of an optional ActionProvider class to instantiate an action view - and perform operations such as default action for that menu item. - See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} - for more info. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionProviderClass}. - @attr name android:actionProviderClass - */ - public static final int MenuItem_actionProviderClass = 16; - /** -

- @attr description - The name of an optional View class to instantiate and use as an - action view. See {@link android.view.MenuItem#setActionView(android.view.View)} - for more info. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionViewClass}. - @attr name android:actionViewClass - */ - public static final int MenuItem_actionViewClass = 15; - /** -

- @attr description - The alphabetic shortcut key. This is the shortcut when using a keyboard - with alphabetic keys. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#alphabeticShortcut}. - @attr name android:alphabeticShortcut - */ - public static final int MenuItem_alphabeticShortcut = 9; - /** -

- @attr description - Whether the item is capable of displaying a check mark. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#checkable}. - @attr name android:checkable - */ - public static final int MenuItem_checkable = 11; - /** -

- @attr description - Whether the item is checked. Note that you must first have enabled checking with - the checkable attribute or else the check mark will not appear. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#checked}. - @attr name android:checked - */ - public static final int MenuItem_checked = 3; - /** -

- @attr description - Whether the item is enabled. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#enabled}. - @attr name android:enabled - */ - public static final int MenuItem_enabled = 1; - /** -

- @attr description - The icon associated with this item. This icon will not always be shown, so - the title should be sufficient in describing this item. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int MenuItem_icon = 0; - /** -

- @attr description - The ID of the item. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#id}. - @attr name android:id - */ - public static final int MenuItem_id = 2; - /** -

- @attr description - The category applied to the item. - (This will be or'ed with the orderInCategory attribute.) - - -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
container0x00010000 Items are part of a container.
system0x00020000 Items are provided by the system.
secondary0x00030000 Items are user-supplied secondary (infrequently used).
alternative0x00040000 Items are alternative actions.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#menuCategory}. - @attr name android:menuCategory - */ - public static final int MenuItem_menuCategory = 5; - /** -

- @attr description - The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key) - keyboard. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#numericShortcut}. - @attr name android:numericShortcut - */ - public static final int MenuItem_numericShortcut = 10; - /** -

- @attr description - Name of a method on the Context used to inflate the menu that will be - called when the item is clicked. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#onClick}. - @attr name android:onClick - */ - public static final int MenuItem_onClick = 12; - /** -

- @attr description - The order within the category applied to the item. - (This will be or'ed with the category attribute.) - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#orderInCategory}. - @attr name android:orderInCategory - */ - public static final int MenuItem_orderInCategory = 6; - /** -

- @attr description - How this item should display in the Action Bar, if present. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - -
ConstantValueDescription
never0 Never show this item in an action bar, show it in the overflow menu instead. - Mutually exclusive with "ifRoom" and "always".
ifRoom1 Show this item in an action bar if there is room for it as determined - by the system. Favor this option over "always" where possible. - Mutually exclusive with "never" and "always".
always2 Always show this item in an actionbar, even if it would override - the system's limits of how much stuff to put there. This may make - your action bar look bad on some screens. In most cases you should - use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".
withText4 When this item is shown as an action in the action bar, show a text - label with it even if it has an icon representation.
collapseActionView8 This item's action view collapses to a normal menu - item. When expanded, the action view takes over a - larger segment of its container.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#showAsAction}. - @attr name android:showAsAction - */ - public static final int MenuItem_showAsAction = 13; - /** -

- @attr description - The title associated with the item. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#title}. - @attr name android:title - */ - public static final int MenuItem_title = 7; - /** -

- @attr description - The condensed title associated with the item. This is used in situations where the - normal title may be too long to be displayed. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#titleCondensed}. - @attr name android:titleCondensed - */ - public static final int MenuItem_titleCondensed = 8; - /** -

- @attr description - Whether the item is shown/visible. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#visible}. - @attr name android:visible - */ - public static final int MenuItem_visible = 4; - /** - State array representing a menu item that is currently focused and checked. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #MenuItemCheckedFocusedState_state_checkable android:state_checkable} State identifier indicating that the object may display a check mark.
{@link #MenuItemCheckedFocusedState_state_checked android:state_checked} State identifier indicating that the object is currently checked.
{@link #MenuItemCheckedFocusedState_state_focused android:state_focused} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view has input focus.
- @see #MenuItemCheckedFocusedState_state_checkable - @see #MenuItemCheckedFocusedState_state_checked - @see #MenuItemCheckedFocusedState_state_focused - */ - public static final int[] MenuItemCheckedFocusedState = { - 0x0101009c, 0x0101009f, 0x010100a0}; - /** -

- @attr description - State identifier indicating that the object may display a check mark. - See {@link R.attr#state_checked} for the identifier that indicates whether it is - actually checked. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_checkable}. - @attr name android:state_checkable - */ - public static final int MenuItemCheckedFocusedState_state_checkable = 1; - /** -

- @attr description - State identifier indicating that the object is currently checked. See - {@link R.attr#state_checkable} for an additional identifier that can indicate if - any object may ever display a check, regardless of whether state_checked is - currently set. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_checked}. - @attr name android:state_checked - */ - public static final int MenuItemCheckedFocusedState_state_checked = 2; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view has input focus. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_focused}. - @attr name android:state_focused - */ - public static final int MenuItemCheckedFocusedState_state_focused = 0; - /** - State array representing a menu item that is currently checked. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #MenuItemCheckedState_state_checkable android:state_checkable} State identifier indicating that the object may display a check mark.
{@link #MenuItemCheckedState_state_checked android:state_checked} State identifier indicating that the object is currently checked.
- @see #MenuItemCheckedState_state_checkable - @see #MenuItemCheckedState_state_checked - */ - public static final int[] MenuItemCheckedState = { - 0x0101009f, 0x010100a0}; - /** -

- @attr description - State identifier indicating that the object may display a check mark. - See {@link R.attr#state_checked} for the identifier that indicates whether it is - actually checked. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_checkable}. - @attr name android:state_checkable - */ - public static final int MenuItemCheckedState_state_checkable = 0; - /** -

- @attr description - State identifier indicating that the object is currently checked. See - {@link R.attr#state_checkable} for an additional identifier that can indicate if - any object may ever display a check, regardless of whether state_checked is - currently set. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_checked}. - @attr name android:state_checked - */ - public static final int MenuItemCheckedState_state_checked = 1; - /** - State array representing a menu item that is focused and checkable but is not currently checked. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #MenuItemUncheckedFocusedState_state_checkable android:state_checkable} State identifier indicating that the object may display a check mark.
{@link #MenuItemUncheckedFocusedState_state_focused android:state_focused} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view has input focus.
- @see #MenuItemUncheckedFocusedState_state_checkable - @see #MenuItemUncheckedFocusedState_state_focused - */ - public static final int[] MenuItemUncheckedFocusedState = { - 0x0101009c, 0x0101009f}; - /** -

- @attr description - State identifier indicating that the object may display a check mark. - See {@link R.attr#state_checked} for the identifier that indicates whether it is - actually checked. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_checkable}. - @attr name android:state_checkable - */ - public static final int MenuItemUncheckedFocusedState_state_checkable = 1; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view has input focus. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_focused}. - @attr name android:state_focused - */ - public static final int MenuItemUncheckedFocusedState_state_focused = 0; - /** - State array representing a menu item that is checkable but is not currently checked. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #MenuItemUncheckedState_state_checkable android:state_checkable} State identifier indicating that the object may display a check mark.
- @see #MenuItemUncheckedState_state_checkable - */ - public static final int[] MenuItemUncheckedState = { - 0x0101009f}; - /** -

- @attr description - State identifier indicating that the object may display a check mark. - See {@link R.attr#state_checked} for the identifier that indicates whether it is - actually checked. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_checkable}. - @attr name android:state_checkable - */ - public static final int MenuItemUncheckedState_state_checkable = 0; - /** - Attributes that can be used with a MenuView. -

Includes the following attributes:

- - - - - - - - - - - - -
AttributeDescription
{@link #MenuView_headerBackground android:headerBackground} Default background for the menu header.
{@link #MenuView_horizontalDivider android:horizontalDivider} Default horizontal divider between rows of menu items.
{@link #MenuView_itemBackground android:itemBackground} Default background for each menu item.
{@link #MenuView_itemIconDisabledAlpha android:itemIconDisabledAlpha} Default disabled icon alpha for each menu item that shows an icon.
{@link #MenuView_itemTextAppearance android:itemTextAppearance} Default appearance of menu item text.
{@link #MenuView_preserveIconSpacing android:preserveIconSpacing} Whether space should be reserved in layout when an icon is missing.
{@link #MenuView_verticalDivider android:verticalDivider} Default vertical divider between menu items.
{@link #MenuView_windowAnimationStyle android:windowAnimationStyle} Default animations for the menu.
- @see #MenuView_headerBackground - @see #MenuView_horizontalDivider - @see #MenuView_itemBackground - @see #MenuView_itemIconDisabledAlpha - @see #MenuView_itemTextAppearance - @see #MenuView_preserveIconSpacing - @see #MenuView_verticalDivider - @see #MenuView_windowAnimationStyle - */ - public static final int[] MenuView = { - 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, - 0x0101012f, 0x01010130, 0x01010131, 0x01010435}; - /** -

- @attr description - Default background for the menu header. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#headerBackground}. - @attr name android:headerBackground - */ - public static final int MenuView_headerBackground = 4; - /** -

- @attr description - Default horizontal divider between rows of menu items. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#horizontalDivider}. - @attr name android:horizontalDivider - */ - public static final int MenuView_horizontalDivider = 2; - /** -

- @attr description - Default background for each menu item. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#itemBackground}. - @attr name android:itemBackground - */ - public static final int MenuView_itemBackground = 5; - /** -

- @attr description - Default disabled icon alpha for each menu item that shows an icon. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#itemIconDisabledAlpha}. - @attr name android:itemIconDisabledAlpha - */ - public static final int MenuView_itemIconDisabledAlpha = 6; - /** -

- @attr description - Default appearance of menu item text. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#itemTextAppearance}. - @attr name android:itemTextAppearance - */ - public static final int MenuView_itemTextAppearance = 1; - /** -

- @attr description - Whether space should be reserved in layout when an icon is missing. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:preserveIconSpacing - */ - public static final int MenuView_preserveIconSpacing = 7; - /** -

- @attr description - Default vertical divider between menu items. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#verticalDivider}. - @attr name android:verticalDivider - */ - public static final int MenuView_verticalDivider = 3; - /** -

- @attr description - Default animations for the menu. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowAnimationStyle}. - @attr name android:windowAnimationStyle - */ - public static final int MenuView_windowAnimationStyle = 0; - /** - Attributes that can be used with a MultiPaneChallengeLayout. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #MultiPaneChallengeLayout_orientation android:orientation} Influences how layout_centerWithinArea behaves
- @see #MultiPaneChallengeLayout_orientation - */ - public static final int[] MultiPaneChallengeLayout = { - 0x010100c4}; - /** -

- @attr description - Influences how layout_centerWithinArea behaves - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
horizontal0 Defines an horizontal widget.
vertical1 Defines a vertical widget.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#orientation}. - @attr name android:orientation - */ - public static final int MultiPaneChallengeLayout_orientation = 0; - /** - Attributes that can be used with a MultiPaneChallengeLayout_Layout. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #MultiPaneChallengeLayout_Layout_layout_centerWithinArea android:layout_centerWithinArea} Percentage of the screen this child should consume or center within.
{@link #MultiPaneChallengeLayout_Layout_layout_childType android:layout_childType} Some child types have special behavior.
{@link #MultiPaneChallengeLayout_Layout_layout_gravity android:layout_gravity} Standard gravity constant that a child supplies to its parent.
{@link #MultiPaneChallengeLayout_Layout_layout_maxHeight android:layout_maxHeight} The maximum valid height for this item.
{@link #MultiPaneChallengeLayout_Layout_layout_maxWidth android:layout_maxWidth}
- @see #MultiPaneChallengeLayout_Layout_layout_centerWithinArea - @see #MultiPaneChallengeLayout_Layout_layout_childType - @see #MultiPaneChallengeLayout_Layout_layout_gravity - @see #MultiPaneChallengeLayout_Layout_layout_maxHeight - @see #MultiPaneChallengeLayout_Layout_layout_maxWidth - */ - public static final int[] MultiPaneChallengeLayout_Layout = { - 0x010100b3, 0x0101045f, 0x01010479, 0x0101047a, - 0x0101047b}; - /** -

- @attr description - Percentage of the screen this child should consume or center within. - If 0/default, the view will be measured by standard rules - as if this were a FrameLayout. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:layout_centerWithinArea - */ - public static final int MultiPaneChallengeLayout_Layout_layout_centerWithinArea = 3; - /** -

- @attr description - Some child types have special behavior. - - -

Must be one of the following constant values.

- - - - - - - - - - - - - -
ConstantValueDescription
none0 No special behavior. Layout will proceed as normal.
widget1 Widget container. - This will be resized in response to certain events.
challenge2 Security challenge container. - This will be dismissed/shown in response to certain events, - possibly obscuring widget elements.
userSwitcher3 User switcher. - This will consume space from the total layout area.
scrim4 Scrim. This will block access to child views that - come before it in the child list in bouncer mode.
widgets5 The home for widgets. All widgets will be descendents of this.
expandChallengeHandle6 This is a handle that is used for expanding the - security challenge container when it is collapsed.
pageDeleteDropTarget7 Delete drop target. This will be the drop target to delete pages.
-

This is a private symbol. - @attr name com.android.internal:layout_childType - */ - public static final int MultiPaneChallengeLayout_Layout_layout_childType = 2; - /** -

- @attr description - Standard gravity constant that a child supplies to its parent. - Defines how the child view should be positioned, on both the X and Y axes, within its enclosing layout. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_gravity}. - @attr name android:layout_gravity - */ - public static final int MultiPaneChallengeLayout_Layout_layout_gravity = 0; - /** -

- @attr description - The maximum valid height for this item. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - -
ConstantValueDescription
unbounded-1 Indicates that the view may be resized arbitrarily large.
-

This is a private symbol. - @attr name com.android.internal:layout_maxHeight - */ - public static final int MultiPaneChallengeLayout_Layout_layout_maxHeight = 1; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#layout_maxWidth} - attribute's value can be found in the {@link #MultiPaneChallengeLayout_Layout} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name com.android.internal:layout_maxWidth - */ - public static final int MultiPaneChallengeLayout_Layout_layout_maxWidth = 4; - /** - Attributes that can be used with a MultiSelectListPreference. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #MultiSelectListPreference_entries android:entries} The human-readable array to present as a list.
{@link #MultiSelectListPreference_entryValues android:entryValues} The array to find the value to save for a preference when an entry from - entries is selected.
- @see #MultiSelectListPreference_entries - @see #MultiSelectListPreference_entryValues - */ - public static final int[] MultiSelectListPreference = { - 0x010100b2, 0x010101f8}; - /** -

- @attr description - The human-readable array to present as a list. Each entry must have a corresponding - index in entryValues. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#entries}. - @attr name android:entries - */ - public static final int MultiSelectListPreference_entries = 0; - /** -

- @attr description - The array to find the value to save for a preference when an entry from - entries is selected. If a user clicks the second item in entries, the - second item in this array will be saved to the preference. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#entryValues}. - @attr name android:entryValues - */ - public static final int MultiSelectListPreference_entryValues = 1; - /** - Attributes that can be used with a MultiWaveView. -

Includes the following attributes:

- - - - - - - - - - - - - - - -
AttributeDescription
{@link #MultiWaveView_alwaysTrackFinger android:alwaysTrackFinger} Used when the handle shouldn't wait to be hit before following the finger
{@link #MultiWaveView_chevronDrawables android:chevronDrawables} Drawables to use for chevron animations.
{@link #MultiWaveView_directionDescriptions android:directionDescriptions} Reference to an array resource that be used to announce the directions with targets around the circle.
{@link #MultiWaveView_feedbackCount android:feedbackCount} Number of waves/chevrons to show in animation.
{@link #MultiWaveView_handleDrawable android:handleDrawable} Sets a drawable as the drag center.
{@link #MultiWaveView_outerRadius android:outerRadius} Outer radius of target circle.
{@link #MultiWaveView_snapMargin android:snapMargin} How close we need to be before snapping to a target.
{@link #MultiWaveView_targetDescriptions android:targetDescriptions} Reference to an array resource that be used as description for the targets around the circle.
{@link #MultiWaveView_targetDrawables android:targetDrawables} Reference to an array resource that be shown as targets around a circle.
{@link #MultiWaveView_vibrationDuration android:vibrationDuration} Tactile feedback duration for actions.
{@link #MultiWaveView_waveDrawable android:waveDrawable} Drawable to use for wave ripple animation.
- @see #MultiWaveView_alwaysTrackFinger - @see #MultiWaveView_chevronDrawables - @see #MultiWaveView_directionDescriptions - @see #MultiWaveView_feedbackCount - @see #MultiWaveView_handleDrawable - @see #MultiWaveView_outerRadius - @see #MultiWaveView_snapMargin - @see #MultiWaveView_targetDescriptions - @see #MultiWaveView_targetDrawables - @see #MultiWaveView_vibrationDuration - @see #MultiWaveView_waveDrawable - */ - public static final int[] MultiWaveView = { - 0x010103a0, 0x010103a1, 0x01010456, 0x01010457, - 0x01010458, 0x01010459, 0x0101045a, 0x0101045b, - 0x0101045c, 0x0101045d, 0x0101045e}; - /** -

- @attr description - Used when the handle shouldn't wait to be hit before following the finger - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:alwaysTrackFinger - */ - public static final int MultiWaveView_alwaysTrackFinger = 10; - /** -

- @attr description - Drawables to use for chevron animations. May be null. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:chevronDrawables - */ - public static final int MultiWaveView_chevronDrawables = 4; - /** -

- @attr description - Reference to an array resource that be used to announce the directions with targets around the circle. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#directionDescriptions}. - @attr name android:directionDescriptions - */ - public static final int MultiWaveView_directionDescriptions = 1; - /** -

- @attr description - Number of waves/chevrons to show in animation. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:feedbackCount - */ - public static final int MultiWaveView_feedbackCount = 9; - /** -

- @attr description - Sets a drawable as the drag center. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:handleDrawable - */ - public static final int MultiWaveView_handleDrawable = 3; - /** -

- @attr description - Outer radius of target circle. Icons will be drawn on this circle. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:outerRadius - */ - public static final int MultiWaveView_outerRadius = 6; - /** -

- @attr description - How close we need to be before snapping to a target. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:snapMargin - */ - public static final int MultiWaveView_snapMargin = 8; - /** -

- @attr description - Reference to an array resource that be used as description for the targets around the circle. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#targetDescriptions}. - @attr name android:targetDescriptions - */ - public static final int MultiWaveView_targetDescriptions = 0; - /** -

- @attr description - Reference to an array resource that be shown as targets around a circle. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:targetDrawables - */ - public static final int MultiWaveView_targetDrawables = 2; - /** -

- @attr description - Tactile feedback duration for actions. Set to '0' for no vibration. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:vibrationDuration - */ - public static final int MultiWaveView_vibrationDuration = 7; - /** -

- @attr description - Drawable to use for wave ripple animation. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:waveDrawable - */ - public static final int MultiWaveView_waveDrawable = 5; - /** - Drawable used to draw 9-patches. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #NinePatchDrawable_autoMirrored android:autoMirrored} Indicates if the drawable needs to be mirrored when its layout direction is - RTL (right-to-left).
{@link #NinePatchDrawable_dither android:dither} Enables or disables dithering of the bitmap if the bitmap does not have the - same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with - an RGB 565 screen).
{@link #NinePatchDrawable_src android:src} Identifier of the bitmap file.
- @see #NinePatchDrawable_autoMirrored - @see #NinePatchDrawable_dither - @see #NinePatchDrawable_src - */ - public static final int[] NinePatchDrawable = { - 0x01010119, 0x0101011c, 0x010103ea}; - /** -

- @attr description - Indicates if the drawable needs to be mirrored when its layout direction is - RTL (right-to-left). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#autoMirrored}. - @attr name android:autoMirrored - */ - public static final int NinePatchDrawable_autoMirrored = 2; - /** -

- @attr description - Enables or disables dithering of the bitmap if the bitmap does not have the - same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with - an RGB 565 screen). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dither}. - @attr name android:dither - */ - public static final int NinePatchDrawable_dither = 1; - /** -

- @attr description - Identifier of the bitmap file. This attribute is mandatory. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#src}. - @attr name android:src - */ - public static final int NinePatchDrawable_src = 0; - /** - Attributes that can be used with a NumPadKey. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #NumPadKey_digit android:digit}
{@link #NumPadKey_textView android:textView}
- @see #NumPadKey_digit - @see #NumPadKey_textView - */ - public static final int[] NumPadKey = { - 0x0101047c, 0x0101047d}; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#digit} - attribute's value can be found in the {@link #NumPadKey} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name com.android.internal:digit - */ - public static final int NumPadKey_digit = 0; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#textView} - attribute's value can be found in the {@link #NumPadKey} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name com.android.internal:textView - */ - public static final int NumPadKey_textView = 1; - /** - Attributes that can be used with a NumberPicker. -

Includes the following attributes:

- - - - - - - - - - - - - - -
AttributeDescription
{@link #NumberPicker_internalLayout android:internalLayout} @hide The layout of the number picker.
{@link #NumberPicker_internalMaxHeight android:internalMaxHeight} @hide The max height of the NumberPicker.
{@link #NumberPicker_internalMaxWidth android:internalMaxWidth} @hide The max width of the NumberPicker.
{@link #NumberPicker_internalMinHeight android:internalMinHeight} @hide The min height of the NumberPicker.
{@link #NumberPicker_internalMinWidth android:internalMinWidth} @hide The min width of the NumberPicker.
{@link #NumberPicker_selectionDivider android:selectionDivider} @hide The divider for making the selection area.
{@link #NumberPicker_selectionDividerHeight android:selectionDividerHeight} @hide The height of the selection divider.
{@link #NumberPicker_selectionDividersDistance android:selectionDividersDistance} @hide The distance between the two selection dividers.
{@link #NumberPicker_solidColor android:solidColor} @hide Color for the solid color background if such for optimized rendering.
{@link #NumberPicker_virtualButtonPressedDrawable android:virtualButtonPressedDrawable} @hide The drawable for pressed virtual (increment/decrement) buttons.
- @see #NumberPicker_internalLayout - @see #NumberPicker_internalMaxHeight - @see #NumberPicker_internalMaxWidth - @see #NumberPicker_internalMinHeight - @see #NumberPicker_internalMinWidth - @see #NumberPicker_selectionDivider - @see #NumberPicker_selectionDividerHeight - @see #NumberPicker_selectionDividersDistance - @see #NumberPicker_solidColor - @see #NumberPicker_virtualButtonPressedDrawable - */ - public static final int[] NumberPicker = { - 0x0101034a, 0x0101043c, 0x01010442, 0x01010443, - 0x01010444, 0x01010445, 0x01010446, 0x01010447, - 0x01010448, 0x01010449}; - /** -

- @attr description - @hide The layout of the number picker. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:internalLayout - */ - public static final int NumberPicker_internalLayout = 1; - /** -

- @attr description - @hide The max height of the NumberPicker. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:internalMaxHeight - */ - public static final int NumberPicker_internalMaxHeight = 6; - /** -

- @attr description - @hide The max width of the NumberPicker. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:internalMaxWidth - */ - public static final int NumberPicker_internalMaxWidth = 8; - /** -

- @attr description - @hide The min height of the NumberPicker. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:internalMinHeight - */ - public static final int NumberPicker_internalMinHeight = 5; - /** -

- @attr description - @hide The min width of the NumberPicker. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:internalMinWidth - */ - public static final int NumberPicker_internalMinWidth = 7; - /** -

- @attr description - @hide The divider for making the selection area. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:selectionDivider - */ - public static final int NumberPicker_selectionDivider = 2; - /** -

- @attr description - @hide The height of the selection divider. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:selectionDividerHeight - */ - public static final int NumberPicker_selectionDividerHeight = 3; - /** -

- @attr description - @hide The distance between the two selection dividers. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:selectionDividersDistance - */ - public static final int NumberPicker_selectionDividersDistance = 4; - /** -

- @attr description - @hide Color for the solid color background if such for optimized rendering. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#solidColor}. - @attr name android:solidColor - */ - public static final int NumberPicker_solidColor = 0; - /** -

- @attr description - @hide The drawable for pressed virtual (increment/decrement) buttons. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:virtualButtonPressedDrawable - */ - public static final int NumberPicker_virtualButtonPressedDrawable = 9; - /** - Use offhost-apdu-service as the root tag of the XML resource that - describes an {@link android.nfc.cardemulation.OffHostApduService} - service, which is referenced from its - {@link android.nfc.cardemulation.OffHostApduService#SERVICE_META_DATA} entry. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #OffHostApduService_apduServiceBanner android:apduServiceBanner} A drawable that can be rendered in Android's system UI for representing - the service.
{@link #OffHostApduService_description android:description} Short description of the functionality the service implements.
- @see #OffHostApduService_apduServiceBanner - @see #OffHostApduService_description - */ - public static final int[] OffHostApduService = { - 0x01010020, 0x010103ed}; - /** -

- @attr description - A drawable that can be rendered in Android's system UI for representing - the service. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#apduServiceBanner}. - @attr name android:apduServiceBanner - */ - public static final int OffHostApduService_apduServiceBanner = 1; - /** -

- @attr description - Short description of the functionality the service implements. This attribute - is mandatory. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#description}. - @attr name android:description - */ - public static final int OffHostApduService_description = 0; - /** - Attributes that can be used with a OvershootInterpolator. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #OvershootInterpolator_tension android:tension} This is the amount of tension.
- @see #OvershootInterpolator_tension - */ - public static final int[] OvershootInterpolator = { - 0x0101026a}; - /** -

- @attr description - This is the amount of tension. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#tension}. - @attr name android:tension - */ - public static final int OvershootInterpolator_tension = 0; - /** - PagedView specific attributes. These attributes are used to customize - a PagedView view in XML files. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #PagedView_pageSpacing android:pageSpacing} The space between adjacent pages of the PagedView.
{@link #PagedView_scrollIndicatorPaddingLeft android:scrollIndicatorPaddingLeft} The padding for the scroll indicator area
{@link #PagedView_scrollIndicatorPaddingRight android:scrollIndicatorPaddingRight}
- @see #PagedView_pageSpacing - @see #PagedView_scrollIndicatorPaddingLeft - @see #PagedView_scrollIndicatorPaddingRight - */ - public static final int[] PagedView = { - 0x01010472, 0x01010473, 0x01010474}; - /** -

- @attr description - The space between adjacent pages of the PagedView. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:pageSpacing - */ - public static final int PagedView_pageSpacing = 0; - /** -

- @attr description - The padding for the scroll indicator area - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:scrollIndicatorPaddingLeft - */ - public static final int PagedView_scrollIndicatorPaddingLeft = 1; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#scrollIndicatorPaddingRight} - attribute's value can be found in the {@link #PagedView} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name com.android.internal:scrollIndicatorPaddingRight - */ - public static final int PagedView_scrollIndicatorPaddingRight = 2; - /** - Attributes that can be used with a Pointer. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #Pointer_pointerIconArrow android:pointerIconArrow} Reference to a pointer icon drawable with STYLE_ARROW
{@link #Pointer_pointerIconSpotAnchor android:pointerIconSpotAnchor} Reference to a pointer icon drawable with STYLE_SPOT_ANCHOR
{@link #Pointer_pointerIconSpotHover android:pointerIconSpotHover} Reference to a pointer icon drawable with STYLE_SPOT_HOVER
{@link #Pointer_pointerIconSpotTouch android:pointerIconSpotTouch} Reference to a pointer icon drawable with STYLE_SPOT_TOUCH
- @see #Pointer_pointerIconArrow - @see #Pointer_pointerIconSpotAnchor - @see #Pointer_pointerIconSpotHover - @see #Pointer_pointerIconSpotTouch - */ - public static final int[] Pointer = { - 0x01010462, 0x01010463, 0x01010464, 0x01010465}; - /** -

- @attr description - Reference to a pointer icon drawable with STYLE_ARROW - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:pointerIconArrow - */ - public static final int Pointer_pointerIconArrow = 0; - /** -

- @attr description - Reference to a pointer icon drawable with STYLE_SPOT_ANCHOR - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:pointerIconSpotAnchor - */ - public static final int Pointer_pointerIconSpotAnchor = 3; - /** -

- @attr description - Reference to a pointer icon drawable with STYLE_SPOT_HOVER - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:pointerIconSpotHover - */ - public static final int Pointer_pointerIconSpotHover = 1; - /** -

- @attr description - Reference to a pointer icon drawable with STYLE_SPOT_TOUCH - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:pointerIconSpotTouch - */ - public static final int Pointer_pointerIconSpotTouch = 2; - /** - Attributes that can be used with a PointerIcon. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #PointerIcon_bitmap android:bitmap} Drawable to use as the icon bitmap.
{@link #PointerIcon_hotSpotX android:hotSpotX} X coordinate of the icon hot spot.
{@link #PointerIcon_hotSpotY android:hotSpotY} Y coordinate of the icon hot spot.
- @see #PointerIcon_bitmap - @see #PointerIcon_hotSpotX - @see #PointerIcon_hotSpotY - */ - public static final int[] PointerIcon = { - 0x01010466, 0x01010467, 0x01010468}; - /** -

- @attr description - Drawable to use as the icon bitmap. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:bitmap - */ - public static final int PointerIcon_bitmap = 0; - /** -

- @attr description - X coordinate of the icon hot spot. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:hotSpotX - */ - public static final int PointerIcon_hotSpotX = 1; - /** -

- @attr description - Y coordinate of the icon hot spot. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:hotSpotY - */ - public static final int PointerIcon_hotSpotY = 2; - /** - Attributes that can be used with a PopupWindow. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #PopupWindow_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_popupBackground android:popupBackground}
- @see #PopupWindow_popupAnimationStyle - @see #PopupWindow_popupBackground - */ - public static final int[] PopupWindow = { - 0x01010176, 0x010102c9}; - /** -

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} - attribute's value can be found in the {@link #PopupWindow} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name android:popupAnimationStyle - */ - public static final int PopupWindow_popupAnimationStyle = 1; - /** -

This symbol is the offset where the {@link android.R.attr#popupBackground} - attribute's value can be found in the {@link #PopupWindow} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". - @attr name android:popupBackground - */ - public static final int PopupWindow_popupBackground = 0; - /** - Attributes that can be used with a PopupWindowBackgroundState. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor android:state_above_anchor} State identifier indicating the popup will be above the anchor.
- @see #PopupWindowBackgroundState_state_above_anchor - */ - public static final int[] PopupWindowBackgroundState = { - 0x010100aa}; - /** -

- @attr description - State identifier indicating the popup will be above the anchor. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_above_anchor}. - @attr name android:state_above_anchor - */ - public static final int PopupWindowBackgroundState_state_above_anchor = 0; - /** - Base attributes available to Preference. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #Preference_defaultValue android:defaultValue} The default value for the preference, which will be set either if persistence - is off or persistence is on and the preference is not found in the persistent - storage.
{@link #Preference_dependency android:dependency} The key of another Preference that this Preference will depend on.
{@link #Preference_enabled android:enabled} Whether the Preference is enabled.
{@link #Preference_fragment android:fragment} When used inside of a modern PreferenceActivity, this declares - a new PreferenceFragment to be shown when the user selects this item.
{@link #Preference_icon android:icon} The optional icon for the preference
{@link #Preference_key android:key} The key to store the Preference value.
{@link #Preference_layout android:layout} The layout for the Preference in a PreferenceActivity screen.
{@link #Preference_order android:order} The order for the Preference (lower values are to be ordered first).
{@link #Preference_persistent android:persistent} Whether the Preference stores its value to the shared preferences.
{@link #Preference_selectable android:selectable} Whether the Preference is selectable.
{@link #Preference_shouldDisableView android:shouldDisableView} Whether the view of this Preference should be disabled when - this Preference is disabled.
{@link #Preference_summary android:summary} The summary for the Preference in a PreferenceActivity screen.
{@link #Preference_title android:title} The title for the Preference in a PreferenceActivity screen.
{@link #Preference_widgetLayout android:widgetLayout} The layout for the controllable widget portion of a Preference.
- @see #Preference_defaultValue - @see #Preference_dependency - @see #Preference_enabled - @see #Preference_fragment - @see #Preference_icon - @see #Preference_key - @see #Preference_layout - @see #Preference_order - @see #Preference_persistent - @see #Preference_selectable - @see #Preference_shouldDisableView - @see #Preference_summary - @see #Preference_title - @see #Preference_widgetLayout - */ - public static final int[] Preference = { - 0x01010002, 0x0101000d, 0x0101000e, 0x010100f2, - 0x010101e1, 0x010101e6, 0x010101e8, 0x010101e9, - 0x010101ea, 0x010101eb, 0x010101ec, 0x010101ed, - 0x010101ee, 0x010102e3}; - /** -

- @attr description - The default value for the preference, which will be set either if persistence - is off or persistence is on and the preference is not found in the persistent - storage. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

May be an integer value, such as "100". -

May be a boolean value, either "true" or "false". -

May be a floating point value, such as "1.2". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#defaultValue}. - @attr name android:defaultValue - */ - public static final int Preference_defaultValue = 11; - /** -

- @attr description - The key of another Preference that this Preference will depend on. If the other - Preference is not set or is off, this Preference will be disabled. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dependency}. - @attr name android:dependency - */ - public static final int Preference_dependency = 10; - /** -

- @attr description - Whether the Preference is enabled. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#enabled}. - @attr name android:enabled - */ - public static final int Preference_enabled = 2; - /** -

- @attr description - When used inside of a modern PreferenceActivity, this declares - a new PreferenceFragment to be shown when the user selects this item. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fragment}. - @attr name android:fragment - */ - public static final int Preference_fragment = 13; - /** -

- @attr description - The optional icon for the preference - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int Preference_icon = 0; - /** -

- @attr description - The key to store the Preference value. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#key}. - @attr name android:key - */ - public static final int Preference_key = 6; - /** -

- @attr description - The layout for the Preference in a PreferenceActivity screen. This should - rarely need to be changed, look at widgetLayout instead. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout}. - @attr name android:layout - */ - public static final int Preference_layout = 3; - /** -

- @attr description - The order for the Preference (lower values are to be ordered first). If this is not - specified, the default orderin will be alphabetic. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#order}. - @attr name android:order - */ - public static final int Preference_order = 8; - /** -

- @attr description - Whether the Preference stores its value to the shared preferences. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#persistent}. - @attr name android:persistent - */ - public static final int Preference_persistent = 1; - /** -

- @attr description - Whether the Preference is selectable. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#selectable}. - @attr name android:selectable - */ - public static final int Preference_selectable = 5; - /** -

- @attr description - Whether the view of this Preference should be disabled when - this Preference is disabled. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#shouldDisableView}. - @attr name android:shouldDisableView - */ - public static final int Preference_shouldDisableView = 12; - /** -

- @attr description - The summary for the Preference in a PreferenceActivity screen. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#summary}. - @attr name android:summary - */ - public static final int Preference_summary = 7; - /** -

- @attr description - The title for the Preference in a PreferenceActivity screen. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#title}. - @attr name android:title - */ - public static final int Preference_title = 4; - /** -

- @attr description - The layout for the controllable widget portion of a Preference. This is inflated - into the layout for a Preference and should be used more frequently than - the layout attribute. For example, a checkbox preference would specify - a custom layout (consisting of just the CheckBox) here. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#widgetLayout}. - @attr name android:widgetLayout - */ - public static final int Preference_widgetLayout = 9; - /** - Attributes that can be used with a PreferenceFrameLayout. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #PreferenceFrameLayout_borderBottom android:borderBottom} Padding to use at the bottom of the prefs content.
{@link #PreferenceFrameLayout_borderLeft android:borderLeft} Padding to use at the left of the prefs content.
{@link #PreferenceFrameLayout_borderRight android:borderRight} Padding to use at the right of the prefs content.
{@link #PreferenceFrameLayout_borderTop android:borderTop} Padding to use at the top of the prefs content.
- @see #PreferenceFrameLayout_borderBottom - @see #PreferenceFrameLayout_borderLeft - @see #PreferenceFrameLayout_borderRight - @see #PreferenceFrameLayout_borderTop - */ - public static final int[] PreferenceFrameLayout = { - 0x01010430, 0x01010431, 0x01010432, 0x01010433}; - /** -

- @attr description - Padding to use at the bottom of the prefs content. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:borderBottom - */ - public static final int PreferenceFrameLayout_borderBottom = 1; - /** -

- @attr description - Padding to use at the left of the prefs content. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:borderLeft - */ - public static final int PreferenceFrameLayout_borderLeft = 2; - /** -

- @attr description - Padding to use at the right of the prefs content. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:borderRight - */ - public static final int PreferenceFrameLayout_borderRight = 3; - /** -

- @attr description - Padding to use at the top of the prefs content. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:borderTop - */ - public static final int PreferenceFrameLayout_borderTop = 0; - /** - Attributes that can be used with a PreferenceFrameLayout_Layout. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #PreferenceFrameLayout_Layout_layout_removeBorders android:layout_removeBorders} Padding to use at the top of the prefs content.
- @see #PreferenceFrameLayout_Layout_layout_removeBorders - */ - public static final int[] PreferenceFrameLayout_Layout = { - 0x01010434}; - /** -

- @attr description - Padding to use at the top of the prefs content. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:layout_removeBorders - */ - public static final int PreferenceFrameLayout_Layout_layout_removeBorders = 0; - /** - Base attributes available to PreferenceGroup. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #PreferenceGroup_orderingFromXml android:orderingFromXml} Whether to order the Preference under this group as they appear in the XML file.
- @see #PreferenceGroup_orderingFromXml - */ - public static final int[] PreferenceGroup = { - 0x010101e7}; - /** -

- @attr description - Whether to order the Preference under this group as they appear in the XML file. - If this is false, the ordering will follow the Preference order attribute and - default to alphabetic for those without the order attribute. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#orderingFromXml}. - @attr name android:orderingFromXml - */ - public static final int PreferenceGroup_orderingFromXml = 0; - /** - Attribute for a header describing the item shown in the top-level list - from which the selects the set of preference to dig in to. -

Includes the following attributes:

- - - - - - - - - - - -
AttributeDescription
{@link #PreferenceHeader_breadCrumbShortTitle android:breadCrumbShortTitle} The short title for the bread crumb of this item.
{@link #PreferenceHeader_breadCrumbTitle android:breadCrumbTitle} The title for the bread crumb of this item.
{@link #PreferenceHeader_fragment android:fragment} The fragment that is displayed when the user selects this item.
{@link #PreferenceHeader_icon android:icon} An icon for the item.
{@link #PreferenceHeader_id android:id} Identifier value for the header.
{@link #PreferenceHeader_summary android:summary} The summary for the item.
{@link #PreferenceHeader_title android:title} The title of the item that is shown to the user.
- @see #PreferenceHeader_breadCrumbShortTitle - @see #PreferenceHeader_breadCrumbTitle - @see #PreferenceHeader_fragment - @see #PreferenceHeader_icon - @see #PreferenceHeader_id - @see #PreferenceHeader_summary - @see #PreferenceHeader_title - */ - public static final int[] PreferenceHeader = { - 0x01010002, 0x010100d0, 0x010101e1, 0x010101e9, - 0x010102e3, 0x01010303, 0x01010304}; - /** -

- @attr description - The short title for the bread crumb of this item. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#breadCrumbShortTitle}. - @attr name android:breadCrumbShortTitle - */ - public static final int PreferenceHeader_breadCrumbShortTitle = 6; - /** -

- @attr description - The title for the bread crumb of this item. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#breadCrumbTitle}. - @attr name android:breadCrumbTitle - */ - public static final int PreferenceHeader_breadCrumbTitle = 5; - /** -

- @attr description - The fragment that is displayed when the user selects this item. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fragment}. - @attr name android:fragment - */ - public static final int PreferenceHeader_fragment = 4; - /** -

- @attr description - An icon for the item. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int PreferenceHeader_icon = 0; - /** -

- @attr description - Identifier value for the header. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#id}. - @attr name android:id - */ - public static final int PreferenceHeader_id = 1; - /** -

- @attr description - The summary for the item. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#summary}. - @attr name android:summary - */ - public static final int PreferenceHeader_summary = 3; - /** -

- @attr description - The title of the item that is shown to the user. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#title}. - @attr name android:title - */ - public static final int PreferenceHeader_title = 2; - /** - Use print-service as the root tag of the XML resource that - describes an {@link android.printservice.PrintService} service, which is - referenced from its {@link android.printservice.PrintService#SERVICE_META_DATA} - meta-data entry. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #PrintService_addPrintersActivity android:addPrintersActivity} Fully qualified class name of an activity that allows the user to manually - add printers to this print service.
{@link #PrintService_advancedPrintOptionsActivity android:advancedPrintOptionsActivity} Fully qualified class name of an activity with advanced print options - specific to this print service.
{@link #PrintService_settingsActivity android:settingsActivity} Fully qualified class name of an activity that allows the user to modify - the settings for this service.
{@link #PrintService_vendor android:vendor} The vendor name if this print service is vendor specific.
- @see #PrintService_addPrintersActivity - @see #PrintService_advancedPrintOptionsActivity - @see #PrintService_settingsActivity - @see #PrintService_vendor - */ - public static final int[] PrintService = { - 0x01010225, 0x010103e6, 0x010103e7, 0x010103f1}; - /** -

- @attr description - Fully qualified class name of an activity that allows the user to manually - add printers to this print service. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#addPrintersActivity}. - @attr name android:addPrintersActivity - */ - public static final int PrintService_addPrintersActivity = 1; - /** -

- @attr description - Fully qualified class name of an activity with advanced print options - specific to this print service. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#advancedPrintOptionsActivity}. - @attr name android:advancedPrintOptionsActivity - */ - public static final int PrintService_advancedPrintOptionsActivity = 3; - /** -

- @attr description - Fully qualified class name of an activity that allows the user to modify - the settings for this service. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#settingsActivity}. - @attr name android:settingsActivity - */ - public static final int PrintService_settingsActivity = 0; - /** -

- @attr description - The vendor name if this print service is vendor specific. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#vendor}. - @attr name android:vendor - */ - public static final int PrintService_vendor = 2; - /** - Attributes that can be used with a ProgressBar. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #ProgressBar_animationResolution android:animationResolution} Timeout between frames of animation in milliseconds - {@deprecated Not used by the framework.}
{@link #ProgressBar_indeterminate android:indeterminate} Allows to enable the indeterminate mode.
{@link #ProgressBar_indeterminateBehavior android:indeterminateBehavior} Defines how the indeterminate mode should behave when the progress - reaches max.
{@link #ProgressBar_indeterminateDrawable android:indeterminateDrawable} Drawable used for the indeterminate mode.
{@link #ProgressBar_indeterminateDuration android:indeterminateDuration} Duration of the indeterminate animation.
{@link #ProgressBar_indeterminateOnly android:indeterminateOnly} Restricts to ONLY indeterminate mode (state-keeping progress mode will not work).
{@link #ProgressBar_interpolator android:interpolator}
{@link #ProgressBar_max android:max} Defines the maximum value the progress can take.
{@link #ProgressBar_maxHeight android:maxHeight} An optional argument to supply a maximum height for this view.
{@link #ProgressBar_maxWidth android:maxWidth} An optional argument to supply a maximum width for this view.
{@link #ProgressBar_minHeight android:minHeight}
{@link #ProgressBar_minWidth android:minWidth}
{@link #ProgressBar_mirrorForRtl android:mirrorForRtl} Defines if the associated drawables need to be mirrored when in RTL mode.
{@link #ProgressBar_progress android:progress} Defines the default progress value, between 0 and max.
{@link #ProgressBar_progressDrawable android:progressDrawable} Drawable used for the progress mode.
{@link #ProgressBar_secondaryProgress android:secondaryProgress} Defines the secondary progress value, between 0 and max.
- @see #ProgressBar_animationResolution - @see #ProgressBar_indeterminate - @see #ProgressBar_indeterminateBehavior - @see #ProgressBar_indeterminateDrawable - @see #ProgressBar_indeterminateDuration - @see #ProgressBar_indeterminateOnly - @see #ProgressBar_interpolator - @see #ProgressBar_max - @see #ProgressBar_maxHeight - @see #ProgressBar_maxWidth - @see #ProgressBar_minHeight - @see #ProgressBar_minWidth - @see #ProgressBar_mirrorForRtl - @see #ProgressBar_progress - @see #ProgressBar_progressDrawable - @see #ProgressBar_secondaryProgress - */ - public static final int[] ProgressBar = { - 0x0101011f, 0x01010120, 0x01010136, 0x01010137, - 0x01010138, 0x01010139, 0x0101013a, 0x0101013b, - 0x0101013c, 0x0101013d, 0x0101013e, 0x0101013f, - 0x01010140, 0x01010141, 0x0101031a, 0x010103ce}; - /** -

- @attr description - Timeout between frames of animation in milliseconds - {@deprecated Not used by the framework.} - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#animationResolution}. - @attr name android:animationResolution - */ - @Deprecated - public static final int ProgressBar_animationResolution = 14; - /** -

- @attr description - Allows to enable the indeterminate mode. In this mode the progress - bar plays an infinite looping animation. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#indeterminate}. - @attr name android:indeterminate - */ - public static final int ProgressBar_indeterminate = 5; - /** -

- @attr description - Defines how the indeterminate mode should behave when the progress - reaches max. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
repeat1 Progress starts over from 0.
cycle2 Progress keeps the current value and goes back to 0.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#indeterminateBehavior}. - @attr name android:indeterminateBehavior - */ - public static final int ProgressBar_indeterminateBehavior = 10; - /** -

- @attr description - Drawable used for the indeterminate mode. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#indeterminateDrawable}. - @attr name android:indeterminateDrawable - */ - public static final int ProgressBar_indeterminateDrawable = 7; - /** -

- @attr description - Duration of the indeterminate animation. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#indeterminateDuration}. - @attr name android:indeterminateDuration - */ - public static final int ProgressBar_indeterminateDuration = 9; - /** -

- @attr description - Restricts to ONLY indeterminate mode (state-keeping progress mode will not work). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#indeterminateOnly}. - @attr name android:indeterminateOnly - */ - public static final int ProgressBar_indeterminateOnly = 6; - /** -

This symbol is the offset where the {@link android.R.attr#interpolator} - attribute's value can be found in the {@link #ProgressBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name android:interpolator - */ - public static final int ProgressBar_interpolator = 13; - /** -

- @attr description - Defines the maximum value the progress can take. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#max}. - @attr name android:max - */ - public static final int ProgressBar_max = 2; - /** -

- @attr description - An optional argument to supply a maximum height for this view. - See {see android.widget.ImageView#setMaxHeight} for details. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#maxHeight}. - @attr name android:maxHeight - */ - public static final int ProgressBar_maxHeight = 1; - /** -

- @attr description - An optional argument to supply a maximum width for this view. - See {see android.widget.ImageView#setMaxWidth} for details. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#maxWidth}. - @attr name android:maxWidth - */ - public static final int ProgressBar_maxWidth = 0; - /** -

This symbol is the offset where the {@link android.R.attr#minHeight} - attribute's value can be found in the {@link #ProgressBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:minHeight - */ - public static final int ProgressBar_minHeight = 12; - /** -

This symbol is the offset where the {@link android.R.attr#minWidth} - attribute's value can be found in the {@link #ProgressBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:minWidth - */ - public static final int ProgressBar_minWidth = 11; - /** -

- @attr description - Defines if the associated drawables need to be mirrored when in RTL mode. - Default is false - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#mirrorForRtl}. - @attr name android:mirrorForRtl - */ - public static final int ProgressBar_mirrorForRtl = 15; - /** -

- @attr description - Defines the default progress value, between 0 and max. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#progress}. - @attr name android:progress - */ - public static final int ProgressBar_progress = 3; - /** -

- @attr description - Drawable used for the progress mode. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#progressDrawable}. - @attr name android:progressDrawable - */ - public static final int ProgressBar_progressDrawable = 8; - /** -

- @attr description - Defines the secondary progress value, between 0 and max. This progress is drawn between - the primary progress and the background. It can be ideal for media scenarios such as - showing the buffering progress while the default progress shows the play progress. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#secondaryProgress}. - @attr name android:secondaryProgress - */ - public static final int ProgressBar_secondaryProgress = 4; - /** - Attributes that can be used with a PropertyAnimator. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #PropertyAnimator_propertyName android:propertyName} Name of the property being animated.
- @see #PropertyAnimator_propertyName - */ - public static final int[] PropertyAnimator = { - 0x010102e1}; - /** -

- @attr description - Name of the property being animated. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#propertyName}. - @attr name android:propertyName - */ - public static final int PropertyAnimator_propertyName = 0; - /** - Attributes that can be used with a PublicKey. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #PublicKey_value android:value} Concrete value to assign to this piece of named meta-data.
- @see #PublicKey_value - */ - public static final int[] PublicKey = { - 0x01010024}; - /** -

- @attr description - Concrete value to assign to this piece of named meta-data. - The data can later be retrieved from the meta data Bundle - through {@link android.os.Bundle#getString Bundle.getString}, - {@link android.os.Bundle#getInt Bundle.getInt}, - {@link android.os.Bundle#getBoolean Bundle.getBoolean}, - or {@link android.os.Bundle#getFloat Bundle.getFloat} depending - on the type used here. - - -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

May be an integer value, such as "100". -

May be a boolean value, either "true" or "false". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

May be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#value}. - @attr name android:value - */ - public static final int PublicKey_value = 0; - /** - Attributes that can be used with a QuickContactBadge. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #QuickContactBadge_quickContactWindowSize android:quickContactWindowSize}
- @see #QuickContactBadge_quickContactWindowSize - */ - public static final int[] QuickContactBadge = { - 0x0101043d}; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#quickContactWindowSize} - attribute's value can be found in the {@link #QuickContactBadge} array. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
modeSmall1
modeMedium2
modeLarge3
- @attr name com.android.internal:quickContactWindowSize - */ - public static final int QuickContactBadge_quickContactWindowSize = 0; - /** - Attributes that can be used with a RadioGroup. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #RadioGroup_checkedButton android:checkedButton} The id of the child radio button that should be checked by default - within this radio group.
{@link #RadioGroup_orientation android:orientation} Should the radio group be a column or a row? Use "horizontal" - for a row, "vertical" for a column.
- @see #RadioGroup_checkedButton - @see #RadioGroup_orientation - */ - public static final int[] RadioGroup = { - 0x010100c4, 0x01010148}; - /** -

- @attr description - The id of the child radio button that should be checked by default - within this radio group. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#checkedButton}. - @attr name android:checkedButton - */ - public static final int RadioGroup_checkedButton = 1; - /** -

- @attr description - Should the radio group be a column or a row? Use "horizontal" - for a row, "vertical" for a column. The default is - vertical. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
horizontal0 Defines an horizontal widget.
vertical1 Defines a vertical widget.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#orientation}. - @attr name android:orientation - */ - public static final int RadioGroup_orientation = 0; - /** - Attributes that can be used with a RatingBar. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #RatingBar_isIndicator android:isIndicator} Whether this rating bar is an indicator (and non-changeable by the user).
{@link #RatingBar_numStars android:numStars} The number of stars (or rating items) to show.
{@link #RatingBar_rating android:rating} The rating to set by default.
{@link #RatingBar_stepSize android:stepSize} The step size of the rating.
- @see #RatingBar_isIndicator - @see #RatingBar_numStars - @see #RatingBar_rating - @see #RatingBar_stepSize - */ - public static final int[] RatingBar = { - 0x01010144, 0x01010145, 0x01010146, 0x01010147}; - /** -

- @attr description - Whether this rating bar is an indicator (and non-changeable by the user). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#isIndicator}. - @attr name android:isIndicator - */ - public static final int RatingBar_isIndicator = 3; - /** -

- @attr description - The number of stars (or rating items) to show. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#numStars}. - @attr name android:numStars - */ - public static final int RatingBar_numStars = 0; - /** -

- @attr description - The rating to set by default. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#rating}. - @attr name android:rating - */ - public static final int RatingBar_rating = 1; - /** -

- @attr description - The step size of the rating. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#stepSize}. - @attr name android:stepSize - */ - public static final int RatingBar_stepSize = 2; - /** - Use recognition-service as the root tag of the XML resource that - describes a {@link android.speech.RecognitionService}, which is reference from - its {@link android.speech.RecognitionService#SERVICE_META_DATA} meta-data entry. - Described here are the attributes that can be included in that tag. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #RecognitionService_settingsActivity android:settingsActivity} Component name of an activity that allows the user to modify - the settings for this service.
- @see #RecognitionService_settingsActivity - */ - public static final int[] RecognitionService = { - 0x01010225}; - /** -

- @attr description - Component name of an activity that allows the user to modify - the settings for this service. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#settingsActivity}. - @attr name android:settingsActivity - */ - public static final int RecognitionService_settingsActivity = 0; - /** - Attributes that can be used with a RelativeLayout. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #RelativeLayout_gravity android:gravity} Specifies how an object should position its content, on both the X and Y axes, - within its own bounds.
{@link #RelativeLayout_ignoreGravity android:ignoreGravity} Indicates what view should not be affected by gravity.
- @see #RelativeLayout_gravity - @see #RelativeLayout_ignoreGravity - */ - public static final int[] RelativeLayout = { - 0x010100af, 0x010101ff}; - /** -

- @attr description - Specifies how an object should position its content, on both the X and Y axes, - within its own bounds. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#gravity}. - @attr name android:gravity - */ - public static final int RelativeLayout_gravity = 0; - /** -

- @attr description - Indicates what view should not be affected by gravity. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#ignoreGravity}. - @attr name android:ignoreGravity - */ - public static final int RelativeLayout_ignoreGravity = 1; - /** - Attributes that can be used with a RelativeLayout_Layout. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #RelativeLayout_Layout_layout_above android:layout_above} Positions the bottom edge of this view above the given anchor view ID.
{@link #RelativeLayout_Layout_layout_alignBaseline android:layout_alignBaseline} Positions the baseline of this view on the baseline of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_alignBottom android:layout_alignBottom} Makes the bottom edge of this view match the bottom edge of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_alignEnd android:layout_alignEnd} Makes the end edge of this view match the end edge of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_alignLeft android:layout_alignLeft} Makes the left edge of this view match the left edge of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_alignParentBottom android:layout_alignParentBottom} If true, makes the bottom edge of this view match the bottom edge of the parent.
{@link #RelativeLayout_Layout_layout_alignParentEnd android:layout_alignParentEnd} If true, makes the end edge of this view match the end edge of the parent.
{@link #RelativeLayout_Layout_layout_alignParentLeft android:layout_alignParentLeft} If true, makes the left edge of this view match the left edge of the parent.
{@link #RelativeLayout_Layout_layout_alignParentRight android:layout_alignParentRight} If true, makes the right edge of this view match the right edge of the parent.
{@link #RelativeLayout_Layout_layout_alignParentStart android:layout_alignParentStart} If true, makes the start edge of this view match the start edge of the parent.
{@link #RelativeLayout_Layout_layout_alignParentTop android:layout_alignParentTop} If true, makes the top edge of this view match the top edge of the parent.
{@link #RelativeLayout_Layout_layout_alignRight android:layout_alignRight} Makes the right edge of this view match the right edge of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_alignStart android:layout_alignStart} Makes the start edge of this view match the start edge of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_alignTop android:layout_alignTop} Makes the top edge of this view match the top edge of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_alignWithParentIfMissing android:layout_alignWithParentIfMissing} If set to true, the parent will be used as the anchor when the anchor cannot be - be found for layout_toLeftOf, layout_toRightOf, etc.
{@link #RelativeLayout_Layout_layout_below android:layout_below} Positions the top edge of this view below the given anchor view ID.
{@link #RelativeLayout_Layout_layout_centerHorizontal android:layout_centerHorizontal} If true, centers this child horizontally within its parent.
{@link #RelativeLayout_Layout_layout_centerInParent android:layout_centerInParent} If true, centers this child horizontally and vertically within its parent.
{@link #RelativeLayout_Layout_layout_centerVertical android:layout_centerVertical} If true, centers this child vertically within its parent.
{@link #RelativeLayout_Layout_layout_toEndOf android:layout_toEndOf} Positions the start edge of this view to the end of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_toLeftOf android:layout_toLeftOf} Positions the right edge of this view to the left of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_toRightOf android:layout_toRightOf} Positions the left edge of this view to the right of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_toStartOf android:layout_toStartOf} Positions the end edge of this view to the start of the given anchor view ID.
- @see #RelativeLayout_Layout_layout_above - @see #RelativeLayout_Layout_layout_alignBaseline - @see #RelativeLayout_Layout_layout_alignBottom - @see #RelativeLayout_Layout_layout_alignEnd - @see #RelativeLayout_Layout_layout_alignLeft - @see #RelativeLayout_Layout_layout_alignParentBottom - @see #RelativeLayout_Layout_layout_alignParentEnd - @see #RelativeLayout_Layout_layout_alignParentLeft - @see #RelativeLayout_Layout_layout_alignParentRight - @see #RelativeLayout_Layout_layout_alignParentStart - @see #RelativeLayout_Layout_layout_alignParentTop - @see #RelativeLayout_Layout_layout_alignRight - @see #RelativeLayout_Layout_layout_alignStart - @see #RelativeLayout_Layout_layout_alignTop - @see #RelativeLayout_Layout_layout_alignWithParentIfMissing - @see #RelativeLayout_Layout_layout_below - @see #RelativeLayout_Layout_layout_centerHorizontal - @see #RelativeLayout_Layout_layout_centerInParent - @see #RelativeLayout_Layout_layout_centerVertical - @see #RelativeLayout_Layout_layout_toEndOf - @see #RelativeLayout_Layout_layout_toLeftOf - @see #RelativeLayout_Layout_layout_toRightOf - @see #RelativeLayout_Layout_layout_toStartOf - */ - public static final int[] RelativeLayout_Layout = { - 0x01010182, 0x01010183, 0x01010184, 0x01010185, - 0x01010186, 0x01010187, 0x01010188, 0x01010189, - 0x0101018a, 0x0101018b, 0x0101018c, 0x0101018d, - 0x0101018e, 0x0101018f, 0x01010190, 0x01010191, - 0x01010192, 0x010103b7, 0x010103b8, 0x010103b9, - 0x010103ba, 0x010103bb, 0x010103bc}; - /** -

- @attr description - Positions the bottom edge of this view above the given anchor view ID. - Accommodates bottom margin of this view and top margin of anchor view. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_above}. - @attr name android:layout_above - */ - public static final int RelativeLayout_Layout_layout_above = 2; - /** -

- @attr description - Positions the baseline of this view on the baseline of the given anchor view ID. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_alignBaseline}. - @attr name android:layout_alignBaseline - */ - public static final int RelativeLayout_Layout_layout_alignBaseline = 4; - /** -

- @attr description - Makes the bottom edge of this view match the bottom edge of the given anchor view ID. - Accommodates bottom margin. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_alignBottom}. - @attr name android:layout_alignBottom - */ - public static final int RelativeLayout_Layout_layout_alignBottom = 8; - /** -

- @attr description - Makes the end edge of this view match the end edge of the given anchor view ID. - Accommodates end margin. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_alignEnd}. - @attr name android:layout_alignEnd - */ - public static final int RelativeLayout_Layout_layout_alignEnd = 20; - /** -

- @attr description - Makes the left edge of this view match the left edge of the given anchor view ID. - Accommodates left margin. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_alignLeft}. - @attr name android:layout_alignLeft - */ - public static final int RelativeLayout_Layout_layout_alignLeft = 5; - /** -

- @attr description - If true, makes the bottom edge of this view match the bottom edge of the parent. - Accommodates bottom margin. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_alignParentBottom}. - @attr name android:layout_alignParentBottom - */ - public static final int RelativeLayout_Layout_layout_alignParentBottom = 12; - /** -

- @attr description - If true, makes the end edge of this view match the end edge of the parent. - Accommodates end margin. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_alignParentEnd}. - @attr name android:layout_alignParentEnd - */ - public static final int RelativeLayout_Layout_layout_alignParentEnd = 22; - /** -

- @attr description - If true, makes the left edge of this view match the left edge of the parent. - Accommodates left margin. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_alignParentLeft}. - @attr name android:layout_alignParentLeft - */ - public static final int RelativeLayout_Layout_layout_alignParentLeft = 9; - /** -

- @attr description - If true, makes the right edge of this view match the right edge of the parent. - Accommodates right margin. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_alignParentRight}. - @attr name android:layout_alignParentRight - */ - public static final int RelativeLayout_Layout_layout_alignParentRight = 11; - /** -

- @attr description - If true, makes the start edge of this view match the start edge of the parent. - Accommodates start margin. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_alignParentStart}. - @attr name android:layout_alignParentStart - */ - public static final int RelativeLayout_Layout_layout_alignParentStart = 21; - /** -

- @attr description - If true, makes the top edge of this view match the top edge of the parent. - Accommodates top margin. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_alignParentTop}. - @attr name android:layout_alignParentTop - */ - public static final int RelativeLayout_Layout_layout_alignParentTop = 10; - /** -

- @attr description - Makes the right edge of this view match the right edge of the given anchor view ID. - Accommodates right margin. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_alignRight}. - @attr name android:layout_alignRight - */ - public static final int RelativeLayout_Layout_layout_alignRight = 7; - /** -

- @attr description - Makes the start edge of this view match the start edge of the given anchor view ID. - Accommodates start margin. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_alignStart}. - @attr name android:layout_alignStart - */ - public static final int RelativeLayout_Layout_layout_alignStart = 19; - /** -

- @attr description - Makes the top edge of this view match the top edge of the given anchor view ID. - Accommodates top margin. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_alignTop}. - @attr name android:layout_alignTop - */ - public static final int RelativeLayout_Layout_layout_alignTop = 6; - /** -

- @attr description - If set to true, the parent will be used as the anchor when the anchor cannot be - be found for layout_toLeftOf, layout_toRightOf, etc. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_alignWithParentIfMissing}. - @attr name android:layout_alignWithParentIfMissing - */ - public static final int RelativeLayout_Layout_layout_alignWithParentIfMissing = 16; - /** -

- @attr description - Positions the top edge of this view below the given anchor view ID. - Accommodates top margin of this view and bottom margin of anchor view. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_below}. - @attr name android:layout_below - */ - public static final int RelativeLayout_Layout_layout_below = 3; - /** -

- @attr description - If true, centers this child horizontally within its parent. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_centerHorizontal}. - @attr name android:layout_centerHorizontal - */ - public static final int RelativeLayout_Layout_layout_centerHorizontal = 14; - /** -

- @attr description - If true, centers this child horizontally and vertically within its parent. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_centerInParent}. - @attr name android:layout_centerInParent - */ - public static final int RelativeLayout_Layout_layout_centerInParent = 13; - /** -

- @attr description - If true, centers this child vertically within its parent. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_centerVertical}. - @attr name android:layout_centerVertical - */ - public static final int RelativeLayout_Layout_layout_centerVertical = 15; - /** -

- @attr description - Positions the start edge of this view to the end of the given anchor view ID. - Accommodates start margin of this view and end margin of anchor view. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_toEndOf}. - @attr name android:layout_toEndOf - */ - public static final int RelativeLayout_Layout_layout_toEndOf = 18; - /** -

- @attr description - Positions the right edge of this view to the left of the given anchor view ID. - Accommodates right margin of this view and left margin of anchor view. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_toLeftOf}. - @attr name android:layout_toLeftOf - */ - public static final int RelativeLayout_Layout_layout_toLeftOf = 0; - /** -

- @attr description - Positions the left edge of this view to the right of the given anchor view ID. - Accommodates left margin of this view and right margin of anchor view. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_toRightOf}. - @attr name android:layout_toRightOf - */ - public static final int RelativeLayout_Layout_layout_toRightOf = 1; - /** -

- @attr description - Positions the end edge of this view to the start of the given anchor view ID. - Accommodates end margin of this view and start margin of anchor view. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_toStartOf}. - @attr name android:layout_toStartOf - */ - public static final int RelativeLayout_Layout_layout_toStartOf = 17; - /** - Base attributes available to RingtonePreference. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #RingtonePreference_ringtoneType android:ringtoneType} Which ringtone type(s) to show in the picker.
{@link #RingtonePreference_showDefault android:showDefault} Whether to show an item for a default sound.
{@link #RingtonePreference_showSilent android:showSilent} Whether to show an item for 'Silent'.
- @see #RingtonePreference_ringtoneType - @see #RingtonePreference_showDefault - @see #RingtonePreference_showSilent - */ - public static final int[] RingtonePreference = { - 0x010101f9, 0x010101fa, 0x010101fb}; - /** -

- @attr description - Which ringtone type(s) to show in the picker. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - -
ConstantValueDescription
ringtone1 Ringtones.
notification2 Notification sounds.
alarm4 Alarm sounds.
all7 All available ringtone sounds.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#ringtoneType}. - @attr name android:ringtoneType - */ - public static final int RingtonePreference_ringtoneType = 0; - /** -

- @attr description - Whether to show an item for a default sound. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#showDefault}. - @attr name android:showDefault - */ - public static final int RingtonePreference_showDefault = 1; - /** -

- @attr description - Whether to show an item for 'Silent'. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#showSilent}. - @attr name android:showSilent - */ - public static final int RingtonePreference_showSilent = 2; - /** - attributes for internal rotary widget used in lock screen and phone app - @hide -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #RotarySelector_orientation android:orientation} Use "horizontal" or "vertical".
- @see #RotarySelector_orientation - */ - public static final int[] RotarySelector = { - 0x010100c4}; - /** -

- @attr description - Use "horizontal" or "vertical". The default is horizontal. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
horizontal0 Defines an horizontal widget.
vertical1 Defines a vertical widget.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#orientation}. - @attr name android:orientation - */ - public static final int RotarySelector_orientation = 0; - /** - Attributes that can be used with a RotateAnimation. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #RotateAnimation_fromDegrees android:fromDegrees}
{@link #RotateAnimation_pivotX android:pivotX}
{@link #RotateAnimation_pivotY android:pivotY}
{@link #RotateAnimation_toDegrees android:toDegrees}
- @see #RotateAnimation_fromDegrees - @see #RotateAnimation_pivotX - @see #RotateAnimation_pivotY - @see #RotateAnimation_toDegrees - */ - public static final int[] RotateAnimation = { - 0x010101b3, 0x010101b4, 0x010101b5, 0x010101b6}; - /** -

This symbol is the offset where the {@link android.R.attr#fromDegrees} - attribute's value can be found in the {@link #RotateAnimation} array. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:fromDegrees - */ - public static final int RotateAnimation_fromDegrees = 0; - /** -

This symbol is the offset where the {@link android.R.attr#pivotX} - attribute's value can be found in the {@link #RotateAnimation} array. - - -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:pivotX - */ - public static final int RotateAnimation_pivotX = 2; - /** -

This symbol is the offset where the {@link android.R.attr#pivotY} - attribute's value can be found in the {@link #RotateAnimation} array. - - -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:pivotY - */ - public static final int RotateAnimation_pivotY = 3; - /** -

This symbol is the offset where the {@link android.R.attr#toDegrees} - attribute's value can be found in the {@link #RotateAnimation} array. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:toDegrees - */ - public static final int RotateAnimation_toDegrees = 1; - /** - Drawable used to rotate another drawable. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #RotateDrawable_drawable android:drawable} Reference to a drawable resource to use for the frame.
{@link #RotateDrawable_fromDegrees android:fromDegrees}
{@link #RotateDrawable_pivotX android:pivotX}
{@link #RotateDrawable_pivotY android:pivotY}
{@link #RotateDrawable_toDegrees android:toDegrees}
{@link #RotateDrawable_visible android:visible} Provides initial visibility state of the drawable; the default - value is false.
- @see #RotateDrawable_drawable - @see #RotateDrawable_fromDegrees - @see #RotateDrawable_pivotX - @see #RotateDrawable_pivotY - @see #RotateDrawable_toDegrees - @see #RotateDrawable_visible - */ - public static final int[] RotateDrawable = { - 0x01010194, 0x01010199, 0x010101b3, 0x010101b4, - 0x010101b5, 0x010101b6}; - /** -

- @attr description - Reference to a drawable resource to use for the frame. If not - given, the drawable must be defined by the first child tag. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#drawable}. - @attr name android:drawable - */ - public static final int RotateDrawable_drawable = 1; - /** -

This symbol is the offset where the {@link android.R.attr#fromDegrees} - attribute's value can be found in the {@link #RotateDrawable} array. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:fromDegrees - */ - public static final int RotateDrawable_fromDegrees = 2; - /** -

This symbol is the offset where the {@link android.R.attr#pivotX} - attribute's value can be found in the {@link #RotateDrawable} array. - - -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:pivotX - */ - public static final int RotateDrawable_pivotX = 4; - /** -

This symbol is the offset where the {@link android.R.attr#pivotY} - attribute's value can be found in the {@link #RotateDrawable} array. - - -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:pivotY - */ - public static final int RotateDrawable_pivotY = 5; - /** -

This symbol is the offset where the {@link android.R.attr#toDegrees} - attribute's value can be found in the {@link #RotateDrawable} array. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:toDegrees - */ - public static final int RotateDrawable_toDegrees = 3; - /** -

- @attr description - Provides initial visibility state of the drawable; the default - value is false. See - {@link android.graphics.drawable.Drawable#setVisible}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#visible}. - @attr name android:visible - */ - public static final int RotateDrawable_visible = 0; - /** - Attributes that can be used with a ScaleAnimation. -

Includes the following attributes:

- - - - - - - - - - -
AttributeDescription
{@link #ScaleAnimation_fromXScale android:fromXScale}
{@link #ScaleAnimation_fromYScale android:fromYScale}
{@link #ScaleAnimation_pivotX android:pivotX}
{@link #ScaleAnimation_pivotY android:pivotY}
{@link #ScaleAnimation_toXScale android:toXScale}
{@link #ScaleAnimation_toYScale android:toYScale}
- @see #ScaleAnimation_fromXScale - @see #ScaleAnimation_fromYScale - @see #ScaleAnimation_pivotX - @see #ScaleAnimation_pivotY - @see #ScaleAnimation_toXScale - @see #ScaleAnimation_toYScale - */ - public static final int[] ScaleAnimation = { - 0x010101b5, 0x010101b6, 0x010101c2, 0x010101c3, - 0x010101c4, 0x010101c5}; - /** -

This symbol is the offset where the {@link android.R.attr#fromXScale} - attribute's value can be found in the {@link #ScaleAnimation} array. - - -

May be a floating point value, such as "1.2". -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:fromXScale - */ - public static final int ScaleAnimation_fromXScale = 2; - /** -

This symbol is the offset where the {@link android.R.attr#fromYScale} - attribute's value can be found in the {@link #ScaleAnimation} array. - - -

May be a floating point value, such as "1.2". -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:fromYScale - */ - public static final int ScaleAnimation_fromYScale = 4; - /** -

This symbol is the offset where the {@link android.R.attr#pivotX} - attribute's value can be found in the {@link #ScaleAnimation} array. - - -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:pivotX - */ - public static final int ScaleAnimation_pivotX = 0; - /** -

This symbol is the offset where the {@link android.R.attr#pivotY} - attribute's value can be found in the {@link #ScaleAnimation} array. - - -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:pivotY - */ - public static final int ScaleAnimation_pivotY = 1; - /** -

This symbol is the offset where the {@link android.R.attr#toXScale} - attribute's value can be found in the {@link #ScaleAnimation} array. - - -

May be a floating point value, such as "1.2". -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:toXScale - */ - public static final int ScaleAnimation_toXScale = 3; - /** -

This symbol is the offset where the {@link android.R.attr#toYScale} - attribute's value can be found in the {@link #ScaleAnimation} array. - - -

May be a floating point value, such as "1.2". -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:toYScale - */ - public static final int ScaleAnimation_toYScale = 5; - /** - Attributes that can be used with a ScaleDrawable. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #ScaleDrawable_drawable android:drawable} Reference to a drawable resource to draw with the specified scale.
{@link #ScaleDrawable_scaleGravity android:scaleGravity} Specifies where the drawable is positioned after scaling.
{@link #ScaleDrawable_scaleHeight android:scaleHeight} Scale height, expressed as a percentage of the drawable's bound.
{@link #ScaleDrawable_scaleWidth android:scaleWidth} Scale width, expressed as a percentage of the drawable's bound.
{@link #ScaleDrawable_useIntrinsicSizeAsMinimum android:useIntrinsicSizeAsMinimum} Use the drawable's intrinsic width and height as minimum size values.
- @see #ScaleDrawable_drawable - @see #ScaleDrawable_scaleGravity - @see #ScaleDrawable_scaleHeight - @see #ScaleDrawable_scaleWidth - @see #ScaleDrawable_useIntrinsicSizeAsMinimum - */ - public static final int[] ScaleDrawable = { - 0x01010199, 0x010101fc, 0x010101fd, 0x010101fe, - 0x01010310}; - /** -

- @attr description - Reference to a drawable resource to draw with the specified scale. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#drawable}. - @attr name android:drawable - */ - public static final int ScaleDrawable_drawable = 0; - /** -

- @attr description - Specifies where the drawable is positioned after scaling. The default value is - left. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#scaleGravity}. - @attr name android:scaleGravity - */ - public static final int ScaleDrawable_scaleGravity = 3; - /** -

- @attr description - Scale height, expressed as a percentage of the drawable's bound. The value's - format is XX%. For instance: 100%, 12.5%, etc. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scaleHeight}. - @attr name android:scaleHeight - */ - public static final int ScaleDrawable_scaleHeight = 2; - /** -

- @attr description - Scale width, expressed as a percentage of the drawable's bound. The value's - format is XX%. For instance: 100%, 12.5%, etc. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scaleWidth}. - @attr name android:scaleWidth - */ - public static final int ScaleDrawable_scaleWidth = 1; - /** -

- @attr description - Use the drawable's intrinsic width and height as minimum size values. - Useful if the target drawable is a 9-patch or otherwise should not be scaled - down beyond a minimum size. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#useIntrinsicSizeAsMinimum}. - @attr name android:useIntrinsicSizeAsMinimum - */ - public static final int ScaleDrawable_useIntrinsicSizeAsMinimum = 4; - /** - Attributes that can be used with a ScrollView. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ScrollView_fillViewport android:fillViewport} Defines whether the scrollview should stretch its content to fill the viewport.
- @see #ScrollView_fillViewport - */ - public static final int[] ScrollView = { - 0x0101017a}; - /** -

- @attr description - Defines whether the scrollview should stretch its content to fill the viewport. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fillViewport}. - @attr name android:fillViewport - */ - public static final int ScrollView_fillViewport = 0; - /** - Attributes that can be used with a SearchView. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #SearchView_iconifiedByDefault android:iconifiedByDefault} The default state of the SearchView.
{@link #SearchView_imeOptions android:imeOptions} The IME options to set on the query text field.
{@link #SearchView_inputType android:inputType} The input type to set on the query text field.
{@link #SearchView_maxWidth android:maxWidth} An optional maximum width of the SearchView.
{@link #SearchView_queryHint android:queryHint} An optional query hint string to be displayed in the empty query field.
- @see #SearchView_iconifiedByDefault - @see #SearchView_imeOptions - @see #SearchView_inputType - @see #SearchView_maxWidth - @see #SearchView_queryHint - */ - public static final int[] SearchView = { - 0x0101011f, 0x01010220, 0x01010264, 0x010102fa, - 0x01010358}; - /** -

- @attr description - The default state of the SearchView. If true, it will be iconified when not in - use and expanded when clicked. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#iconifiedByDefault}. - @attr name android:iconifiedByDefault - */ - public static final int SearchView_iconifiedByDefault = 3; - /** -

- @attr description - The IME options to set on the query text field. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
normal0x00000000 There are no special semantics associated with this editor.
actionUnspecified0x00000000 There is no specific action associated with this editor, let the - editor come up with its own if it can. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_NULL}.
actionNone0x00000001 This editor has no action associated with it. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_NONE}.
actionGo0x00000002 The action key performs a "go" - operation to take the user to the target of the text they typed. - Typically used, for example, when entering a URL. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_GO}.
actionSearch0x00000003 The action key performs a "search" - operation, taking the user to the results of searching for the text - the have typed (in whatever context is appropriate). - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEARCH}.
actionSend0x00000004 The action key performs a "send" - operation, delivering the text to its target. This is typically used - when composing a message. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEND}.
actionNext0x00000005 The action key performs a "next" - operation, taking the user to the next field that will accept text. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_NEXT}.
actionDone0x00000006 The action key performs a "done" - operation, closing the soft input method. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_DONE}.
actionPrevious0x00000007 The action key performs a "previous" - operation, taking the user to the previous field that will accept text. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_PREVIOUS}.
flagNoFullscreen0x2000000 Used to request that the IME never go - into fullscreen mode. Applications need to be aware that the flag is not - a guarantee, and not all IMEs will respect it. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}.

flagNavigatePrevious0x4000000 Like flagNavigateNext, but - specifies there is something interesting that a backward navigation - can focus on. If the user selects the IME's facility to backward - navigate, this will show up in the application as an actionPrevious - at {@link android.view.inputmethod.InputConnection#performEditorAction(int) - InputConnection.performEditorAction(int)}. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}.

flagNavigateNext0x8000000 Used to specify that there is something - interesting that a forward navigation can focus on. This is like using - actionNext, except allows the IME to be multiline (with - an enter key) as well as provide forward navigation. Note that some - IMEs may not be able to do this, especially when running on a small - screen where there is little space. In that case it does not need to - present a UI for this option. Like actionNext, if the - user selects the IME's facility to forward navigate, this will show up - in the application at - {@link android.view.inputmethod.InputConnection#performEditorAction(int) - InputConnection.performEditorAction(int)}. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NAVIGATE_NEXT}.

flagNoExtractUi0x10000000 Used to specify that the IME does not need - to show its extracted text UI. For input methods that may be fullscreen, - often when in landscape mode, this allows them to be smaller and let part - of the application be shown behind. Though there will likely be limited - access to the application available from the user, it can make the - experience of a (mostly) fullscreen IME less jarring. Note that when - this flag is specified the IME may not be set up to be able - to display text, so it should only be used in situations where this is - not needed. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_EXTRACT_UI}.

flagNoAccessoryAction0x20000000 Used in conjunction with a custom action, this indicates that the - action should not be available as an accessory button when the - input method is full-screen. - Note that by setting this flag, there can be cases where the action - is simply never available to the user. Setting this generally means - that you think showing text being edited is more important than the - action you have supplied. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ACCESSORY_ACTION}.

flagNoEnterAction0x40000000 Used in conjunction with a custom action, - this indicates that the action should not be available in-line as - a replacement for the "enter" key. Typically this is - because the action has such a significant impact or is not recoverable - enough that accidentally hitting it should be avoided, such as sending - a message. Note that {@link android.widget.TextView} will - automatically set this flag for you on multi-line text views. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ENTER_ACTION}.

flagForceAscii0x80000000 Used to request that the IME should be capable of inputting ASCII - characters. The intention of this flag is to ensure that the user - can type Roman alphabet characters in a {@link android.widget.TextView} - used for, typically, account ID or password input. It is expected that IMEs - normally are able to input ASCII even without being told so (such IMEs - already respect this flag in a sense), but there could be some cases they - aren't when, for instance, only non-ASCII input languagaes like Arabic, - Greek, Hebrew, Russian are enabled in the IME. Applications need to be - aware that the flag is not a guarantee, and not all IMEs will respect it. - However, it is strongly recommended for IME authors to respect this flag - especially when their IME could end up with a state that has only non-ASCII - input languages enabled. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_FORCE_ASCII}.

-

This corresponds to the global attribute - resource symbol {@link android.R.attr#imeOptions}. - @attr name android:imeOptions - */ - public static final int SearchView_imeOptions = 2; - /** -

- @attr description - The input type to set on the query text field. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
none0x00000000 There is no content type. The text is not editable.
text0x00000001 Just plain old text. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_NORMAL}.
textCapCharacters0x00001001 Can be combined with text and its variations to - request capitalization of all characters. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_CHARACTERS}.
textCapWords0x00002001 Can be combined with text and its variations to - request capitalization of the first character of every word. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_WORDS}.
textCapSentences0x00004001 Can be combined with text and its variations to - request capitalization of the first character of every sentence. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_SENTENCES}.
textAutoCorrect0x00008001 Can be combined with text and its variations to - request auto-correction of text being input. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_CORRECT}.
textAutoComplete0x00010001 Can be combined with text and its variations to - specify that this field will be doing its own auto-completion and - talking with the input method appropriately. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_COMPLETE}.
textMultiLine0x00020001 Can be combined with text and its variations to - allow multiple lines of text in the field. If this flag is not set, - the text field will be constrained to a single line. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_MULTI_LINE}.
textImeMultiLine0x00040001 Can be combined with text and its variations to - indicate that though the regular text view should not be multiple - lines, the IME should provide multiple lines if it can. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_IME_MULTI_LINE}.
textNoSuggestions0x00080001 Can be combined with text and its variations to - indicate that the IME should not show any - dictionary-based word suggestions. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_NO_SUGGESTIONS}.
textUri0x00000011 Text that will be used as a URI. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_URI}.
textEmailAddress0x00000021 Text that will be used as an e-mail address. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_ADDRESS}.
textEmailSubject0x00000031 Text that is being supplied as the subject of an e-mail. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_SUBJECT}.
textShortMessage0x00000041 Text that is the content of a short message. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_SHORT_MESSAGE}.
textLongMessage0x00000051 Text that is the content of a long message. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_LONG_MESSAGE}.
textPersonName0x00000061 Text that is the name of a person. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_PERSON_NAME}.
textPostalAddress0x00000071 Text that is being supplied as a postal mailing address. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_POSTAL_ADDRESS}.
textPassword0x00000081 Text that is a password. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_PASSWORD}.
textVisiblePassword0x00000091 Text that is a password that should be visible. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_VISIBLE_PASSWORD}.
textWebEditText0x000000a1 Text that is being supplied as text in a web form. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EDIT_TEXT}.
textFilter0x000000b1 Text that is filtering some other data. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_FILTER}.
textPhonetic0x000000c1 Text that is for phonetic pronunciation, such as a phonetic name - field in a contact entry. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_PHONETIC}.
textWebEmailAddress0x000000d1 Text that will be used as an e-mail address on a web form. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS}.
textWebPassword0x000000e1 Text that will be used as a password on a web form. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_PASSWORD}.
number0x00000002 A numeric only field. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_VARIATION_NORMAL}.
numberSigned0x00001002 Can be combined with number and its other options to - allow a signed number. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_FLAG_SIGNED}.
numberDecimal0x00002002 Can be combined with number and its other options to - allow a decimal (fractional) number. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_FLAG_DECIMAL}.
numberPassword0x00000012 A numeric password field. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_VARIATION_PASSWORD}.
phone0x00000003 For entering a phone number. Corresponds to - {@link android.text.InputType#TYPE_CLASS_PHONE}.
datetime0x00000004 For entering a date and time. Corresponds to - {@link android.text.InputType#TYPE_CLASS_DATETIME} | - {@link android.text.InputType#TYPE_DATETIME_VARIATION_NORMAL}.
date0x00000014 For entering a date. Corresponds to - {@link android.text.InputType#TYPE_CLASS_DATETIME} | - {@link android.text.InputType#TYPE_DATETIME_VARIATION_DATE}.
time0x00000024 For entering a time. Corresponds to - {@link android.text.InputType#TYPE_CLASS_DATETIME} | - {@link android.text.InputType#TYPE_DATETIME_VARIATION_TIME}.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#inputType}. - @attr name android:inputType - */ - public static final int SearchView_inputType = 1; - /** -

- @attr description - An optional maximum width of the SearchView. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#maxWidth}. - @attr name android:maxWidth - */ - public static final int SearchView_maxWidth = 0; - /** -

- @attr description - An optional query hint string to be displayed in the empty query field. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#queryHint}. - @attr name android:queryHint - */ - public static final int SearchView_queryHint = 4; - /** - Searchable activities and applications must provide search configuration information - in an XML file, typically called searchable.xml. This file is referenced in your manifest. - For a more in-depth discussion of search configuration, please refer to - {@link android.app.SearchManager}. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #Searchable_autoUrlDetect android:autoUrlDetect} If provided and true, URLs entered in the search dialog while searching - within this activity would be detected and treated as URLs (show a 'go' button in the - keyboard and invoke the browser directly when user launches the URL instead of passing - the URL to the activity).
{@link #Searchable_hint android:hint} If supplied, this string will be displayed as a hint to the user.
{@link #Searchable_icon android:icon}This is deprecated.
{@link #Searchable_imeOptions android:imeOptions} Additional features you can enable in an IME associated with an editor - to improve the integration with your application.
{@link #Searchable_includeInGlobalSearch android:includeInGlobalSearch} If provided and true, this searchable activity will be - included in any global lists of search targets.
{@link #Searchable_inputType android:inputType} The type of data being placed in a text field, used to help an - input method decide how to let the user enter text.
{@link #Searchable_label android:label} This is the user-displayed name of the searchable activity.
{@link #Searchable_queryAfterZeroResults android:queryAfterZeroResults} If provided and true, this searchable activity will be invoked for all - queries in a particular session.
{@link #Searchable_searchButtonText android:searchButtonText} If supplied, this string will be displayed as the text of the "Search" button.
{@link #Searchable_searchMode android:searchMode} Additional features are controlled by mode bits in this field.
{@link #Searchable_searchSettingsDescription android:searchSettingsDescription} If provided, this string will be used to describe the searchable item in the - searchable items settings within system search settings.
{@link #Searchable_searchSuggestAuthority android:searchSuggestAuthority} If provided, this is the trigger indicating that the searchable activity - provides suggestions as well.
{@link #Searchable_searchSuggestIntentAction android:searchSuggestIntentAction} If provided, and not overridden by an action in the selected suggestion, this - string will be placed in the action field of the {@link android.content.Intent Intent} - when the user clicks a suggestion.
{@link #Searchable_searchSuggestIntentData android:searchSuggestIntentData} If provided, and not overridden by an action in the selected suggestion, this - string will be placed in the data field of the {@link android.content.Intent Intent} - when the user clicks a suggestion.
{@link #Searchable_searchSuggestPath android:searchSuggestPath} If provided, this will be inserted in the suggestions query Uri, after the authority - you have provide but before the standard suggestions path.
{@link #Searchable_searchSuggestSelection android:searchSuggestSelection} If provided, suggestion queries will be passed into your query function - as the selection parameter.
{@link #Searchable_searchSuggestThreshold android:searchSuggestThreshold} If provided, this is the minimum number of characters needed to trigger - search suggestions.
{@link #Searchable_voiceLanguage android:voiceLanguage} If provided, this specifies the spoken language to be expected, and that it will be - different than the one set in the {@link java.util.Locale#getDefault()}.
{@link #Searchable_voiceLanguageModel android:voiceLanguageModel} If provided, this specifies the language model that should be used by the - voice recognition system.
{@link #Searchable_voiceMaxResults android:voiceMaxResults} If provided, enforces the maximum number of results to return, including the "best" - result which will always be provided as the SEARCH intent's primary query.
{@link #Searchable_voicePromptText android:voicePromptText} If provided, this specifies a prompt that will be displayed during voice input.
{@link #Searchable_voiceSearchMode android:voiceSearchMode} Voice search features are controlled by mode bits in this field.
- @see #Searchable_autoUrlDetect - @see #Searchable_hint - @see #Searchable_icon - @see #Searchable_imeOptions - @see #Searchable_includeInGlobalSearch - @see #Searchable_inputType - @see #Searchable_label - @see #Searchable_queryAfterZeroResults - @see #Searchable_searchButtonText - @see #Searchable_searchMode - @see #Searchable_searchSettingsDescription - @see #Searchable_searchSuggestAuthority - @see #Searchable_searchSuggestIntentAction - @see #Searchable_searchSuggestIntentData - @see #Searchable_searchSuggestPath - @see #Searchable_searchSuggestSelection - @see #Searchable_searchSuggestThreshold - @see #Searchable_voiceLanguage - @see #Searchable_voiceLanguageModel - @see #Searchable_voiceMaxResults - @see #Searchable_voicePromptText - @see #Searchable_voiceSearchMode - */ - public static final int[] Searchable = { - 0x01010001, 0x01010002, 0x01010150, 0x010101d5, - 0x010101d6, 0x010101d7, 0x010101d8, 0x010101d9, - 0x010101da, 0x01010205, 0x01010220, 0x01010252, - 0x01010253, 0x01010254, 0x01010255, 0x01010256, - 0x01010264, 0x0101026d, 0x0101026e, 0x01010282, - 0x0101028a, 0x0101028c}; - /** -

- @attr description - If provided and true, URLs entered in the search dialog while searching - within this activity would be detected and treated as URLs (show a 'go' button in the - keyboard and invoke the browser directly when user launches the URL instead of passing - the URL to the activity). If set to false any URLs entered are treated as - normal query text. - The default value is false. Optional attribute.. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#autoUrlDetect}. - @attr name android:autoUrlDetect - */ - public static final int Searchable_autoUrlDetect = 21; - /** -

- @attr description - If supplied, this string will be displayed as a hint to the user. Optional - attribute. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#hint}. - @attr name android:hint - */ - public static final int Searchable_hint = 2; - /** -

- @attr description - This is deprecated.
The default - application icon is now always used, so this attribute is - obsolete. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int Searchable_icon = 1; - /** -

- @attr description - Additional features you can enable in an IME associated with an editor - to improve the integration with your application. The constants - here correspond to those defined by - {@link android.view.inputmethod.EditorInfo#imeOptions}. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
normal0x00000000 There are no special semantics associated with this editor.
actionUnspecified0x00000000 There is no specific action associated with this editor, let the - editor come up with its own if it can. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_NULL}.
actionNone0x00000001 This editor has no action associated with it. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_NONE}.
actionGo0x00000002 The action key performs a "go" - operation to take the user to the target of the text they typed. - Typically used, for example, when entering a URL. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_GO}.
actionSearch0x00000003 The action key performs a "search" - operation, taking the user to the results of searching for the text - the have typed (in whatever context is appropriate). - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEARCH}.
actionSend0x00000004 The action key performs a "send" - operation, delivering the text to its target. This is typically used - when composing a message. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEND}.
actionNext0x00000005 The action key performs a "next" - operation, taking the user to the next field that will accept text. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_NEXT}.
actionDone0x00000006 The action key performs a "done" - operation, closing the soft input method. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_DONE}.
actionPrevious0x00000007 The action key performs a "previous" - operation, taking the user to the previous field that will accept text. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_PREVIOUS}.
flagNoFullscreen0x2000000 Used to request that the IME never go - into fullscreen mode. Applications need to be aware that the flag is not - a guarantee, and not all IMEs will respect it. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}.

flagNavigatePrevious0x4000000 Like flagNavigateNext, but - specifies there is something interesting that a backward navigation - can focus on. If the user selects the IME's facility to backward - navigate, this will show up in the application as an actionPrevious - at {@link android.view.inputmethod.InputConnection#performEditorAction(int) - InputConnection.performEditorAction(int)}. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}.

flagNavigateNext0x8000000 Used to specify that there is something - interesting that a forward navigation can focus on. This is like using - actionNext, except allows the IME to be multiline (with - an enter key) as well as provide forward navigation. Note that some - IMEs may not be able to do this, especially when running on a small - screen where there is little space. In that case it does not need to - present a UI for this option. Like actionNext, if the - user selects the IME's facility to forward navigate, this will show up - in the application at - {@link android.view.inputmethod.InputConnection#performEditorAction(int) - InputConnection.performEditorAction(int)}. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NAVIGATE_NEXT}.

flagNoExtractUi0x10000000 Used to specify that the IME does not need - to show its extracted text UI. For input methods that may be fullscreen, - often when in landscape mode, this allows them to be smaller and let part - of the application be shown behind. Though there will likely be limited - access to the application available from the user, it can make the - experience of a (mostly) fullscreen IME less jarring. Note that when - this flag is specified the IME may not be set up to be able - to display text, so it should only be used in situations where this is - not needed. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_EXTRACT_UI}.

flagNoAccessoryAction0x20000000 Used in conjunction with a custom action, this indicates that the - action should not be available as an accessory button when the - input method is full-screen. - Note that by setting this flag, there can be cases where the action - is simply never available to the user. Setting this generally means - that you think showing text being edited is more important than the - action you have supplied. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ACCESSORY_ACTION}.

flagNoEnterAction0x40000000 Used in conjunction with a custom action, - this indicates that the action should not be available in-line as - a replacement for the "enter" key. Typically this is - because the action has such a significant impact or is not recoverable - enough that accidentally hitting it should be avoided, such as sending - a message. Note that {@link android.widget.TextView} will - automatically set this flag for you on multi-line text views. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ENTER_ACTION}.

flagForceAscii0x80000000 Used to request that the IME should be capable of inputting ASCII - characters. The intention of this flag is to ensure that the user - can type Roman alphabet characters in a {@link android.widget.TextView} - used for, typically, account ID or password input. It is expected that IMEs - normally are able to input ASCII even without being told so (such IMEs - already respect this flag in a sense), but there could be some cases they - aren't when, for instance, only non-ASCII input languagaes like Arabic, - Greek, Hebrew, Russian are enabled in the IME. Applications need to be - aware that the flag is not a guarantee, and not all IMEs will respect it. - However, it is strongly recommended for IME authors to respect this flag - especially when their IME could end up with a state that has only non-ASCII - input languages enabled. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_FORCE_ASCII}.

-

This corresponds to the global attribute - resource symbol {@link android.R.attr#imeOptions}. - @attr name android:imeOptions - */ - public static final int Searchable_imeOptions = 16; - /** -

- @attr description - If provided and true, this searchable activity will be - included in any global lists of search targets. - The default value is false. Optional attribute.. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#includeInGlobalSearch}. - @attr name android:includeInGlobalSearch - */ - public static final int Searchable_includeInGlobalSearch = 18; - /** -

- @attr description - The type of data being placed in a text field, used to help an - input method decide how to let the user enter text. The constants - here correspond to those defined by - {@link android.text.InputType}. Generally you can select - a single value, though some can be combined together as - indicated. Setting this attribute to anything besides - none also implies that the text is editable. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
none0x00000000 There is no content type. The text is not editable.
text0x00000001 Just plain old text. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_NORMAL}.
textCapCharacters0x00001001 Can be combined with text and its variations to - request capitalization of all characters. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_CHARACTERS}.
textCapWords0x00002001 Can be combined with text and its variations to - request capitalization of the first character of every word. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_WORDS}.
textCapSentences0x00004001 Can be combined with text and its variations to - request capitalization of the first character of every sentence. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_SENTENCES}.
textAutoCorrect0x00008001 Can be combined with text and its variations to - request auto-correction of text being input. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_CORRECT}.
textAutoComplete0x00010001 Can be combined with text and its variations to - specify that this field will be doing its own auto-completion and - talking with the input method appropriately. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_COMPLETE}.
textMultiLine0x00020001 Can be combined with text and its variations to - allow multiple lines of text in the field. If this flag is not set, - the text field will be constrained to a single line. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_MULTI_LINE}.
textImeMultiLine0x00040001 Can be combined with text and its variations to - indicate that though the regular text view should not be multiple - lines, the IME should provide multiple lines if it can. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_IME_MULTI_LINE}.
textNoSuggestions0x00080001 Can be combined with text and its variations to - indicate that the IME should not show any - dictionary-based word suggestions. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_NO_SUGGESTIONS}.
textUri0x00000011 Text that will be used as a URI. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_URI}.
textEmailAddress0x00000021 Text that will be used as an e-mail address. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_ADDRESS}.
textEmailSubject0x00000031 Text that is being supplied as the subject of an e-mail. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_SUBJECT}.
textShortMessage0x00000041 Text that is the content of a short message. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_SHORT_MESSAGE}.
textLongMessage0x00000051 Text that is the content of a long message. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_LONG_MESSAGE}.
textPersonName0x00000061 Text that is the name of a person. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_PERSON_NAME}.
textPostalAddress0x00000071 Text that is being supplied as a postal mailing address. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_POSTAL_ADDRESS}.
textPassword0x00000081 Text that is a password. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_PASSWORD}.
textVisiblePassword0x00000091 Text that is a password that should be visible. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_VISIBLE_PASSWORD}.
textWebEditText0x000000a1 Text that is being supplied as text in a web form. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EDIT_TEXT}.
textFilter0x000000b1 Text that is filtering some other data. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_FILTER}.
textPhonetic0x000000c1 Text that is for phonetic pronunciation, such as a phonetic name - field in a contact entry. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_PHONETIC}.
textWebEmailAddress0x000000d1 Text that will be used as an e-mail address on a web form. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS}.
textWebPassword0x000000e1 Text that will be used as a password on a web form. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_PASSWORD}.
number0x00000002 A numeric only field. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_VARIATION_NORMAL}.
numberSigned0x00001002 Can be combined with number and its other options to - allow a signed number. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_FLAG_SIGNED}.
numberDecimal0x00002002 Can be combined with number and its other options to - allow a decimal (fractional) number. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_FLAG_DECIMAL}.
numberPassword0x00000012 A numeric password field. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_VARIATION_PASSWORD}.
phone0x00000003 For entering a phone number. Corresponds to - {@link android.text.InputType#TYPE_CLASS_PHONE}.
datetime0x00000004 For entering a date and time. Corresponds to - {@link android.text.InputType#TYPE_CLASS_DATETIME} | - {@link android.text.InputType#TYPE_DATETIME_VARIATION_NORMAL}.
date0x00000014 For entering a date. Corresponds to - {@link android.text.InputType#TYPE_CLASS_DATETIME} | - {@link android.text.InputType#TYPE_DATETIME_VARIATION_DATE}.
time0x00000024 For entering a time. Corresponds to - {@link android.text.InputType#TYPE_CLASS_DATETIME} | - {@link android.text.InputType#TYPE_DATETIME_VARIATION_TIME}.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#inputType}. - @attr name android:inputType - */ - public static final int Searchable_inputType = 10; - /** -

- @attr description - This is the user-displayed name of the searchable activity. Required - attribute. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#label}. - @attr name android:label - */ - public static final int Searchable_label = 0; - /** -

- @attr description - If provided and true, this searchable activity will be invoked for all - queries in a particular session. If set to false and the activity - returned zero results for a query, it will not be invoked again in that session for - supersets of that zero-results query. For example, if the activity returned zero - results for "bo", it would not be queried again for "bob". - The default value is false. Optional attribute.. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#queryAfterZeroResults}. - @attr name android:queryAfterZeroResults - */ - public static final int Searchable_queryAfterZeroResults = 19; - /** -

- @attr description - If supplied, this string will be displayed as the text of the "Search" button. - Optional attribute. - {@deprecated This will create a non-standard UI appearance, because the search bar UI is - changing to use only icons for its buttons.} - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#searchButtonText}. - @attr name android:searchButtonText - */ - @Deprecated - public static final int Searchable_searchButtonText = 9; - /** -

- @attr description - Additional features are controlled by mode bits in this field. Omitting - this field, or setting to zero, provides default behavior. Optional attribute. - - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - -
ConstantValueDescription
showSearchLabelAsBadge0x04 If set, this flag enables the display of the search target (label) within the - search bar. If neither bad mode is selected, no badge will be shown.
showSearchIconAsBadge0x08This is deprecated.
The default - application icon is now always used, so this option is - obsolete.
queryRewriteFromData0x10 If set, this flag causes the suggestion column SUGGEST_COLUMN_INTENT_DATA to - be considered as the text for suggestion query rewriting. This should only - be used when the values in SUGGEST_COLUMN_INTENT_DATA are suitable for user - inspection and editing - typically, HTTP/HTTPS Uri's.
queryRewriteFromText0x20 If set, this flag causes the suggestion column SUGGEST_COLUMN_TEXT_1 to - be considered as the text for suggestion query rewriting. This should be used - for suggestions in which no query text is provided and the SUGGEST_COLUMN_INTENT_DATA - values are not suitable for user inspection and editing.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#searchMode}. - @attr name android:searchMode - */ - public static final int Searchable_searchMode = 3; - /** -

- @attr description - If provided, this string will be used to describe the searchable item in the - searchable items settings within system search settings. Optional - attribute. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#searchSettingsDescription}. - @attr name android:searchSettingsDescription - */ - public static final int Searchable_searchSettingsDescription = 20; - /** -

- @attr description - If provided, this is the trigger indicating that the searchable activity - provides suggestions as well. The value must be a fully-qualified content provider - authority (e.g. "com.example.android.apis.SuggestionProvider") and should match the - "android:authorities" tag in your content provider's manifest entry. Optional - attribute. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#searchSuggestAuthority}. - @attr name android:searchSuggestAuthority - */ - public static final int Searchable_searchSuggestAuthority = 4; - /** -

- @attr description - If provided, and not overridden by an action in the selected suggestion, this - string will be placed in the action field of the {@link android.content.Intent Intent} - when the user clicks a suggestion. Optional attribute. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#searchSuggestIntentAction}. - @attr name android:searchSuggestIntentAction - */ - public static final int Searchable_searchSuggestIntentAction = 7; - /** -

- @attr description - If provided, and not overridden by an action in the selected suggestion, this - string will be placed in the data field of the {@link android.content.Intent Intent} - when the user clicks a suggestion. Optional attribute. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#searchSuggestIntentData}. - @attr name android:searchSuggestIntentData - */ - public static final int Searchable_searchSuggestIntentData = 8; - /** -

- @attr description - If provided, this will be inserted in the suggestions query Uri, after the authority - you have provide but before the standard suggestions path. Optional attribute. - - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#searchSuggestPath}. - @attr name android:searchSuggestPath - */ - public static final int Searchable_searchSuggestPath = 5; - /** -

- @attr description - If provided, suggestion queries will be passed into your query function - as the selection parameter. Typically this will be a WHERE clause for your - database, and will contain a single question mark, which represents the actual query - string that has been typed by the user. If not provided, then the user query text - will be appended to the query Uri (after an additional "/".) Optional - attribute. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#searchSuggestSelection}. - @attr name android:searchSuggestSelection - */ - public static final int Searchable_searchSuggestSelection = 6; - /** -

- @attr description - If provided, this is the minimum number of characters needed to trigger - search suggestions. The default value is 0. Optional attribute. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#searchSuggestThreshold}. - @attr name android:searchSuggestThreshold - */ - public static final int Searchable_searchSuggestThreshold = 17; - /** -

- @attr description - If provided, this specifies the spoken language to be expected, and that it will be - different than the one set in the {@link java.util.Locale#getDefault()}. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#voiceLanguage}. - @attr name android:voiceLanguage - */ - public static final int Searchable_voiceLanguage = 14; - /** -

- @attr description - If provided, this specifies the language model that should be used by the - voice recognition system. See - {@link android.speech.RecognizerIntent#EXTRA_LANGUAGE_MODEL } for more information. - If not provided, the default value - {@link android.speech.RecognizerIntent#LANGUAGE_MODEL_FREE_FORM } will be used. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#voiceLanguageModel}. - @attr name android:voiceLanguageModel - */ - public static final int Searchable_voiceLanguageModel = 12; - /** -

- @attr description - If provided, enforces the maximum number of results to return, including the "best" - result which will always be provided as the SEARCH intent's primary query. Must be one - or greater. If not provided, the recognizer will choose how many results to return. - - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#voiceMaxResults}. - @attr name android:voiceMaxResults - */ - public static final int Searchable_voiceMaxResults = 15; - /** -

- @attr description - If provided, this specifies a prompt that will be displayed during voice input. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#voicePromptText}. - @attr name android:voicePromptText - */ - public static final int Searchable_voicePromptText = 13; - /** -

- @attr description - Voice search features are controlled by mode bits in this field. Omitting - this field, or setting to zero, provides default behavior. - If showVoiceSearchButton is set, then launchWebSearch or launchRecognizer must - also be set. Optional attribute. - - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - -
ConstantValueDescription
showVoiceSearchButton0x01 If set, display a voice search button. This only takes effect if voice search is - available on the device.
launchWebSearch0x02 If set, the voice search button will take the user directly to a built-in - voice web search activity. Most applications will not use this flag, as it - will take the user away from the activity in which search was invoked.
launchRecognizer0x04 If set, the voice search button will take the user directly to a built-in - voice recording activity. This activity will prompt the user to speak, - transcribe the spoken text, and forward the resulting query - text to the searchable activity, just as if the user had typed it into - the search UI and clicked the search button.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#voiceSearchMode}. - @attr name android:voiceSearchMode - */ - public static final int Searchable_voiceSearchMode = 11; - /** - In order to process special action keys during search, you must define them using - one or more "ActionKey" elements in your Searchable metadata. For a more in-depth - discussion of action code handling, please refer to {@link android.app.SearchManager}. - -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #SearchableActionKey_keycode android:keycode} This attribute denotes the action key you wish to respond to.
{@link #SearchableActionKey_queryActionMsg android:queryActionMsg} If you wish to handle an action key during normal search query entry, you - must define an action string here.
{@link #SearchableActionKey_suggestActionMsg android:suggestActionMsg} If you wish to handle an action key while a suggestion is being displayed and - selected, there are two ways to handle this.
{@link #SearchableActionKey_suggestActionMsgColumn android:suggestActionMsgColumn} If you wish to handle an action key while a suggestion is being displayed and - selected, but you do not wish to enable this action key for every suggestion, - then you can use this attribute to control it on a suggestion-by-suggestion basis.
- @see #SearchableActionKey_keycode - @see #SearchableActionKey_queryActionMsg - @see #SearchableActionKey_suggestActionMsg - @see #SearchableActionKey_suggestActionMsgColumn - */ - public static final int[] SearchableActionKey = { - 0x010100c5, 0x010101db, 0x010101dc, 0x010101dd}; - /** -

- @attr description - This attribute denotes the action key you wish to respond to. Note that not - all action keys are actually supported using this mechanism, as many of them are - used for typing, navigation, or system functions. This will be added to the - {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to your - searchable activity. To examine the key code, use - {@link android.content.Intent#getIntExtra getIntExtra(SearchManager.ACTION_KEY)}. -

Note, in addition to the keycode, you must also provide one or more of the action - specifier attributes. Required attribute. - - -

Must be one of the following constant values.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
KEYCODE_UNKNOWN0
KEYCODE_SOFT_LEFT1
KEYCODE_SOFT_RIGHT2
KEYCODE_HOME3
KEYCODE_BACK4
KEYCODE_CALL5
KEYCODE_ENDCALL6
KEYCODE_07
KEYCODE_18
KEYCODE_29
KEYCODE_310
KEYCODE_411
KEYCODE_512
KEYCODE_613
KEYCODE_714
KEYCODE_815
KEYCODE_916
KEYCODE_STAR17
KEYCODE_POUND18
KEYCODE_DPAD_UP19
KEYCODE_DPAD_DOWN20
KEYCODE_DPAD_LEFT21
KEYCODE_DPAD_RIGHT22
KEYCODE_DPAD_CENTER23
KEYCODE_VOLUME_UP24
KEYCODE_VOLUME_DOWN25
KEYCODE_POWER26
KEYCODE_CAMERA27
KEYCODE_CLEAR28
KEYCODE_A29
KEYCODE_B30
KEYCODE_C31
KEYCODE_D32
KEYCODE_E33
KEYCODE_F34
KEYCODE_G35
KEYCODE_H36
KEYCODE_I37
KEYCODE_J38
KEYCODE_K39
KEYCODE_L40
KEYCODE_M41
KEYCODE_N42
KEYCODE_O43
KEYCODE_P44
KEYCODE_Q45
KEYCODE_R46
KEYCODE_S47
KEYCODE_T48
KEYCODE_U49
KEYCODE_V50
KEYCODE_W51
KEYCODE_X52
KEYCODE_Y53
KEYCODE_Z54
KEYCODE_COMMA55
KEYCODE_PERIOD56
KEYCODE_ALT_LEFT57
KEYCODE_ALT_RIGHT58
KEYCODE_SHIFT_LEFT59
KEYCODE_SHIFT_RIGHT60
KEYCODE_TAB61
KEYCODE_SPACE62
KEYCODE_SYM63
KEYCODE_EXPLORER64
KEYCODE_ENVELOPE65
KEYCODE_ENTER66
KEYCODE_DEL67
KEYCODE_GRAVE68
KEYCODE_MINUS69
KEYCODE_EQUALS70
KEYCODE_LEFT_BRACKET71
KEYCODE_RIGHT_BRACKET72
KEYCODE_BACKSLASH73
KEYCODE_SEMICOLON74
KEYCODE_APOSTROPHE75
KEYCODE_SLASH76
KEYCODE_AT77
KEYCODE_NUM78
KEYCODE_HEADSETHOOK79
KEYCODE_FOCUS80
KEYCODE_PLUS81
KEYCODE_MENU82
KEYCODE_NOTIFICATION83
KEYCODE_SEARCH84
KEYCODE_MEDIA_PLAY_PAUSE85
KEYCODE_MEDIA_STOP86
KEYCODE_MEDIA_NEXT87
KEYCODE_MEDIA_PREVIOUS88
KEYCODE_MEDIA_REWIND89
KEYCODE_MEDIA_FAST_FORWARD90
KEYCODE_MUTE91
KEYCODE_PAGE_UP92
KEYCODE_PAGE_DOWN93
KEYCODE_PICTSYMBOLS94
KEYCODE_SWITCH_CHARSET95
KEYCODE_BUTTON_A96
KEYCODE_BUTTON_B97
KEYCODE_BUTTON_C98
KEYCODE_BUTTON_X99
KEYCODE_BUTTON_Y100
KEYCODE_BUTTON_Z101
KEYCODE_BUTTON_L1102
KEYCODE_BUTTON_R1103
KEYCODE_BUTTON_L2104
KEYCODE_BUTTON_R2105
KEYCODE_BUTTON_THUMBL106
KEYCODE_BUTTON_THUMBR107
KEYCODE_BUTTON_START108
KEYCODE_BUTTON_SELECT109
KEYCODE_BUTTON_MODE110
KEYCODE_ESCAPE111
KEYCODE_FORWARD_DEL112
KEYCODE_CTRL_LEFT113
KEYCODE_CTRL_RIGHT114
KEYCODE_CAPS_LOCK115
KEYCODE_SCROLL_LOCK116
KEYCODE_META_LEFT117
KEYCODE_META_RIGHT118
KEYCODE_FUNCTION119
KEYCODE_SYSRQ120
KEYCODE_BREAK121
KEYCODE_MOVE_HOME122
KEYCODE_MOVE_END123
KEYCODE_INSERT124
KEYCODE_FORWARD125
KEYCODE_MEDIA_PLAY126
KEYCODE_MEDIA_PAUSE127
KEYCODE_MEDIA_CLOSE128
KEYCODE_MEDIA_EJECT129
KEYCODE_MEDIA_RECORD130
KEYCODE_F1131
KEYCODE_F2132
KEYCODE_F3133
KEYCODE_F4134
KEYCODE_F5135
KEYCODE_F6136
KEYCODE_F7137
KEYCODE_F8138
KEYCODE_F9139
KEYCODE_F10140
KEYCODE_F11141
KEYCODE_F12142
KEYCODE_NUM_LOCK143
KEYCODE_NUMPAD_0144
KEYCODE_NUMPAD_1145
KEYCODE_NUMPAD_2146
KEYCODE_NUMPAD_3147
KEYCODE_NUMPAD_4148
KEYCODE_NUMPAD_5149
KEYCODE_NUMPAD_6150
KEYCODE_NUMPAD_7151
KEYCODE_NUMPAD_8152
KEYCODE_NUMPAD_9153
KEYCODE_NUMPAD_DIVIDE154
KEYCODE_NUMPAD_MULTIPLY155
KEYCODE_NUMPAD_SUBTRACT156
KEYCODE_NUMPAD_ADD157
KEYCODE_NUMPAD_DOT158
KEYCODE_NUMPAD_COMMA159
KEYCODE_NUMPAD_ENTER160
KEYCODE_NUMPAD_EQUALS161
KEYCODE_NUMPAD_LEFT_PAREN162
KEYCODE_NUMPAD_RIGHT_PAREN163
KEYCODE_VOLUME_MUTE164
KEYCODE_INFO165
KEYCODE_CHANNEL_UP166
KEYCODE_CHANNEL_DOWN167
KEYCODE_ZOOM_IN168
KEYCODE_ZOOM_OUT169
KEYCODE_TV170
KEYCODE_WINDOW171
KEYCODE_GUIDE172
KEYCODE_DVR173
KEYCODE_BOOKMARK174
KEYCODE_CAPTIONS175
KEYCODE_SETTINGS176
KEYCODE_TV_POWER177
KEYCODE_TV_INPUT178
KEYCODE_STB_POWER179
KEYCODE_STB_INPUT180
KEYCODE_AVR_POWER181
KEYCODE_AVR_INPUT182
KEYCODE_PROG_GRED183
KEYCODE_PROG_GREEN184
KEYCODE_PROG_YELLOW185
KEYCODE_PROG_BLUE186
KEYCODE_APP_SWITCH187
KEYCODE_BUTTON_1188
KEYCODE_BUTTON_2189
KEYCODE_BUTTON_3190
KEYCODE_BUTTON_4191
KEYCODE_BUTTON_5192
KEYCODE_BUTTON_6193
KEYCODE_BUTTON_7194
KEYCODE_BUTTON_8195
KEYCODE_BUTTON_9196
KEYCODE_BUTTON_10197
KEYCODE_BUTTON_11198
KEYCODE_BUTTON_12199
KEYCODE_BUTTON_13200
KEYCODE_BUTTON_14201
KEYCODE_BUTTON_15202
KEYCODE_BUTTON_16203
KEYCODE_LANGUAGE_SWITCH204
KEYCODE_MANNER_MODE205
KEYCODE_3D_MODE206
KEYCODE_CONTACTS207
KEYCODE_CALENDAR208
KEYCODE_MUSIC209
KEYCODE_CALCULATOR210
KEYCODE_ZENKAKU_HANKAKU211
KEYCODE_EISU212
KEYCODE_MUHENKAN213
KEYCODE_HENKAN214
KEYCODE_KATAKANA_HIRAGANA215
KEYCODE_YEN216
KEYCODE_RO217
KEYCODE_KANA218
KEYCODE_ASSIST219
KEYCODE_BRIGHTNESS_DOWN220
KEYCODE_BRIGHTNESS_UP221
KEYCODE_MEDIA_AUDIO_TRACK222
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#keycode}. - @attr name android:keycode - */ - public static final int SearchableActionKey_keycode = 0; - /** -

- @attr description - If you wish to handle an action key during normal search query entry, you - must define an action string here. This will be added to the - {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to your - searchable activity. To examine the string, use - {@link android.content.Intent#getStringExtra getStringExtra(SearchManager.ACTION_MSG)}. - Optional attribute. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#queryActionMsg}. - @attr name android:queryActionMsg - */ - public static final int SearchableActionKey_queryActionMsg = 1; - /** -

- @attr description - If you wish to handle an action key while a suggestion is being displayed and - selected, there are two ways to handle this. If all of your suggestions - can handle the action key, you can simply define the action message using this - attribute. This will be added to the - {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to your - searchable activity. To examine the string, use - {@link android.content.Intent#getStringExtra getStringExtra(SearchManager.ACTION_MSG)}. - Optional attribute. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#suggestActionMsg}. - @attr name android:suggestActionMsg - */ - public static final int SearchableActionKey_suggestActionMsg = 2; - /** -

- @attr description - If you wish to handle an action key while a suggestion is being displayed and - selected, but you do not wish to enable this action key for every suggestion, - then you can use this attribute to control it on a suggestion-by-suggestion basis. - First, you must define a column (and name it here) where your suggestions will include - the action string. Then, in your content provider, you must provide this column, and - when desired, provide data in this column. - The search manager will look at your suggestion cursor, using the string - provided here in order to select a column, and will use that to select a string from - the cursor. That string will be added to the - {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to - your searchable activity. To examine the string, use - {@link android.content.Intent#getStringExtra - getStringExtra(SearchManager.ACTION_MSG)}. If the data does not exist for the - selection suggestion, the action key will be ignored.Optional attribute. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#suggestActionMsgColumn}. - @attr name android:suggestActionMsgColumn - */ - public static final int SearchableActionKey_suggestActionMsgColumn = 3; - /** - Attributes that can be used with a SeekBar. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #SeekBar_thumb android:thumb} Draws the thumb on a seekbar.
{@link #SeekBar_thumbOffset android:thumbOffset} An offset for the thumb that allows it to extend out of the range of the track.
- @see #SeekBar_thumb - @see #SeekBar_thumbOffset - */ - public static final int[] SeekBar = { - 0x01010142, 0x01010143}; - /** -

- @attr description - Draws the thumb on a seekbar. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#thumb}. - @attr name android:thumb - */ - public static final int SeekBar_thumb = 0; - /** -

- @attr description - An offset for the thumb that allows it to extend out of the range of the track. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#thumbOffset}. - @attr name android:thumbOffset - */ - public static final int SeekBar_thumbOffset = 1; - /** - Attributes that can be used with a SelectionModeDrawables. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #SelectionModeDrawables_actionModeCopyDrawable android:actionModeCopyDrawable} Drawable to use for the Copy action button in Contextual Action Bar
{@link #SelectionModeDrawables_actionModeCutDrawable android:actionModeCutDrawable} Drawable to use for the Cut action button in Contextual Action Bar
{@link #SelectionModeDrawables_actionModePasteDrawable android:actionModePasteDrawable} Drawable to use for the Paste action button in Contextual Action Bar
{@link #SelectionModeDrawables_actionModeSelectAllDrawable android:actionModeSelectAllDrawable} Drawable to use for the Select all action button in Contextual Action Bar
- @see #SelectionModeDrawables_actionModeCopyDrawable - @see #SelectionModeDrawables_actionModeCutDrawable - @see #SelectionModeDrawables_actionModePasteDrawable - @see #SelectionModeDrawables_actionModeSelectAllDrawable - */ - public static final int[] SelectionModeDrawables = { - 0x01010311, 0x01010312, 0x01010313, 0x0101037e}; - /** -

- @attr description - Drawable to use for the Copy action button in Contextual Action Bar - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionModeCopyDrawable}. - @attr name android:actionModeCopyDrawable - */ - public static final int SelectionModeDrawables_actionModeCopyDrawable = 1; - /** -

- @attr description - Drawable to use for the Cut action button in Contextual Action Bar - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionModeCutDrawable}. - @attr name android:actionModeCutDrawable - */ - public static final int SelectionModeDrawables_actionModeCutDrawable = 0; - /** -

- @attr description - Drawable to use for the Paste action button in Contextual Action Bar - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionModePasteDrawable}. - @attr name android:actionModePasteDrawable - */ - public static final int SelectionModeDrawables_actionModePasteDrawable = 2; - /** -

- @attr description - Drawable to use for the Select all action button in Contextual Action Bar - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionModeSelectAllDrawable}. - @attr name android:actionModeSelectAllDrawable - */ - public static final int SelectionModeDrawables_actionModeSelectAllDrawable = 3; - /** - Use injected-location-setting as the root tag of the XML resource that - describes an injected "Location services" setting. Note that the status value (subtitle) - for the setting is specified dynamically by a subclass of SettingInjectorService. - -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #SettingInjectorService_icon android:icon} The icon for the preference, should refer to all apps covered by the setting.
{@link #SettingInjectorService_settingsActivity android:settingsActivity} The activity to launch when the setting is clicked on.
{@link #SettingInjectorService_title android:title} The title for the preference.
- @see #SettingInjectorService_icon - @see #SettingInjectorService_settingsActivity - @see #SettingInjectorService_title - */ - public static final int[] SettingInjectorService = { - 0x01010002, 0x010101e1, 0x01010225}; - /** -

- @attr description - The icon for the preference, should refer to all apps covered by the setting. Typically - a generic icon for the developer. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#icon}. - @attr name android:icon - */ - public static final int SettingInjectorService_icon = 0; - /** -

- @attr description - The activity to launch when the setting is clicked on. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#settingsActivity}. - @attr name android:settingsActivity - */ - public static final int SettingInjectorService_settingsActivity = 2; - /** -

- @attr description - The title for the preference. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#title}. - @attr name android:title - */ - public static final int SettingInjectorService_title = 1; - /** - Drawable used to draw shapes. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #ShapeDrawable_color android:color} Defines the color of the shape.
{@link #ShapeDrawable_dither android:dither} Enables or disables dithering.
{@link #ShapeDrawable_height android:height} Defines the height of the shape.
{@link #ShapeDrawable_width android:width} Defines the width of the shape.
- @see #ShapeDrawable_color - @see #ShapeDrawable_dither - @see #ShapeDrawable_height - @see #ShapeDrawable_width - */ - public static final int[] ShapeDrawable = { - 0x0101011c, 0x01010155, 0x01010159, 0x010101a5}; - /** -

- @attr description - Defines the color of the shape. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#color}. - @attr name android:color - */ - public static final int ShapeDrawable_color = 3; - /** -

- @attr description - Enables or disables dithering. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dither}. - @attr name android:dither - */ - public static final int ShapeDrawable_dither = 0; - /** -

- @attr description - Defines the height of the shape. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#height}. - @attr name android:height - */ - public static final int ShapeDrawable_height = 1; - /** -

- @attr description - Defines the width of the shape. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#width}. - @attr name android:width - */ - public static final int ShapeDrawable_width = 2; - /** - Defines the padding of a ShapeDrawable. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #ShapeDrawablePadding_bottom android:bottom} Bottom padding.
{@link #ShapeDrawablePadding_left android:left} Left padding.
{@link #ShapeDrawablePadding_right android:right} Right padding.
{@link #ShapeDrawablePadding_top android:top} Top padding.
- @see #ShapeDrawablePadding_bottom - @see #ShapeDrawablePadding_left - @see #ShapeDrawablePadding_right - @see #ShapeDrawablePadding_top - */ - public static final int[] ShapeDrawablePadding = { - 0x010101ad, 0x010101ae, 0x010101af, 0x010101b0}; - /** -

- @attr description - Bottom padding. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#bottom}. - @attr name android:bottom - */ - public static final int ShapeDrawablePadding_bottom = 3; - /** -

- @attr description - Left padding. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#left}. - @attr name android:left - */ - public static final int ShapeDrawablePadding_left = 0; - /** -

- @attr description - Right padding. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#right}. - @attr name android:right - */ - public static final int ShapeDrawablePadding_right = 2; - /** -

- @attr description - Top padding. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#top}. - @attr name android:top - */ - public static final int ShapeDrawablePadding_top = 1; - /** - * Attributes that can be used with a SizeAdaptiveLayout. - */ - public static final int[] SizeAdaptiveLayout = { - - }; - /** - Attributes that can be used with a SizeAdaptiveLayout_Layout. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #SizeAdaptiveLayout_Layout_layout_maxHeight android:layout_maxHeight} The maximum valid height for this item.
{@link #SizeAdaptiveLayout_Layout_layout_minHeight android:layout_minHeight} The minimum valid height for this item.
- @see #SizeAdaptiveLayout_Layout_layout_maxHeight - @see #SizeAdaptiveLayout_Layout_layout_minHeight - */ - public static final int[] SizeAdaptiveLayout_Layout = { - 0x0101045f, 0x01010460}; - /** -

- @attr description - The maximum valid height for this item. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - -
ConstantValueDescription
unbounded-1 Indicates that the view may be resized arbitrarily large.
-

This is a private symbol. - @attr name com.android.internal:layout_maxHeight - */ - public static final int SizeAdaptiveLayout_Layout_layout_maxHeight = 0; - /** -

- @attr description - The minimum valid height for this item. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:layout_minHeight - */ - public static final int SizeAdaptiveLayout_Layout_layout_minHeight = 1; - /** - Attributes that can be used with a SlidingChallengeLayout_Layout. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #SlidingChallengeLayout_Layout_layout_childType android:layout_childType} Some child types have special behavior.
{@link #SlidingChallengeLayout_Layout_layout_maxHeight android:layout_maxHeight} The maximum valid height for this item.
- @see #SlidingChallengeLayout_Layout_layout_childType - @see #SlidingChallengeLayout_Layout_layout_maxHeight - */ - public static final int[] SlidingChallengeLayout_Layout = { - 0x0101045f, 0x01010479}; - /** -

- @attr description - Some child types have special behavior. - - -

Must be one of the following constant values.

- - - - - - - - - - - - - -
ConstantValueDescription
none0 No special behavior. Layout will proceed as normal.
widget1 Widget container. - This will be resized in response to certain events.
challenge2 Security challenge container. - This will be dismissed/shown in response to certain events, - possibly obscuring widget elements.
userSwitcher3 User switcher. - This will consume space from the total layout area.
scrim4 Scrim. This will block access to child views that - come before it in the child list in bouncer mode.
widgets5 The home for widgets. All widgets will be descendents of this.
expandChallengeHandle6 This is a handle that is used for expanding the - security challenge container when it is collapsed.
pageDeleteDropTarget7 Delete drop target. This will be the drop target to delete pages.
-

This is a private symbol. - @attr name com.android.internal:layout_childType - */ - public static final int SlidingChallengeLayout_Layout_layout_childType = 1; - /** -

- @attr description - The maximum valid height for this item. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - -
ConstantValueDescription
unbounded-1 Indicates that the view may be resized arbitrarily large.
-

This is a private symbol. - @attr name com.android.internal:layout_maxHeight - */ - public static final int SlidingChallengeLayout_Layout_layout_maxHeight = 0; - /** - SlidingDrawer specific attributes. These attributes are used to configure - a SlidingDrawer from XML. -

Includes the following attributes:

- - - - - - - - - - - -
AttributeDescription
{@link #SlidingDrawer_allowSingleTap android:allowSingleTap} Indicates whether the drawer can be opened/closed by a single tap - on the handle.
{@link #SlidingDrawer_animateOnClick android:animateOnClick} Indicates whether the drawer should be opened/closed with an animation - when the user clicks the handle.
{@link #SlidingDrawer_bottomOffset android:bottomOffset} Extra offset for the handle at the bottom of the SlidingDrawer.
{@link #SlidingDrawer_content android:content} Identifier for the child that represents the drawer's content.
{@link #SlidingDrawer_handle android:handle} Identifier for the child that represents the drawer's handle.
{@link #SlidingDrawer_orientation android:orientation} Orientation of the SlidingDrawer.
{@link #SlidingDrawer_topOffset android:topOffset} Extra offset for the handle at the top of the SlidingDrawer.
- @see #SlidingDrawer_allowSingleTap - @see #SlidingDrawer_animateOnClick - @see #SlidingDrawer_bottomOffset - @see #SlidingDrawer_content - @see #SlidingDrawer_handle - @see #SlidingDrawer_orientation - @see #SlidingDrawer_topOffset - */ - public static final int[] SlidingDrawer = { - 0x010100c4, 0x01010257, 0x01010258, 0x01010259, - 0x0101025a, 0x0101025b, 0x0101025c}; - /** -

- @attr description - Indicates whether the drawer can be opened/closed by a single tap - on the handle. (If false, the user must drag or fling, or click - using the trackball, to open/close the drawer.) Default is true. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#allowSingleTap}. - @attr name android:allowSingleTap - */ - public static final int SlidingDrawer_allowSingleTap = 3; - /** -

- @attr description - Indicates whether the drawer should be opened/closed with an animation - when the user clicks the handle. Default is true. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#animateOnClick}. - @attr name android:animateOnClick - */ - public static final int SlidingDrawer_animateOnClick = 6; - /** -

- @attr description - Extra offset for the handle at the bottom of the SlidingDrawer. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#bottomOffset}. - @attr name android:bottomOffset - */ - public static final int SlidingDrawer_bottomOffset = 1; - /** -

- @attr description - Identifier for the child that represents the drawer's content. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#content}. - @attr name android:content - */ - public static final int SlidingDrawer_content = 5; - /** -

- @attr description - Identifier for the child that represents the drawer's handle. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#handle}. - @attr name android:handle - */ - public static final int SlidingDrawer_handle = 4; - /** -

- @attr description - Orientation of the SlidingDrawer. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
horizontal0 Defines an horizontal widget.
vertical1 Defines a vertical widget.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#orientation}. - @attr name android:orientation - */ - public static final int SlidingDrawer_orientation = 0; - /** -

- @attr description - Extra offset for the handle at the top of the SlidingDrawer. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#topOffset}. - @attr name android:topOffset - */ - public static final int SlidingDrawer_topOffset = 2; - /** - Attributes that can be used with a SlidingTab. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #SlidingTab_orientation android:orientation} Use "horizontal" for a row, "vertical" for a column.
- @see #SlidingTab_orientation - */ - public static final int[] SlidingTab = { - 0x010100c4}; - /** -

- @attr description - Use "horizontal" for a row, "vertical" for a column. The default is horizontal. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
horizontal0 Defines an horizontal widget.
vertical1 Defines a vertical widget.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#orientation}. - @attr name android:orientation - */ - public static final int SlidingTab_orientation = 0; - /** - Use spell-checker as the root tag of the XML resource that - describes an - {@link android.service.textservice.SpellCheckerService} service, which is - referenced from its - {@link android.view.textservice.SpellCheckerSession#SERVICE_META_DATA} - meta-data entry. Described here are the attributes that can be - included in that tag. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #SpellChecker_label android:label} The name of the spell checker.
{@link #SpellChecker_settingsActivity android:settingsActivity} Component name of an activity that allows the user to modify - the settings for this service.
- @see #SpellChecker_label - @see #SpellChecker_settingsActivity - */ - public static final int[] SpellChecker = { - 0x01010001, 0x01010225}; - /** -

- @attr description - The name of the spell checker. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#label}. - @attr name android:label - */ - public static final int SpellChecker_label = 0; - /** -

- @attr description - Component name of an activity that allows the user to modify - the settings for this service. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#settingsActivity}. - @attr name android:settingsActivity - */ - public static final int SpellChecker_settingsActivity = 1; - /** - This is the subtype of the spell checker. Subtype can describe locales (e.g. en_US, fr_FR...) -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #SpellChecker_Subtype_label android:label} The name of the subtype.
{@link #SpellChecker_Subtype_subtypeExtraValue android:subtypeExtraValue} The extra value of the subtype.
{@link #SpellChecker_Subtype_subtypeLocale android:subtypeLocale} The locale of the subtype.
- @see #SpellChecker_Subtype_label - @see #SpellChecker_Subtype_subtypeExtraValue - @see #SpellChecker_Subtype_subtypeLocale - */ - public static final int[] SpellChecker_Subtype = { - 0x01010001, 0x01010399, 0x0101039a}; - /** -

- @attr description - The name of the subtype. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#label}. - @attr name android:label - */ - public static final int SpellChecker_Subtype_label = 0; - /** -

- @attr description - The extra value of the subtype. This string can be any string and will be passed to - the SpellChecker. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#subtypeExtraValue}. - @attr name android:subtypeExtraValue - */ - public static final int SpellChecker_Subtype_subtypeExtraValue = 2; - /** -

- @attr description - The locale of the subtype. This string should be a locale (e.g. en_US, fr_FR...) - This is also used by the framework to know the supported locales - of the spell checker. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#subtypeLocale}. - @attr name android:subtypeLocale - */ - public static final int SpellChecker_Subtype_subtypeLocale = 1; - /** - Attributes that can be used with a Spinner. -

Includes the following attributes:

- - - - - - - - - - - - - - -
AttributeDescription
{@link #Spinner_disableChildrenWhenDisabled android:disableChildrenWhenDisabled} Whether this spinner should mark child views as enabled/disabled when - the spinner itself is enabled/disabled.
{@link #Spinner_dropDownHorizontalOffset android:dropDownHorizontalOffset} Horizontal offset from the spinner widget for positioning the dropdown - in spinnerMode="dropdown".
{@link #Spinner_dropDownSelector android:dropDownSelector} List selector to use for spinnerMode="dropdown" display.
{@link #Spinner_dropDownVerticalOffset android:dropDownVerticalOffset} Vertical offset from the spinner widget for positioning the dropdown in - spinnerMode="dropdown".
{@link #Spinner_dropDownWidth android:dropDownWidth} Width of the dropdown in spinnerMode="dropdown".
{@link #Spinner_gravity android:gravity} Gravity setting for positioning the currently selected item.
{@link #Spinner_popupBackground android:popupBackground} Background drawable to use for the dropdown in spinnerMode="dropdown".
{@link #Spinner_popupPromptView android:popupPromptView} Reference to a layout to use for displaying a prompt in the dropdown for - spinnerMode="dropdown".
{@link #Spinner_prompt android:prompt} The prompt to display when the spinner's dialog is shown.
{@link #Spinner_spinnerMode android:spinnerMode} Display mode for spinner options.
- @see #Spinner_disableChildrenWhenDisabled - @see #Spinner_dropDownHorizontalOffset - @see #Spinner_dropDownSelector - @see #Spinner_dropDownVerticalOffset - @see #Spinner_dropDownWidth - @see #Spinner_gravity - @see #Spinner_popupBackground - @see #Spinner_popupPromptView - @see #Spinner_prompt - @see #Spinner_spinnerMode - */ - public static final int[] Spinner = { - 0x010100af, 0x01010175, 0x01010176, 0x0101017b, - 0x01010262, 0x010102ac, 0x010102ad, 0x010102f1, - 0x0101043a, 0x0101043b}; - /** -

- @attr description - Whether this spinner should mark child views as enabled/disabled when - the spinner itself is enabled/disabled. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:disableChildrenWhenDisabled - */ - public static final int Spinner_disableChildrenWhenDisabled = 9; - /** -

- @attr description - Horizontal offset from the spinner widget for positioning the dropdown - in spinnerMode="dropdown". - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownHorizontalOffset}. - @attr name android:dropDownHorizontalOffset - */ - public static final int Spinner_dropDownHorizontalOffset = 5; - /** -

- @attr description - List selector to use for spinnerMode="dropdown" display. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownSelector}. - @attr name android:dropDownSelector - */ - public static final int Spinner_dropDownSelector = 1; - /** -

- @attr description - Vertical offset from the spinner widget for positioning the dropdown in - spinnerMode="dropdown". - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownVerticalOffset}. - @attr name android:dropDownVerticalOffset - */ - public static final int Spinner_dropDownVerticalOffset = 6; - /** -

- @attr description - Width of the dropdown in spinnerMode="dropdown". - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
fill_parent-1 The dropdown should fill the width of the screen. - This constant is deprecated starting from API Level 8 and - is replaced by {@code match_parent}.
match_parent-1 The dropdown should fit the width of the screen. - Introduced in API Level 8.
wrap_content-2 The dropdown should fit the width of its anchor.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownWidth}. - @attr name android:dropDownWidth - */ - public static final int Spinner_dropDownWidth = 4; - /** -

- @attr description - Gravity setting for positioning the currently selected item. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#gravity}. - @attr name android:gravity - */ - public static final int Spinner_gravity = 0; - /** -

- @attr description - Background drawable to use for the dropdown in spinnerMode="dropdown". - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#popupBackground}. - @attr name android:popupBackground - */ - public static final int Spinner_popupBackground = 2; - /** -

- @attr description - Reference to a layout to use for displaying a prompt in the dropdown for - spinnerMode="dropdown". This layout must contain a TextView with the id - {@code @android:id/text1} to be populated with the prompt text. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:popupPromptView - */ - public static final int Spinner_popupPromptView = 8; - /** -

- @attr description - The prompt to display when the spinner's dialog is shown. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#prompt}. - @attr name android:prompt - */ - public static final int Spinner_prompt = 3; - /** -

- @attr description - Display mode for spinner options. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
dialog0 Spinner options will be presented to the user as a dialog window.
dropdown1 Spinner options will be presented to the user as an inline dropdown - anchored to the spinner widget itself.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#spinnerMode}. - @attr name android:spinnerMode - */ - public static final int Spinner_spinnerMode = 7; - /** - Attributes that can be used with a StackView. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #StackView_clickColor android:clickColor} Color of the outline of click feedback.
{@link #StackView_resOutColor android:resOutColor} Color of the res-out outline.
- @see #StackView_clickColor - @see #StackView_resOutColor - */ - public static final int[] StackView = { - 0x01010437, 0x01010438}; - /** -

- @attr description - Color of the outline of click feedback. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:clickColor - */ - public static final int StackView_clickColor = 1; - /** -

- @attr description - Color of the res-out outline. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:resOutColor - */ - public static final int StackView_resOutColor = 0; - /** - Drawable used to render several states. Each state is represented by - a child drawable. -

Includes the following attributes:

- - - - - - - - - - - -
AttributeDescription
{@link #StateListDrawable_autoMirrored android:autoMirrored} Indicates if the drawable needs to be mirrored when its layout direction is - RTL (right-to-left).
{@link #StateListDrawable_constantSize android:constantSize} If true, the drawable's reported internal size will remain - constant as the state changes; the size is the maximum of all - of the states.
{@link #StateListDrawable_dither android:dither} Enables or disables dithering of the bitmap if the bitmap does not have the - same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with - an RGB 565 screen).
{@link #StateListDrawable_enterFadeDuration android:enterFadeDuration} Amount of time (in milliseconds) to fade in a new state drawable.
{@link #StateListDrawable_exitFadeDuration android:exitFadeDuration} Amount of time (in milliseconds) to fade out an old state drawable.
{@link #StateListDrawable_variablePadding android:variablePadding} If true, allows the drawable's padding to change based on the - current state that is selected.
{@link #StateListDrawable_visible android:visible} Indicates whether the drawable should be initially visible.
- @see #StateListDrawable_autoMirrored - @see #StateListDrawable_constantSize - @see #StateListDrawable_dither - @see #StateListDrawable_enterFadeDuration - @see #StateListDrawable_exitFadeDuration - @see #StateListDrawable_variablePadding - @see #StateListDrawable_visible - */ - public static final int[] StateListDrawable = { - 0x0101011c, 0x01010194, 0x01010195, 0x01010196, - 0x0101030c, 0x0101030d, 0x010103ea}; - /** -

- @attr description - Indicates if the drawable needs to be mirrored when its layout direction is - RTL (right-to-left). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#autoMirrored}. - @attr name android:autoMirrored - */ - public static final int StateListDrawable_autoMirrored = 6; - /** -

- @attr description - If true, the drawable's reported internal size will remain - constant as the state changes; the size is the maximum of all - of the states. If false, the size will vary based on the - current state. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#constantSize}. - @attr name android:constantSize - */ - public static final int StateListDrawable_constantSize = 3; - /** -

- @attr description - Enables or disables dithering of the bitmap if the bitmap does not have the - same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with - an RGB 565 screen). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dither}. - @attr name android:dither - */ - public static final int StateListDrawable_dither = 0; - /** -

- @attr description - Amount of time (in milliseconds) to fade in a new state drawable. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#enterFadeDuration}. - @attr name android:enterFadeDuration - */ - public static final int StateListDrawable_enterFadeDuration = 4; - /** -

- @attr description - Amount of time (in milliseconds) to fade out an old state drawable. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#exitFadeDuration}. - @attr name android:exitFadeDuration - */ - public static final int StateListDrawable_exitFadeDuration = 5; - /** -

- @attr description - If true, allows the drawable's padding to change based on the - current state that is selected. If false, the padding will - stay the same (based on the maximum padding of all the states). - Enabling this feature requires that the owner of the drawable - deal with performing layout when the state changes, which is - often not supported. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#variablePadding}. - @attr name android:variablePadding - */ - public static final int StateListDrawable_variablePadding = 2; - /** -

- @attr description - Indicates whether the drawable should be initially visible. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#visible}. - @attr name android:visible - */ - public static final int StateListDrawable_visible = 1; - /** Represents a single state inside a StateListDrawable. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #StateListDrawableItem_drawable android:drawable} Reference to a drawable resource to use for the state.
- @see #StateListDrawableItem_drawable - */ - public static final int[] StateListDrawableItem = { - 0x01010199 - }; - /** -

- @attr description - Reference to a drawable resource to use for the state. If not - given, the drawable must be defined by the first child tag. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#drawable}. - @attr name android:drawable - */ - public static final int StateListDrawableItem_drawable = 0; - /** - Attributes that can be used with a Storage. -

Includes the following attributes:

- - - - - - - - - - - - -
AttributeDescription
{@link #Storage_allowMassStorage android:allowMassStorage} true if the storage can be shared via USB mass storage
{@link #Storage_emulated android:emulated} true if the storage is emulated via the FUSE sdcard daemon
{@link #Storage_maxFileSize android:maxFileSize} maximum file size for the volume in megabytes, zero or unspecified if it is unbounded
{@link #Storage_mountPoint android:mountPoint} path to mount point for the storage
{@link #Storage_mtpReserve android:mtpReserve} number of megabytes of storage MTP should reserve for free storage - (used for emulated storage that is shared with system's data partition)
{@link #Storage_primary android:primary} true if the storage is the primary external storage
{@link #Storage_removable android:removable} true if the storage is removable
{@link #Storage_storageDescription android:storageDescription} user visible description of the storage
- @see #Storage_allowMassStorage - @see #Storage_emulated - @see #Storage_maxFileSize - @see #Storage_mountPoint - @see #Storage_mtpReserve - @see #Storage_primary - @see #Storage_removable - @see #Storage_storageDescription - */ - public static final int[] Storage = { - 0x01010469, 0x0101046a, 0x0101046b, 0x0101046c, - 0x0101046d, 0x0101046e, 0x0101046f, 0x01010470}; - /** -

- @attr description - true if the storage can be shared via USB mass storage - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:allowMassStorage - */ - public static final int Storage_allowMassStorage = 6; - /** -

- @attr description - true if the storage is emulated via the FUSE sdcard daemon - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:emulated - */ - public static final int Storage_emulated = 4; - /** -

- @attr description - maximum file size for the volume in megabytes, zero or unspecified if it is unbounded - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:maxFileSize - */ - public static final int Storage_maxFileSize = 7; - /** -

- @attr description - path to mount point for the storage - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:mountPoint - */ - public static final int Storage_mountPoint = 0; - /** -

- @attr description - number of megabytes of storage MTP should reserve for free storage - (used for emulated storage that is shared with system's data partition) - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:mtpReserve - */ - public static final int Storage_mtpReserve = 5; - /** -

- @attr description - true if the storage is the primary external storage - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:primary - */ - public static final int Storage_primary = 2; - /** -

- @attr description - true if the storage is removable - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:removable - */ - public static final int Storage_removable = 3; - /** -

- @attr description - user visible description of the storage - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:storageDescription - */ - public static final int Storage_storageDescription = 1; - /** - Attributes that can be used with a SuggestionSpan. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #SuggestionSpan_textUnderlineColor android:textUnderlineColor} The underline color
{@link #SuggestionSpan_textUnderlineThickness android:textUnderlineThickness} The underline thickness
- @see #SuggestionSpan_textUnderlineColor - @see #SuggestionSpan_textUnderlineThickness - */ - public static final int[] SuggestionSpan = { - 0x010103f4, 0x010103f5}; - /** -

- @attr description - The underline color - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This is a private symbol. - @attr name com.android.internal:textUnderlineColor - */ - public static final int SuggestionSpan_textUnderlineColor = 0; - /** -

- @attr description - The underline thickness - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This is a private symbol. - @attr name com.android.internal:textUnderlineThickness - */ - public static final int SuggestionSpan_textUnderlineThickness = 1; - /** - Attributes that can be used with a Switch. -

Includes the following attributes:

- - - - - - - - - - - - -
AttributeDescription
{@link #Switch_switchMinWidth android:switchMinWidth} Minimum width for the switch component
{@link #Switch_switchPadding android:switchPadding} Minimum space between the switch and caption text
{@link #Switch_switchTextAppearance android:switchTextAppearance} TextAppearance style for text displayed on the switch thumb.
{@link #Switch_textOff android:textOff} Text to use when the switch is in the unchecked/"off" state.
{@link #Switch_textOn android:textOn} Text to use when the switch is in the checked/"on" state.
{@link #Switch_thumb android:thumb} Drawable to use as the "thumb" that switches back and forth.
{@link #Switch_thumbTextPadding android:thumbTextPadding} Amount of padding on either side of text within the switch thumb.
{@link #Switch_track android:track} Drawable to use as the "track" that the switch thumb slides within.
- @see #Switch_switchMinWidth - @see #Switch_switchPadding - @see #Switch_switchTextAppearance - @see #Switch_textOff - @see #Switch_textOn - @see #Switch_thumb - @see #Switch_thumbTextPadding - @see #Switch_track - */ - public static final int[] Switch = { - 0x01010124, 0x01010125, 0x01010142, 0x0101036e, - 0x0101036f, 0x01010370, 0x01010371, 0x01010372}; - /** -

- @attr description - Minimum width for the switch component - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#switchMinWidth}. - @attr name android:switchMinWidth - */ - public static final int Switch_switchMinWidth = 5; - /** -

- @attr description - Minimum space between the switch and caption text - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#switchPadding}. - @attr name android:switchPadding - */ - public static final int Switch_switchPadding = 6; - /** -

- @attr description - TextAppearance style for text displayed on the switch thumb. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#switchTextAppearance}. - @attr name android:switchTextAppearance - */ - public static final int Switch_switchTextAppearance = 3; - /** -

- @attr description - Text to use when the switch is in the unchecked/"off" state. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textOff}. - @attr name android:textOff - */ - public static final int Switch_textOff = 1; - /** -

- @attr description - Text to use when the switch is in the checked/"on" state. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textOn}. - @attr name android:textOn - */ - public static final int Switch_textOn = 0; - /** -

- @attr description - Drawable to use as the "thumb" that switches back and forth. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#thumb}. - @attr name android:thumb - */ - public static final int Switch_thumb = 2; - /** -

- @attr description - Amount of padding on either side of text within the switch thumb. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#thumbTextPadding}. - @attr name android:thumbTextPadding - */ - public static final int Switch_thumbTextPadding = 7; - /** -

- @attr description - Drawable to use as the "track" that the switch thumb slides within. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#track}. - @attr name android:track - */ - public static final int Switch_track = 4; - /** - Attributes that can be used with a SwitchPreference. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #SwitchPreference_disableDependentsState android:disableDependentsState} The state (true for on, or false for off) that causes dependents to be disabled.
{@link #SwitchPreference_summaryOff android:summaryOff} The summary for the Preference in a PreferenceActivity screen when the - SwitchPreference is unchecked.
{@link #SwitchPreference_summaryOn android:summaryOn} The summary for the Preference in a PreferenceActivity screen when the - SwitchPreference is checked.
{@link #SwitchPreference_switchTextOff android:switchTextOff} The text used on the switch itself when in the "off" state.
{@link #SwitchPreference_switchTextOn android:switchTextOn} The text used on the switch itself when in the "on" state.
- @see #SwitchPreference_disableDependentsState - @see #SwitchPreference_summaryOff - @see #SwitchPreference_summaryOn - @see #SwitchPreference_switchTextOff - @see #SwitchPreference_switchTextOn - */ - public static final int[] SwitchPreference = { - 0x010101ef, 0x010101f0, 0x010101f1, 0x0101036b, - 0x0101036c}; - /** -

- @attr description - The state (true for on, or false for off) that causes dependents to be disabled. By default, - dependents will be disabled when this is unchecked, so the value of this preference is false. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#disableDependentsState}. - @attr name android:disableDependentsState - */ - public static final int SwitchPreference_disableDependentsState = 2; - /** -

- @attr description - The summary for the Preference in a PreferenceActivity screen when the - SwitchPreference is unchecked. If separate on/off summaries are not - needed, the summary attribute can be used instead. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#summaryOff}. - @attr name android:summaryOff - */ - public static final int SwitchPreference_summaryOff = 1; - /** -

- @attr description - The summary for the Preference in a PreferenceActivity screen when the - SwitchPreference is checked. If separate on/off summaries are not - needed, the summary attribute can be used instead. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#summaryOn}. - @attr name android:summaryOn - */ - public static final int SwitchPreference_summaryOn = 0; - /** -

- @attr description - The text used on the switch itself when in the "off" state. - This should be a very SHORT string, as it appears in a small space. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#switchTextOff}. - @attr name android:switchTextOff - */ - public static final int SwitchPreference_switchTextOff = 4; - /** -

- @attr description - The text used on the switch itself when in the "on" state. - This should be a very SHORT string, as it appears in a small space. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#switchTextOn}. - @attr name android:switchTextOn - */ - public static final int SwitchPreference_switchTextOn = 3; - /** - Use account-authenticator as the root tag of the XML resource that - describes an account authenticator. - -

Includes the following attributes:

- - - - - - - - - - - -
AttributeDescription
{@link #SyncAdapter_accountType android:accountType} The account type this authenticator handles.
{@link #SyncAdapter_allowParallelSyncs android:allowParallelSyncs} Set to true to tell the SyncManager that this SyncAdapter supports - multiple simultaneous syncs for the same account type and authority.
{@link #SyncAdapter_contentAuthority android:contentAuthority} the authority of a content provider.
{@link #SyncAdapter_isAlwaysSyncable android:isAlwaysSyncable} Set to true to tell the SyncManager to automatically call setIsSyncable(.
{@link #SyncAdapter_settingsActivity android:settingsActivity} If provided, specifies the action of the settings - activity for this SyncAdapter.
{@link #SyncAdapter_supportsUploading android:supportsUploading}
{@link #SyncAdapter_userVisible android:userVisible}
- @see #SyncAdapter_accountType - @see #SyncAdapter_allowParallelSyncs - @see #SyncAdapter_contentAuthority - @see #SyncAdapter_isAlwaysSyncable - @see #SyncAdapter_settingsActivity - @see #SyncAdapter_supportsUploading - @see #SyncAdapter_userVisible - */ - public static final int[] SyncAdapter = { - 0x01010225, 0x0101028f, 0x01010290, 0x01010291, - 0x0101029b, 0x01010332, 0x01010333}; - /** -

- @attr description - The account type this authenticator handles. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#accountType}. - @attr name android:accountType - */ - public static final int SyncAdapter_accountType = 1; - /** -

- @attr description - Set to true to tell the SyncManager that this SyncAdapter supports - multiple simultaneous syncs for the same account type and authority. - Otherwise the SyncManager will be sure not to issue a start sync request - to this SyncAdapter if the SyncAdapter is already syncing another account. - Defaults to false. - - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#allowParallelSyncs}. - @attr name android:allowParallelSyncs - */ - public static final int SyncAdapter_allowParallelSyncs = 5; - /** -

- @attr description - the authority of a content provider. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#contentAuthority}. - @attr name android:contentAuthority - */ - public static final int SyncAdapter_contentAuthority = 2; - /** -

- @attr description - Set to true to tell the SyncManager to automatically call setIsSyncable(..., ..., 1) - for the SyncAdapter instead of issuaing an initialization sync to the SyncAdapter. - Defaults to false. - - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#isAlwaysSyncable}. - @attr name android:isAlwaysSyncable - */ - public static final int SyncAdapter_isAlwaysSyncable = 6; - /** -

- @attr description - If provided, specifies the action of the settings - activity for this SyncAdapter. - - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#settingsActivity}. - @attr name android:settingsActivity - */ - public static final int SyncAdapter_settingsActivity = 0; - /** -

This symbol is the offset where the {@link android.R.attr#supportsUploading} - attribute's value can be found in the {@link #SyncAdapter} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:supportsUploading - */ - public static final int SyncAdapter_supportsUploading = 4; - /** -

This symbol is the offset where the {@link android.R.attr#userVisible} - attribute's value can be found in the {@link #SyncAdapter} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:userVisible - */ - public static final int SyncAdapter_userVisible = 3; - /** - Attributes that can be used with a TabWidget. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #TabWidget_divider android:divider} Drawable used to draw the divider between tabs.
{@link #TabWidget_tabLayout android:tabLayout} Layout used to organize each tab's content.
{@link #TabWidget_tabStripEnabled android:tabStripEnabled} Determines whether the strip under the tab indicators is drawn or not.
{@link #TabWidget_tabStripLeft android:tabStripLeft} Drawable used to draw the left part of the strip underneath the tabs.
{@link #TabWidget_tabStripRight android:tabStripRight} Drawable used to draw the right part of the strip underneath the tabs.
- @see #TabWidget_divider - @see #TabWidget_tabLayout - @see #TabWidget_tabStripEnabled - @see #TabWidget_tabStripLeft - @see #TabWidget_tabStripRight - */ - public static final int[] TabWidget = { - 0x01010129, 0x010102bb, 0x010102bc, 0x010102bd, - 0x01010439}; - /** -

- @attr description - Drawable used to draw the divider between tabs. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#divider}. - @attr name android:divider - */ - public static final int TabWidget_divider = 0; - /** -

- @attr description - Layout used to organize each tab's content. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:tabLayout - */ - public static final int TabWidget_tabLayout = 4; - /** -

- @attr description - Determines whether the strip under the tab indicators is drawn or not. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#tabStripEnabled}. - @attr name android:tabStripEnabled - */ - public static final int TabWidget_tabStripEnabled = 3; - /** -

- @attr description - Drawable used to draw the left part of the strip underneath the tabs. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#tabStripLeft}. - @attr name android:tabStripLeft - */ - public static final int TabWidget_tabStripLeft = 1; - /** -

- @attr description - Drawable used to draw the right part of the strip underneath the tabs. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#tabStripRight}. - @attr name android:tabStripRight - */ - public static final int TabWidget_tabStripRight = 2; - /** - Attributes that can be used with a TableLayout. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #TableLayout_collapseColumns android:collapseColumns} The zero-based index of the columns to collapse.
{@link #TableLayout_shrinkColumns android:shrinkColumns} The zero-based index of the columns to shrink.
{@link #TableLayout_stretchColumns android:stretchColumns} The zero-based index of the columns to stretch.
- @see #TableLayout_collapseColumns - @see #TableLayout_shrinkColumns - @see #TableLayout_stretchColumns - */ - public static final int[] TableLayout = { - 0x01010149, 0x0101014a, 0x0101014b}; - /** -

- @attr description - The zero-based index of the columns to collapse. The column indices - must be separated by a comma: 1, 2, 5. Illegal and duplicate - indices are ignored. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#collapseColumns}. - @attr name android:collapseColumns - */ - public static final int TableLayout_collapseColumns = 2; - /** -

- @attr description - The zero-based index of the columns to shrink. The column indices - must be separated by a comma: 1, 2, 5. Illegal and duplicate - indices are ignored. You can shrink all columns by using the - value "*" instead. Note that a column can be marked stretchable - and shrinkable at the same time. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#shrinkColumns}. - @attr name android:shrinkColumns - */ - public static final int TableLayout_shrinkColumns = 1; - /** -

- @attr description - The zero-based index of the columns to stretch. The column indices - must be separated by a comma: 1, 2, 5. Illegal and duplicate - indices are ignored. You can stretch all columns by using the - value "*" instead. Note that a column can be marked stretchable - and shrinkable at the same time. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#stretchColumns}. - @attr name android:stretchColumns - */ - public static final int TableLayout_stretchColumns = 0; - /** - * Attributes that can be used with a TableRow. - */ - public static final int[] TableRow = { - - }; - /** - Attributes that can be used with a TableRow_Cell. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #TableRow_Cell_layout_column android:layout_column} The index of the column in which this child should be.
{@link #TableRow_Cell_layout_span android:layout_span} Defines how many columns this child should span.
- @see #TableRow_Cell_layout_column - @see #TableRow_Cell_layout_span - */ - public static final int[] TableRow_Cell = { - 0x0101014c, 0x0101014d}; - /** -

- @attr description - The index of the column in which this child should be. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_column}. - @attr name android:layout_column - */ - public static final int TableRow_Cell_layout_column = 0; - /** -

- @attr description - Defines how many columns this child should span. Must be >= 1. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_span}. - @attr name android:layout_span - */ - public static final int TableRow_Cell_layout_span = 1; - /** - Attributes that can be used with a TextAppearance. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #TextAppearance_fontFamily android:fontFamily} Font family (named by string) for the text.
{@link #TextAppearance_shadowColor android:shadowColor} Place a shadow of the specified color behind the text.
{@link #TextAppearance_shadowDx android:shadowDx} Horizontal offset of the shadow.
{@link #TextAppearance_shadowDy android:shadowDy} Vertical offset of the shadow.
{@link #TextAppearance_shadowRadius android:shadowRadius} Radius of the shadow.
{@link #TextAppearance_textAllCaps android:textAllCaps} Present the text in ALL CAPS.
{@link #TextAppearance_textColor android:textColor} Text color.
{@link #TextAppearance_textColorHighlight android:textColorHighlight} Color of the text selection highlight.
{@link #TextAppearance_textColorHint android:textColorHint} Color of the hint text.
{@link #TextAppearance_textColorLink android:textColorLink} Color of the links.
{@link #TextAppearance_textSize android:textSize} Size of the text.
{@link #TextAppearance_textStyle android:textStyle} Style (bold, italic, bolditalic) for the text.
{@link #TextAppearance_typeface android:typeface} Typeface (normal, sans, serif, monospace) for the text.
- @see #TextAppearance_fontFamily - @see #TextAppearance_shadowColor - @see #TextAppearance_shadowDx - @see #TextAppearance_shadowDy - @see #TextAppearance_shadowRadius - @see #TextAppearance_textAllCaps - @see #TextAppearance_textColor - @see #TextAppearance_textColorHighlight - @see #TextAppearance_textColorHint - @see #TextAppearance_textColorLink - @see #TextAppearance_textSize - @see #TextAppearance_textStyle - @see #TextAppearance_typeface - */ - public static final int[] TextAppearance = { - 0x01010095, 0x01010096, 0x01010097, 0x01010098, - 0x01010099, 0x0101009a, 0x0101009b, 0x01010161, - 0x01010162, 0x01010163, 0x01010164, 0x0101038c, - 0x010103ac}; - /** -

- @attr description - Font family (named by string) for the text. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fontFamily}. - @attr name android:fontFamily - */ - public static final int TextAppearance_fontFamily = 12; - /** -

- @attr description - Place a shadow of the specified color behind the text. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#shadowColor}. - @attr name android:shadowColor - */ - public static final int TextAppearance_shadowColor = 7; - /** -

- @attr description - Horizontal offset of the shadow. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#shadowDx}. - @attr name android:shadowDx - */ - public static final int TextAppearance_shadowDx = 8; - /** -

- @attr description - Vertical offset of the shadow. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#shadowDy}. - @attr name android:shadowDy - */ - public static final int TextAppearance_shadowDy = 9; - /** -

- @attr description - Radius of the shadow. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#shadowRadius}. - @attr name android:shadowRadius - */ - public static final int TextAppearance_shadowRadius = 10; - /** -

- @attr description - Present the text in ALL CAPS. This may use a small-caps form when available. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAllCaps}. - @attr name android:textAllCaps - */ - public static final int TextAppearance_textAllCaps = 11; - /** -

- @attr description - Text color. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColor}. - @attr name android:textColor - */ - public static final int TextAppearance_textColor = 3; - /** -

- @attr description - Color of the text selection highlight. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorHighlight}. - @attr name android:textColorHighlight - */ - public static final int TextAppearance_textColorHighlight = 4; - /** -

- @attr description - Color of the hint text. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorHint}. - @attr name android:textColorHint - */ - public static final int TextAppearance_textColorHint = 5; - /** -

- @attr description - Color of the links. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorLink}. - @attr name android:textColorLink - */ - public static final int TextAppearance_textColorLink = 6; - /** -

- @attr description - Size of the text. Recommended dimension type for text is "sp" for scaled-pixels (example: 15sp). - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textSize}. - @attr name android:textSize - */ - public static final int TextAppearance_textSize = 0; - /** -

- @attr description - Style (bold, italic, bolditalic) for the text. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - -
ConstantValueDescription
normal0
bold1
italic2
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#textStyle}. - @attr name android:textStyle - */ - public static final int TextAppearance_textStyle = 2; - /** -

- @attr description - Typeface (normal, sans, serif, monospace) for the text. - - -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
normal0
sans1
serif2
monospace3
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#typeface}. - @attr name android:typeface - */ - public static final int TextAppearance_typeface = 1; - /** - Attributes that can be used with a TextClock. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #TextClock_format12Hour android:format12Hour} Specifies the formatting pattern used to show the time and/or date - in 12-hour mode.
{@link #TextClock_format24Hour android:format24Hour} Specifies the formatting pattern used to show the time and/or date - in 24-hour mode.
{@link #TextClock_timeZone android:timeZone} Specifies the time zone to use.
- @see #TextClock_format12Hour - @see #TextClock_format24Hour - @see #TextClock_timeZone - */ - public static final int[] TextClock = { - 0x010103ca, 0x010103cb, 0x010103cc}; - /** -

- @attr description - Specifies the formatting pattern used to show the time and/or date - in 12-hour mode. Please refer to {@link android.text.format.DateFormat} - for a complete description of accepted formatting patterns. - The default pattern is a locale-appropriate equivalent of "h:mm a". - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#format12Hour}. - @attr name android:format12Hour - */ - public static final int TextClock_format12Hour = 0; - /** -

- @attr description - Specifies the formatting pattern used to show the time and/or date - in 24-hour mode. Please refer to {@link android.text.format.DateFormat} - for a complete description of accepted formatting patterns. - The default pattern is a locale-appropriate equivalent of "H:mm". - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#format24Hour}. - @attr name android:format24Hour - */ - public static final int TextClock_format24Hour = 1; - /** -

- @attr description - Specifies the time zone to use. When this attribute is specified, the - TextClock will ignore the time zone of the system. To use the user's - time zone, do not specify this attribute. The default value is the - user's time zone. Please refer to {@link java.util.TimeZone} for more - information about time zone ids. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#timeZone}. - @attr name android:timeZone - */ - public static final int TextClock_timeZone = 2; - /** - * Attributes that can be used with a TextSwitcher. - */ - public static final int[] TextSwitcher = { - - }; - /** - Use tts-engine as the root tag of the XML resource that - describes a text to speech engine implemented as a subclass of - {@link android.speech.tts.TextToSpeechService}. - - The XML resource must be referenced from its - {@link android.speech.tts.TextToSpeech.Engine#SERVICE_META_DATA} meta-data - entry. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #TextToSpeechEngine_settingsActivity android:settingsActivity} Component name of an activity that allows the user to modify - the settings for this service.
- @see #TextToSpeechEngine_settingsActivity - */ - public static final int[] TextToSpeechEngine = { - 0x01010225}; - /** -

- @attr description - Component name of an activity that allows the user to modify - the settings for this service. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#settingsActivity}. - @attr name android:settingsActivity - */ - public static final int TextToSpeechEngine_settingsActivity = 0; - /** - Attributes that can be used with a TextView. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #TextView_autoLink android:autoLink} Controls whether links such as urls and email addresses are - automatically found and converted to clickable links.
{@link #TextView_autoText android:autoText} If set, specifies that this TextView has a textual input method - and automatically corrects some common spelling errors.
{@link #TextView_bufferType android:bufferType} Determines the minimum type that getText() will return.
{@link #TextView_capitalize android:capitalize} If set, specifies that this TextView has a textual input method - and should automatically capitalize what the user types.
{@link #TextView_cursorVisible android:cursorVisible} Makes the cursor visible (the default) or invisible.
{@link #TextView_digits android:digits} If set, specifies that this TextView has a numeric input method - and that these specific characters are the ones that it will - accept.
{@link #TextView_drawableBottom android:drawableBottom} The drawable to be drawn below the text.
{@link #TextView_drawableEnd android:drawableEnd} The drawable to be drawn to the end of the text.
{@link #TextView_drawableLeft android:drawableLeft} The drawable to be drawn to the left of the text.
{@link #TextView_drawablePadding android:drawablePadding} The padding between the drawables and the text.
{@link #TextView_drawableRight android:drawableRight} The drawable to be drawn to the right of the text.
{@link #TextView_drawableStart android:drawableStart} The drawable to be drawn to the start of the text.
{@link #TextView_drawableTop android:drawableTop} The drawable to be drawn above the text.
{@link #TextView_editable android:editable} If set, specifies that this TextView has an input method.
{@link #TextView_editorExtras android:editorExtras} Reference to an - {@link android.R.styleable#InputExtras <input-extras>} - XML resource containing additional data to - supply to an input method, which is private to the implementation - of the input method.
{@link #TextView_ellipsize android:ellipsize} If set, causes words that are longer than the view is wide - to be ellipsized instead of broken in the middle.
{@link #TextView_ems android:ems} Makes the TextView be exactly this many ems wide.
{@link #TextView_enabled android:enabled} Specifies whether the widget is enabled.
{@link #TextView_fontFamily android:fontFamily} Font family (named by string) for the text.
{@link #TextView_freezesText android:freezesText} If set, the text view will include its current complete text - inside of its frozen icicle in addition to meta-data such as - the current cursor position.
{@link #TextView_gravity android:gravity} Specifies how to align the text by the view's x- and/or y-axis - when the text is smaller than the view.
{@link #TextView_height android:height} Makes the TextView be exactly this many pixels tall.
{@link #TextView_hint android:hint} Hint text to display when the text is empty.
{@link #TextView_imeActionId android:imeActionId} Supply a value for - {@link android.view.inputmethod.EditorInfo#actionId EditorInfo.actionId} - used when an input method is connected to the text view.
{@link #TextView_imeActionLabel android:imeActionLabel} Supply a value for - {@link android.view.inputmethod.EditorInfo#actionLabel EditorInfo.actionLabel} - used when an input method is connected to the text view.
{@link #TextView_imeOptions android:imeOptions} Additional features you can enable in an IME associated with an editor - to improve the integration with your application.
{@link #TextView_includeFontPadding android:includeFontPadding} Leave enough room for ascenders and descenders instead of - using the font ascent and descent strictly.
{@link #TextView_inputMethod android:inputMethod} If set, specifies that this TextView should use the specified - input method (specified by fully-qualified class name).
{@link #TextView_inputType android:inputType} The type of data being placed in a text field, used to help an - input method decide how to let the user enter text.
{@link #TextView_lineSpacingExtra android:lineSpacingExtra} Extra spacing between lines of text.
{@link #TextView_lineSpacingMultiplier android:lineSpacingMultiplier} Extra spacing between lines of text, as a multiplier.
{@link #TextView_lines android:lines} Makes the TextView be exactly this many lines tall.
{@link #TextView_linksClickable android:linksClickable} If set to false, keeps the movement method from being set - to the link movement method even if autoLink causes links - to be found.
{@link #TextView_marqueeRepeatLimit android:marqueeRepeatLimit} The number of times to repeat the marquee animation.
{@link #TextView_maxEms android:maxEms} Makes the TextView be at most this many ems wide.
{@link #TextView_maxHeight android:maxHeight} Makes the TextView be at most this many pixels tall.
{@link #TextView_maxLength android:maxLength} Set an input filter to constrain the text length to the - specified number.
{@link #TextView_maxLines android:maxLines} Makes the TextView be at most this many lines tall.
{@link #TextView_maxWidth android:maxWidth} Makes the TextView be at most this many pixels wide.
{@link #TextView_minEms android:minEms} Makes the TextView be at least this many ems wide.
{@link #TextView_minHeight android:minHeight} Makes the TextView be at least this many pixels tall.
{@link #TextView_minLines android:minLines} Makes the TextView be at least this many lines tall.
{@link #TextView_minWidth android:minWidth} Makes the TextView be at least this many pixels wide.
{@link #TextView_numeric android:numeric} If set, specifies that this TextView has a numeric input method.
{@link #TextView_password android:password} Whether the characters of the field are displayed as - password dots instead of themselves.
{@link #TextView_phoneNumber android:phoneNumber} If set, specifies that this TextView has a phone number input - method.
{@link #TextView_privateImeOptions android:privateImeOptions} An addition content type description to supply to the input - method attached to the text view, which is private to the - implementation of the input method.
{@link #TextView_scrollHorizontally android:scrollHorizontally} Whether the text is allowed to be wider than the view (and - therefore can be scrolled horizontally).
{@link #TextView_selectAllOnFocus android:selectAllOnFocus} If the text is selectable, select it all when the view takes - focus.
{@link #TextView_shadowColor android:shadowColor} Place a shadow of the specified color behind the text.
{@link #TextView_shadowDx android:shadowDx} Horizontal offset of the shadow.
{@link #TextView_shadowDy android:shadowDy} Vertical offset of the shadow.
{@link #TextView_shadowRadius android:shadowRadius} Radius of the shadow.
{@link #TextView_singleLine android:singleLine} Constrains the text to a single horizontally scrolling line - instead of letting it wrap onto multiple lines, and advances - focus instead of inserting a newline when you press the - enter key.
{@link #TextView_text android:text} Text to display.
{@link #TextView_textAllCaps android:textAllCaps} Present the text in ALL CAPS.
{@link #TextView_textAppearance android:textAppearance} Base text color, typeface, size, and style.
{@link #TextView_textColor android:textColor} Text color.
{@link #TextView_textColorHighlight android:textColorHighlight} Color of the text selection highlight.
{@link #TextView_textColorHint android:textColorHint} Color of the hint text.
{@link #TextView_textColorLink android:textColorLink} Text color for links.
{@link #TextView_textCursorDrawable android:textCursorDrawable} Reference to a drawable that will be drawn under the insertion cursor.
{@link #TextView_textEditNoPasteWindowLayout android:textEditNoPasteWindowLayout} Variation of textEditPasteWindowLayout displayed when the clipboard is empty.
{@link #TextView_textEditPasteWindowLayout android:textEditPasteWindowLayout} The layout of the view that is displayed on top of the cursor to paste inside a - TextEdit field.
{@link #TextView_textEditSideNoPasteWindowLayout android:textEditSideNoPasteWindowLayout} Variation of textEditSidePasteWindowLayout displayed when the clipboard is empty.
{@link #TextView_textEditSidePasteWindowLayout android:textEditSidePasteWindowLayout} Used instead of textEditPasteWindowLayout when the window is moved on the side of the - insertion cursor because it would be clipped if it were positioned on top.
{@link #TextView_textEditSuggestionItemLayout android:textEditSuggestionItemLayout} Layout of the TextView item that will populate the suggestion popup window.
{@link #TextView_textIsSelectable android:textIsSelectable} Indicates that the content of a non-editable text can be selected.
{@link #TextView_textScaleX android:textScaleX} Sets the horizontal scaling factor for the text.
{@link #TextView_textSelectHandle android:textSelectHandle} Reference to a drawable that will be used to display a text selection - anchor for positioning the cursor within text.
{@link #TextView_textSelectHandleLeft android:textSelectHandleLeft} Reference to a drawable that will be used to display a text selection - anchor on the left side of a selection region.
{@link #TextView_textSelectHandleRight android:textSelectHandleRight} Reference to a drawable that will be used to display a text selection - anchor on the right side of a selection region.
{@link #TextView_textSize android:textSize} Size of the text.
{@link #TextView_textStyle android:textStyle} Style (bold, italic, bolditalic) for the text.
{@link #TextView_typeface android:typeface} Typeface (normal, sans, serif, monospace) for the text.
{@link #TextView_width android:width} Makes the TextView be exactly this many pixels wide.
- @see #TextView_autoLink - @see #TextView_autoText - @see #TextView_bufferType - @see #TextView_capitalize - @see #TextView_cursorVisible - @see #TextView_digits - @see #TextView_drawableBottom - @see #TextView_drawableEnd - @see #TextView_drawableLeft - @see #TextView_drawablePadding - @see #TextView_drawableRight - @see #TextView_drawableStart - @see #TextView_drawableTop - @see #TextView_editable - @see #TextView_editorExtras - @see #TextView_ellipsize - @see #TextView_ems - @see #TextView_enabled - @see #TextView_fontFamily - @see #TextView_freezesText - @see #TextView_gravity - @see #TextView_height - @see #TextView_hint - @see #TextView_imeActionId - @see #TextView_imeActionLabel - @see #TextView_imeOptions - @see #TextView_includeFontPadding - @see #TextView_inputMethod - @see #TextView_inputType - @see #TextView_lineSpacingExtra - @see #TextView_lineSpacingMultiplier - @see #TextView_lines - @see #TextView_linksClickable - @see #TextView_marqueeRepeatLimit - @see #TextView_maxEms - @see #TextView_maxHeight - @see #TextView_maxLength - @see #TextView_maxLines - @see #TextView_maxWidth - @see #TextView_minEms - @see #TextView_minHeight - @see #TextView_minLines - @see #TextView_minWidth - @see #TextView_numeric - @see #TextView_password - @see #TextView_phoneNumber - @see #TextView_privateImeOptions - @see #TextView_scrollHorizontally - @see #TextView_selectAllOnFocus - @see #TextView_shadowColor - @see #TextView_shadowDx - @see #TextView_shadowDy - @see #TextView_shadowRadius - @see #TextView_singleLine - @see #TextView_text - @see #TextView_textAllCaps - @see #TextView_textAppearance - @see #TextView_textColor - @see #TextView_textColorHighlight - @see #TextView_textColorHint - @see #TextView_textColorLink - @see #TextView_textCursorDrawable - @see #TextView_textEditNoPasteWindowLayout - @see #TextView_textEditPasteWindowLayout - @see #TextView_textEditSideNoPasteWindowLayout - @see #TextView_textEditSidePasteWindowLayout - @see #TextView_textEditSuggestionItemLayout - @see #TextView_textIsSelectable - @see #TextView_textScaleX - @see #TextView_textSelectHandle - @see #TextView_textSelectHandleLeft - @see #TextView_textSelectHandleRight - @see #TextView_textSize - @see #TextView_textStyle - @see #TextView_typeface - @see #TextView_width - */ - public static final int[] TextView = { - 0x0101000e, 0x01010034, 0x01010095, 0x01010096, - 0x01010097, 0x01010098, 0x01010099, 0x0101009a, - 0x0101009b, 0x010100ab, 0x010100af, 0x010100b0, - 0x010100b1, 0x0101011f, 0x01010120, 0x0101013f, - 0x01010140, 0x0101014e, 0x0101014f, 0x01010150, - 0x01010151, 0x01010152, 0x01010153, 0x01010154, - 0x01010155, 0x01010156, 0x01010157, 0x01010158, - 0x01010159, 0x0101015a, 0x0101015b, 0x0101015c, - 0x0101015d, 0x0101015e, 0x0101015f, 0x01010160, - 0x01010161, 0x01010162, 0x01010163, 0x01010164, - 0x01010165, 0x01010166, 0x01010167, 0x01010168, - 0x01010169, 0x0101016a, 0x0101016b, 0x0101016c, - 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, - 0x01010171, 0x01010217, 0x01010218, 0x0101021d, - 0x01010220, 0x01010223, 0x01010224, 0x01010264, - 0x01010265, 0x01010266, 0x010102c5, 0x010102c6, - 0x010102c7, 0x01010314, 0x01010315, 0x01010316, - 0x0101035e, 0x0101035f, 0x01010362, 0x01010374, - 0x0101038c, 0x01010392, 0x01010393, 0x010103ac}; - /** -

- @attr description - Controls whether links such as urls and email addresses are - automatically found and converted to clickable links. The default - value is "none", disabling this feature. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - -
ConstantValueDescription
none0x00 Match no patterns (default).
web0x01 Match Web URLs.
email0x02 Match email addresses.
phone0x04 Match phone numbers.
map0x08 Match map addresses.
all0x0f Match all patterns (equivalent to web|email|phone|map).
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#autoLink}. - @attr name android:autoLink - */ - public static final int TextView_autoLink = 11; - /** -

- @attr description - If set, specifies that this TextView has a textual input method - and automatically corrects some common spelling errors. - The default is "false". - {@deprecated Use inputType instead.} - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#autoText}. - @attr name android:autoText - */ - @Deprecated - public static final int TextView_autoText = 45; - /** -

- @attr description - Determines the minimum type that getText() will return. - The default is "normal". - Note that EditText and LogTextBox always return Editable, - even if you specify something less powerful here. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
normal0 Can return any CharSequence, possibly a - Spanned one if the source text was Spanned.
spannable1 Can only return Spannable.
editable2 Can only return Spannable and Editable.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#bufferType}. - @attr name android:bufferType - */ - public static final int TextView_bufferType = 17; - /** -

- @attr description - If set, specifies that this TextView has a textual input method - and should automatically capitalize what the user types. - The default is "none". - {@deprecated Use inputType instead.} - - -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
none0 Don't automatically capitalize anything.
sentences1 Capitalize the first word of each sentence.
words2 Capitalize the first letter of every word.
characters3 Capitalize every character.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#capitalize}. - @attr name android:capitalize - */ - @Deprecated - public static final int TextView_capitalize = 44; - /** -

- @attr description - Makes the cursor visible (the default) or invisible. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#cursorVisible}. - @attr name android:cursorVisible - */ - public static final int TextView_cursorVisible = 21; - /** -

- @attr description - If set, specifies that this TextView has a numeric input method - and that these specific characters are the ones that it will - accept. - If this is set, numeric is implied to be true. - The default is false. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#digits}. - @attr name android:digits - */ - public static final int TextView_digits = 41; - /** -

- @attr description - The drawable to be drawn below the text. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#drawableBottom}. - @attr name android:drawableBottom - */ - public static final int TextView_drawableBottom = 49; - /** -

- @attr description - The drawable to be drawn to the end of the text. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#drawableEnd}. - @attr name android:drawableEnd - */ - public static final int TextView_drawableEnd = 74; - /** -

- @attr description - The drawable to be drawn to the left of the text. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#drawableLeft}. - @attr name android:drawableLeft - */ - public static final int TextView_drawableLeft = 50; - /** -

- @attr description - The padding between the drawables and the text. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#drawablePadding}. - @attr name android:drawablePadding - */ - public static final int TextView_drawablePadding = 52; - /** -

- @attr description - The drawable to be drawn to the right of the text. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#drawableRight}. - @attr name android:drawableRight - */ - public static final int TextView_drawableRight = 51; - /** -

- @attr description - The drawable to be drawn to the start of the text. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#drawableStart}. - @attr name android:drawableStart - */ - public static final int TextView_drawableStart = 73; - /** -

- @attr description - The drawable to be drawn above the text. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#drawableTop}. - @attr name android:drawableTop - */ - public static final int TextView_drawableTop = 48; - /** -

- @attr description - If set, specifies that this TextView has an input method. - It will be a textual one unless it has otherwise been specified. - For TextView, this is false by default. For EditText, it is - true by default. - {@deprecated Use inputType instead.} - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#editable}. - @attr name android:editable - */ - @Deprecated - public static final int TextView_editable = 46; - /** -

- @attr description - Reference to an - {@link android.R.styleable#InputExtras <input-extras>} - XML resource containing additional data to - supply to an input method, which is private to the implementation - of the input method. This simply fills in - the {@link android.view.inputmethod.EditorInfo#extras - EditorInfo.extras} field when the input - method is connected. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#editorExtras}. - @attr name android:editorExtras - */ - public static final int TextView_editorExtras = 58; - /** -

- @attr description - If set, causes words that are longer than the view is wide - to be ellipsized instead of broken in the middle. - You will often also want to set scrollHorizontally or singleLine - as well so that the text as a whole is also constrained to - a single line instead of still allowed to be broken onto - multiple lines. - - -

Must be one of the following constant values.

- - - - - - - - - - -
ConstantValueDescription
none0
start1
middle2
end3
marquee4
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#ellipsize}. - @attr name android:ellipsize - */ - public static final int TextView_ellipsize = 9; - /** -

- @attr description - Makes the TextView be exactly this many ems wide. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#ems}. - @attr name android:ems - */ - public static final int TextView_ems = 27; - /** -

- @attr description - Specifies whether the widget is enabled. The interpretation of the enabled state varies by subclass. - For example, a non-enabled EditText prevents the user from editing the contained text, and - a non-enabled Button prevents the user from tapping the button. - The appearance of enabled and non-enabled widgets may differ, if the drawables referenced - from evaluating state_enabled differ. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#enabled}. - @attr name android:enabled - */ - public static final int TextView_enabled = 0; - /** -

- @attr description - Font family (named by string) for the text. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fontFamily}. - @attr name android:fontFamily - */ - public static final int TextView_fontFamily = 75; - /** -

- @attr description - If set, the text view will include its current complete text - inside of its frozen icicle in addition to meta-data such as - the current cursor position. By default this is disabled; - it can be useful when the contents of a text view is not stored - in a persistent place such as a content provider. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#freezesText}. - @attr name android:freezesText - */ - public static final int TextView_freezesText = 47; - /** -

- @attr description - Specifies how to align the text by the view's x- and/or y-axis - when the text is smaller than the view. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of - the child clipped to its container's bounds. - The clip will be based on the vertical gravity: a top gravity will clip the bottom - edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of - the child clipped to its container's bounds. - The clip will be based on the horizontal gravity: a left gravity will clip the right - edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#gravity}. - @attr name android:gravity - */ - public static final int TextView_gravity = 10; - /** -

- @attr description - Makes the TextView be exactly this many pixels tall. - You could get the same effect by specifying this number in the - layout parameters. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#height}. - @attr name android:height - */ - public static final int TextView_height = 24; - /** -

- @attr description - Hint text to display when the text is empty. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#hint}. - @attr name android:hint - */ - public static final int TextView_hint = 19; - /** -

- @attr description - Supply a value for - {@link android.view.inputmethod.EditorInfo#actionId EditorInfo.actionId} - used when an input method is connected to the text view. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#imeActionId}. - @attr name android:imeActionId - */ - public static final int TextView_imeActionId = 61; - /** -

- @attr description - Supply a value for - {@link android.view.inputmethod.EditorInfo#actionLabel EditorInfo.actionLabel} - used when an input method is connected to the text view. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#imeActionLabel}. - @attr name android:imeActionLabel - */ - public static final int TextView_imeActionLabel = 60; - /** -

- @attr description - Additional features you can enable in an IME associated with an editor - to improve the integration with your application. The constants - here correspond to those defined by - {@link android.view.inputmethod.EditorInfo#imeOptions}. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
normal0x00000000 There are no special semantics associated with this editor.
actionUnspecified0x00000000 There is no specific action associated with this editor, let the - editor come up with its own if it can. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_NULL}.
actionNone0x00000001 This editor has no action associated with it. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_NONE}.
actionGo0x00000002 The action key performs a "go" - operation to take the user to the target of the text they typed. - Typically used, for example, when entering a URL. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_GO}.
actionSearch0x00000003 The action key performs a "search" - operation, taking the user to the results of searching for the text - the have typed (in whatever context is appropriate). - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEARCH}.
actionSend0x00000004 The action key performs a "send" - operation, delivering the text to its target. This is typically used - when composing a message. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEND}.
actionNext0x00000005 The action key performs a "next" - operation, taking the user to the next field that will accept text. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_NEXT}.
actionDone0x00000006 The action key performs a "done" - operation, closing the soft input method. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_DONE}.
actionPrevious0x00000007 The action key performs a "previous" - operation, taking the user to the previous field that will accept text. - Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_ACTION_PREVIOUS}.
flagNoFullscreen0x2000000 Used to request that the IME never go - into fullscreen mode. Applications need to be aware that the flag is not - a guarantee, and not all IMEs will respect it. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}.

flagNavigatePrevious0x4000000 Like flagNavigateNext, but - specifies there is something interesting that a backward navigation - can focus on. If the user selects the IME's facility to backward - navigate, this will show up in the application as an actionPrevious - at {@link android.view.inputmethod.InputConnection#performEditorAction(int) - InputConnection.performEditorAction(int)}. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}.

flagNavigateNext0x8000000 Used to specify that there is something - interesting that a forward navigation can focus on. This is like using - actionNext, except allows the IME to be multiline (with - an enter key) as well as provide forward navigation. Note that some - IMEs may not be able to do this, especially when running on a small - screen where there is little space. In that case it does not need to - present a UI for this option. Like actionNext, if the - user selects the IME's facility to forward navigate, this will show up - in the application at - {@link android.view.inputmethod.InputConnection#performEditorAction(int) - InputConnection.performEditorAction(int)}. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NAVIGATE_NEXT}.

flagNoExtractUi0x10000000 Used to specify that the IME does not need - to show its extracted text UI. For input methods that may be fullscreen, - often when in landscape mode, this allows them to be smaller and let part - of the application be shown behind. Though there will likely be limited - access to the application available from the user, it can make the - experience of a (mostly) fullscreen IME less jarring. Note that when - this flag is specified the IME may not be set up to be able - to display text, so it should only be used in situations where this is - not needed. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_EXTRACT_UI}.

flagNoAccessoryAction0x20000000 Used in conjunction with a custom action, this indicates that the - action should not be available as an accessory button when the - input method is full-screen. - Note that by setting this flag, there can be cases where the action - is simply never available to the user. Setting this generally means - that you think showing text being edited is more important than the - action you have supplied. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ACCESSORY_ACTION}.

flagNoEnterAction0x40000000 Used in conjunction with a custom action, - this indicates that the action should not be available in-line as - a replacement for the "enter" key. Typically this is - because the action has such a significant impact or is not recoverable - enough that accidentally hitting it should be avoided, such as sending - a message. Note that {@link android.widget.TextView} will - automatically set this flag for you on multi-line text views. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ENTER_ACTION}.

flagForceAscii0x80000000 Used to request that the IME should be capable of inputting ASCII - characters. The intention of this flag is to ensure that the user - can type Roman alphabet characters in a {@link android.widget.TextView} - used for, typically, account ID or password input. It is expected that IMEs - normally are able to input ASCII even without being told so (such IMEs - already respect this flag in a sense), but there could be some cases they - aren't when, for instance, only non-ASCII input languagaes like Arabic, - Greek, Hebrew, Russian are enabled in the IME. Applications need to be - aware that the flag is not a guarantee, and not all IMEs will respect it. - However, it is strongly recommended for IME authors to respect this flag - especially when their IME could end up with a state that has only non-ASCII - input languages enabled. -

Corresponds to - {@link android.view.inputmethod.EditorInfo#IME_FLAG_FORCE_ASCII}.

-

This corresponds to the global attribute - resource symbol {@link android.R.attr#imeOptions}. - @attr name android:imeOptions - */ - public static final int TextView_imeOptions = 59; - /** -

- @attr description - Leave enough room for ascenders and descenders instead of - using the font ascent and descent strictly. (Normally true). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#includeFontPadding}. - @attr name android:includeFontPadding - */ - public static final int TextView_includeFontPadding = 34; - /** -

- @attr description - If set, specifies that this TextView should use the specified - input method (specified by fully-qualified class name). - {@deprecated Use inputType instead.} - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#inputMethod}. - @attr name android:inputMethod - */ - @Deprecated - public static final int TextView_inputMethod = 43; - /** -

- @attr description - The type of data being placed in a text field, used to help an - input method decide how to let the user enter text. The constants - here correspond to those defined by - {@link android.text.InputType}. Generally you can select - a single value, though some can be combined together as - indicated. Setting this attribute to anything besides - none also implies that the text is editable. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ConstantValueDescription
none0x00000000 There is no content type. The text is not editable.
text0x00000001 Just plain old text. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_NORMAL}.
textCapCharacters0x00001001 Can be combined with text and its variations to - request capitalization of all characters. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_CHARACTERS}.
textCapWords0x00002001 Can be combined with text and its variations to - request capitalization of the first character of every word. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_WORDS}.
textCapSentences0x00004001 Can be combined with text and its variations to - request capitalization of the first character of every sentence. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_SENTENCES}.
textAutoCorrect0x00008001 Can be combined with text and its variations to - request auto-correction of text being input. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_CORRECT}.
textAutoComplete0x00010001 Can be combined with text and its variations to - specify that this field will be doing its own auto-completion and - talking with the input method appropriately. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_COMPLETE}.
textMultiLine0x00020001 Can be combined with text and its variations to - allow multiple lines of text in the field. If this flag is not set, - the text field will be constrained to a single line. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_MULTI_LINE}.
textImeMultiLine0x00040001 Can be combined with text and its variations to - indicate that though the regular text view should not be multiple - lines, the IME should provide multiple lines if it can. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_IME_MULTI_LINE}.
textNoSuggestions0x00080001 Can be combined with text and its variations to - indicate that the IME should not show any - dictionary-based word suggestions. Corresponds to - {@link android.text.InputType#TYPE_TEXT_FLAG_NO_SUGGESTIONS}.
textUri0x00000011 Text that will be used as a URI. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_URI}.
textEmailAddress0x00000021 Text that will be used as an e-mail address. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_ADDRESS}.
textEmailSubject0x00000031 Text that is being supplied as the subject of an e-mail. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_SUBJECT}.
textShortMessage0x00000041 Text that is the content of a short message. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_SHORT_MESSAGE}.
textLongMessage0x00000051 Text that is the content of a long message. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_LONG_MESSAGE}.
textPersonName0x00000061 Text that is the name of a person. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_PERSON_NAME}.
textPostalAddress0x00000071 Text that is being supplied as a postal mailing address. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_POSTAL_ADDRESS}.
textPassword0x00000081 Text that is a password. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_PASSWORD}.
textVisiblePassword0x00000091 Text that is a password that should be visible. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_VISIBLE_PASSWORD}.
textWebEditText0x000000a1 Text that is being supplied as text in a web form. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EDIT_TEXT}.
textFilter0x000000b1 Text that is filtering some other data. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_FILTER}.
textPhonetic0x000000c1 Text that is for phonetic pronunciation, such as a phonetic name - field in a contact entry. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_PHONETIC}.
textWebEmailAddress0x000000d1 Text that will be used as an e-mail address on a web form. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS}.
textWebPassword0x000000e1 Text that will be used as a password on a web form. Corresponds to - {@link android.text.InputType#TYPE_CLASS_TEXT} | - {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_PASSWORD}.
number0x00000002 A numeric only field. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_VARIATION_NORMAL}.
numberSigned0x00001002 Can be combined with number and its other options to - allow a signed number. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_FLAG_SIGNED}.
numberDecimal0x00002002 Can be combined with number and its other options to - allow a decimal (fractional) number. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_FLAG_DECIMAL}.
numberPassword0x00000012 A numeric password field. Corresponds to - {@link android.text.InputType#TYPE_CLASS_NUMBER} | - {@link android.text.InputType#TYPE_NUMBER_VARIATION_PASSWORD}.
phone0x00000003 For entering a phone number. Corresponds to - {@link android.text.InputType#TYPE_CLASS_PHONE}.
datetime0x00000004 For entering a date and time. Corresponds to - {@link android.text.InputType#TYPE_CLASS_DATETIME} | - {@link android.text.InputType#TYPE_DATETIME_VARIATION_NORMAL}.
date0x00000014 For entering a date. Corresponds to - {@link android.text.InputType#TYPE_CLASS_DATETIME} | - {@link android.text.InputType#TYPE_DATETIME_VARIATION_DATE}.
time0x00000024 For entering a time. Corresponds to - {@link android.text.InputType#TYPE_CLASS_DATETIME} | - {@link android.text.InputType#TYPE_DATETIME_VARIATION_TIME}.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#inputType}. - @attr name android:inputType - */ - public static final int TextView_inputType = 56; - /** -

- @attr description - Extra spacing between lines of text. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#lineSpacingExtra}. - @attr name android:lineSpacingExtra - */ - public static final int TextView_lineSpacingExtra = 53; - /** -

- @attr description - Extra spacing between lines of text, as a multiplier. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#lineSpacingMultiplier}. - @attr name android:lineSpacingMultiplier - */ - public static final int TextView_lineSpacingMultiplier = 54; - /** -

- @attr description - Makes the TextView be exactly this many lines tall. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#lines}. - @attr name android:lines - */ - public static final int TextView_lines = 23; - /** -

- @attr description - If set to false, keeps the movement method from being set - to the link movement method even if autoLink causes links - to be found. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#linksClickable}. - @attr name android:linksClickable - */ - public static final int TextView_linksClickable = 12; - /** -

- @attr description - The number of times to repeat the marquee animation. Only applied if the - TextView has marquee enabled. - - -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - -
ConstantValueDescription
marquee_forever-1 Indicates that marquee should repeat indefinitely.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#marqueeRepeatLimit}. - @attr name android:marqueeRepeatLimit - */ - public static final int TextView_marqueeRepeatLimit = 55; - /** -

- @attr description - Makes the TextView be at most this many ems wide. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#maxEms}. - @attr name android:maxEms - */ - public static final int TextView_maxEms = 26; - /** -

- @attr description - Makes the TextView be at most this many pixels tall. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#maxHeight}. - @attr name android:maxHeight - */ - public static final int TextView_maxHeight = 14; - /** -

- @attr description - Set an input filter to constrain the text length to the - specified number. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#maxLength}. - @attr name android:maxLength - */ - public static final int TextView_maxLength = 35; - /** -

- @attr description - Makes the TextView be at most this many lines tall. - - When used on an editable text, the inputType attribute's value must be - combined with the textMultiLine flag for the maxLines attribute to apply. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#maxLines}. - @attr name android:maxLines - */ - public static final int TextView_maxLines = 22; - /** -

- @attr description - Makes the TextView be at most this many pixels wide. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#maxWidth}. - @attr name android:maxWidth - */ - public static final int TextView_maxWidth = 13; - /** -

- @attr description - Makes the TextView be at least this many ems wide. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#minEms}. - @attr name android:minEms - */ - public static final int TextView_minEms = 29; - /** -

- @attr description - Makes the TextView be at least this many pixels tall. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#minHeight}. - @attr name android:minHeight - */ - public static final int TextView_minHeight = 16; - /** -

- @attr description - Makes the TextView be at least this many lines tall. - - When used on an editable text, the inputType attribute's value must be - combined with the textMultiLine flag for the minLines attribute to apply. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#minLines}. - @attr name android:minLines - */ - public static final int TextView_minLines = 25; - /** -

- @attr description - Makes the TextView be at least this many pixels wide. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#minWidth}. - @attr name android:minWidth - */ - public static final int TextView_minWidth = 15; - /** -

- @attr description - If set, specifies that this TextView has a numeric input method. - The default is false. - {@deprecated Use inputType instead.} - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - -
ConstantValueDescription
integer0x01 Input is numeric.
signed0x03 Input is numeric, with sign allowed.
decimal0x05 Input is numeric, with decimals allowed.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#numeric}. - @attr name android:numeric - */ - @Deprecated - public static final int TextView_numeric = 40; - /** -

- @attr description - Whether the characters of the field are displayed as - password dots instead of themselves. - {@deprecated Use inputType instead.} - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#password}. - @attr name android:password - */ - @Deprecated - public static final int TextView_password = 31; - /** -

- @attr description - If set, specifies that this TextView has a phone number input - method. The default is false. - {@deprecated Use inputType instead.} - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#phoneNumber}. - @attr name android:phoneNumber - */ - @Deprecated - public static final int TextView_phoneNumber = 42; - /** -

- @attr description - An addition content type description to supply to the input - method attached to the text view, which is private to the - implementation of the input method. This simply fills in - the {@link android.view.inputmethod.EditorInfo#privateImeOptions - EditorInfo.privateImeOptions} field when the input - method is connected. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#privateImeOptions}. - @attr name android:privateImeOptions - */ - public static final int TextView_privateImeOptions = 57; - /** -

- @attr description - Whether the text is allowed to be wider than the view (and - therefore can be scrolled horizontally). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scrollHorizontally}. - @attr name android:scrollHorizontally - */ - public static final int TextView_scrollHorizontally = 30; - /** -

- @attr description - If the text is selectable, select it all when the view takes - focus. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#selectAllOnFocus}. - @attr name android:selectAllOnFocus - */ - public static final int TextView_selectAllOnFocus = 33; - /** -

- @attr description - Place a shadow of the specified color behind the text. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#shadowColor}. - @attr name android:shadowColor - */ - public static final int TextView_shadowColor = 36; - /** -

- @attr description - Horizontal offset of the shadow. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#shadowDx}. - @attr name android:shadowDx - */ - public static final int TextView_shadowDx = 37; - /** -

- @attr description - Vertical offset of the shadow. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#shadowDy}. - @attr name android:shadowDy - */ - public static final int TextView_shadowDy = 38; - /** -

- @attr description - Radius of the shadow. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#shadowRadius}. - @attr name android:shadowRadius - */ - public static final int TextView_shadowRadius = 39; - /** -

- @attr description - Constrains the text to a single horizontally scrolling line - instead of letting it wrap onto multiple lines, and advances - focus instead of inserting a newline when you press the - enter key. - - The default value is false (multi-line wrapped text mode) for non-editable text, but if - you specify any value for inputType, the default is true (single-line input field mode). - - {@deprecated This attribute is deprecated. Use maxLines instead to change - the layout of a static text, and use the textMultiLine flag in the - inputType attribute instead for editable text views (if both singleLine and inputType - are supplied, the inputType flags will override the value of singleLine). } - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#singleLine}. - @attr name android:singleLine - */ - @Deprecated - public static final int TextView_singleLine = 32; - /** -

- @attr description - Text to display. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#text}. - @attr name android:text - */ - public static final int TextView_text = 18; - /** -

- @attr description - Present the text in ALL CAPS. This may use a small-caps form when available. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAllCaps}. - @attr name android:textAllCaps - */ - public static final int TextView_textAllCaps = 72; - /** -

- @attr description - Base text color, typeface, size, and style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAppearance}. - @attr name android:textAppearance - */ - public static final int TextView_textAppearance = 1; - /** -

- @attr description - Text color. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColor}. - @attr name android:textColor - */ - public static final int TextView_textColor = 5; - /** -

- @attr description - Color of the text selection highlight. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorHighlight}. - @attr name android:textColorHighlight - */ - public static final int TextView_textColorHighlight = 6; - /** -

- @attr description - Color of the hint text. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorHint}. - @attr name android:textColorHint - */ - public static final int TextView_textColorHint = 7; - /** -

- @attr description - Text color for links. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorLink}. - @attr name android:textColorLink - */ - public static final int TextView_textColorLink = 8; - /** -

- @attr description - Reference to a drawable that will be drawn under the insertion cursor. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textCursorDrawable}. - @attr name android:textCursorDrawable - */ - public static final int TextView_textCursorDrawable = 70; - /** -

- @attr description - Variation of textEditPasteWindowLayout displayed when the clipboard is empty. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textEditNoPasteWindowLayout}. - @attr name android:textEditNoPasteWindowLayout - */ - public static final int TextView_textEditNoPasteWindowLayout = 66; - /** -

- @attr description - The layout of the view that is displayed on top of the cursor to paste inside a - TextEdit field. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textEditPasteWindowLayout}. - @attr name android:textEditPasteWindowLayout - */ - public static final int TextView_textEditPasteWindowLayout = 65; - /** -

- @attr description - Variation of textEditSidePasteWindowLayout displayed when the clipboard is empty. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textEditSideNoPasteWindowLayout}. - @attr name android:textEditSideNoPasteWindowLayout - */ - public static final int TextView_textEditSideNoPasteWindowLayout = 69; - /** -

- @attr description - Used instead of textEditPasteWindowLayout when the window is moved on the side of the - insertion cursor because it would be clipped if it were positioned on top. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textEditSidePasteWindowLayout}. - @attr name android:textEditSidePasteWindowLayout - */ - public static final int TextView_textEditSidePasteWindowLayout = 68; - /** -

- @attr description - Layout of the TextView item that will populate the suggestion popup window. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textEditSuggestionItemLayout}. - @attr name android:textEditSuggestionItemLayout - */ - public static final int TextView_textEditSuggestionItemLayout = 71; - /** -

- @attr description - Indicates that the content of a non-editable text can be selected. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textIsSelectable}. - @attr name android:textIsSelectable - */ - public static final int TextView_textIsSelectable = 67; - /** -

- @attr description - Sets the horizontal scaling factor for the text. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textScaleX}. - @attr name android:textScaleX - */ - public static final int TextView_textScaleX = 20; - /** -

- @attr description - Reference to a drawable that will be used to display a text selection - anchor for positioning the cursor within text. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textSelectHandle}. - @attr name android:textSelectHandle - */ - public static final int TextView_textSelectHandle = 64; - /** -

- @attr description - Reference to a drawable that will be used to display a text selection - anchor on the left side of a selection region. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textSelectHandleLeft}. - @attr name android:textSelectHandleLeft - */ - public static final int TextView_textSelectHandleLeft = 62; - /** -

- @attr description - Reference to a drawable that will be used to display a text selection - anchor on the right side of a selection region. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textSelectHandleRight}. - @attr name android:textSelectHandleRight - */ - public static final int TextView_textSelectHandleRight = 63; - /** -

- @attr description - Size of the text. Recommended dimension type for text is "sp" for scaled-pixels (example: 15sp). - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textSize}. - @attr name android:textSize - */ - public static final int TextView_textSize = 2; - /** -

- @attr description - Style (bold, italic, bolditalic) for the text. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - -
ConstantValueDescription
normal0
bold1
italic2
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#textStyle}. - @attr name android:textStyle - */ - public static final int TextView_textStyle = 4; - /** -

- @attr description - Typeface (normal, sans, serif, monospace) for the text. - - -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
normal0
sans1
serif2
monospace3
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#typeface}. - @attr name android:typeface - */ - public static final int TextView_typeface = 3; - /** -

- @attr description - Makes the TextView be exactly this many pixels wide. - You could get the same effect by specifying this number in the - layout parameters. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#width}. - @attr name android:width - */ - public static final int TextView_width = 28; - /** - Attributes that can be used with a TextViewAppearance. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #TextViewAppearance_textAppearance android:textAppearance} Base text color, typeface, size, and style.
- @see #TextViewAppearance_textAppearance - */ - public static final int[] TextViewAppearance = { - 0x01010034}; - /** -

- @attr description - Base text color, typeface, size, and style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAppearance}. - @attr name android:textAppearance - */ - public static final int TextViewAppearance_textAppearance = 0; - /** - Attributes that can be used with a TextViewMultiLineBackgroundState. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #TextViewMultiLineBackgroundState_state_multiline android:state_multiline} State identifier indicating a TextView has a multi-line layout.
- @see #TextViewMultiLineBackgroundState_state_multiline - */ - public static final int[] TextViewMultiLineBackgroundState = { - 0x0101034d}; - /** -

- @attr description - State identifier indicating a TextView has a multi-line layout. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_multiline}. - @attr name android:state_multiline - */ - public static final int TextViewMultiLineBackgroundState_state_multiline = 0; - /** - These are the standard attributes that make up a complete theme. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #Theme_absListViewStyle android:absListViewStyle} Default AbsListView style.
{@link #Theme_accessibilityFocusedDrawable android:accessibilityFocusedDrawable} The drawable for accessibility focused views.
{@link #Theme_actionBarDivider android:actionBarDivider} Custom divider drawable to use for elements in the action bar.
{@link #Theme_actionBarItemBackground android:actionBarItemBackground} Custom item state list drawable background for action bar items.
{@link #Theme_actionBarSize android:actionBarSize} Size of the Action Bar, including the contextual - bar used to present Action Modes.
{@link #Theme_actionBarSplitStyle android:actionBarSplitStyle} Reference to a style for the split Action Bar.
{@link #Theme_actionBarStyle android:actionBarStyle} Reference to a style for the Action Bar
{@link #Theme_actionBarTabBarStyle android:actionBarTabBarStyle}
{@link #Theme_actionBarTabStyle android:actionBarTabStyle} Default style for tabs within an action bar
{@link #Theme_actionBarTabTextStyle android:actionBarTabTextStyle}
{@link #Theme_actionBarWidgetTheme android:actionBarWidgetTheme} Reference to a theme that should be used to inflate widgets - and layouts destined for the action bar.
{@link #Theme_actionButtonStyle android:actionButtonStyle} Default action button style.
{@link #Theme_actionDropDownStyle android:actionDropDownStyle} Default ActionBar dropdown style.
{@link #Theme_actionMenuTextAppearance android:actionMenuTextAppearance} TextAppearance style that will be applied to text that - appears within action menu items.
{@link #Theme_actionMenuTextColor android:actionMenuTextColor} Color for text that appears within action menu items.
{@link #Theme_actionModeBackground android:actionModeBackground} Background drawable to use for action mode UI
{@link #Theme_actionModeCloseButtonStyle android:actionModeCloseButtonStyle}
{@link #Theme_actionModeCloseDrawable android:actionModeCloseDrawable} Drawable to use for the close action mode button
{@link #Theme_actionModeCopyDrawable android:actionModeCopyDrawable} Drawable to use for the Copy action button in Contextual Action Bar
{@link #Theme_actionModeCutDrawable android:actionModeCutDrawable} Drawable to use for the Cut action button in Contextual Action Bar
{@link #Theme_actionModeFindDrawable android:actionModeFindDrawable} Drawable to use for the Find action button in WebView selection action modes
{@link #Theme_actionModePasteDrawable android:actionModePasteDrawable} Drawable to use for the Paste action button in Contextual Action Bar
{@link #Theme_actionModePopupWindowStyle android:actionModePopupWindowStyle} PopupWindow style to use for action modes when showing as a window overlay.
{@link #Theme_actionModeSelectAllDrawable android:actionModeSelectAllDrawable} Drawable to use for the Select all action button in Contextual Action Bar
{@link #Theme_actionModeShareDrawable android:actionModeShareDrawable} Drawable to use for the Share action button in WebView selection action modes
{@link #Theme_actionModeSplitBackground android:actionModeSplitBackground} Background drawable to use for action mode UI in the lower split bar
{@link #Theme_actionModeStyle android:actionModeStyle}
{@link #Theme_actionModeWebSearchDrawable android:actionModeWebSearchDrawable} Drawable to use for the Web Search action button in WebView selection action modes
{@link #Theme_actionOverflowButtonStyle android:actionOverflowButtonStyle}
{@link #Theme_activatedBackgroundIndicator android:activatedBackgroundIndicator} Drawable used as a background for activated items.
{@link #Theme_activityChooserViewStyle android:activityChooserViewStyle} Default ActivityChooserView style.
{@link #Theme_alertDialogButtonGroupStyle android:alertDialogButtonGroupStyle}
{@link #Theme_alertDialogCenterButtons android:alertDialogCenterButtons}
{@link #Theme_alertDialogIcon android:alertDialogIcon} Icon drawable to use for alerts
{@link #Theme_alertDialogStyle android:alertDialogStyle}
{@link #Theme_alertDialogTheme android:alertDialogTheme} Theme to use for alert dialogs spawned from this theme.
{@link #Theme_autoCompleteTextViewStyle android:autoCompleteTextViewStyle} Default AutoCompleteTextView style.
{@link #Theme_backgroundDimAmount android:backgroundDimAmount} Default background dim amount when a menu, dialog, or something similar pops up.
{@link #Theme_backgroundDimEnabled android:backgroundDimEnabled} Control whether dimming behind the window is enabled.
{@link #Theme_borderlessButtonStyle android:borderlessButtonStyle} Style for buttons without an explicit border, often used in groups.
{@link #Theme_buttonBarButtonStyle android:buttonBarButtonStyle} Style for buttons within button bars
{@link #Theme_buttonBarStyle android:buttonBarStyle} Style for button bars
{@link #Theme_buttonStyle android:buttonStyle} Normal Button style.
{@link #Theme_buttonStyleInset android:buttonStyleInset} Button style to inset into an EditText.
{@link #Theme_buttonStyleSmall android:buttonStyleSmall} Small Button style.
{@link #Theme_buttonStyleToggle android:buttonStyleToggle} ToggleButton style.
{@link #Theme_calendarViewStyle android:calendarViewStyle} The CalendarView style.
{@link #Theme_candidatesTextStyleSpans android:candidatesTextStyleSpans} A styled string, specifying the style to be used for showing - inline candidate text when composing with an input method.
{@link #Theme_checkBoxPreferenceStyle android:checkBoxPreferenceStyle} Default style for CheckBoxPreference.
{@link #Theme_checkboxStyle android:checkboxStyle} Default Checkbox style.
{@link #Theme_checkedTextViewStyle android:checkedTextViewStyle} Default CheckedTextView style.
{@link #Theme_colorActivatedHighlight android:colorActivatedHighlight} Default highlight color for items that are - activated.
{@link #Theme_colorBackground android:colorBackground} Color that matches (as closely as possible) the window background.
{@link #Theme_colorBackgroundCacheHint android:colorBackgroundCacheHint} This is a hint for a solid color that can be used for caching - rendered views.
{@link #Theme_colorFocusedHighlight android:colorFocusedHighlight} Default highlight color for items that are - focused.
{@link #Theme_colorForeground android:colorForeground} Default color of foreground imagery.
{@link #Theme_colorForegroundInverse android:colorForegroundInverse} Default color of foreground imagery on an inverted background.
{@link #Theme_colorLongPressedHighlight android:colorLongPressedHighlight} Default highlight color for items that are long-pressed.
{@link #Theme_colorMultiSelectHighlight android:colorMultiSelectHighlight} Default highlight color for items in multiple selection - mode.
{@link #Theme_colorPressedHighlight android:colorPressedHighlight} Default highlight color for items that are pressed.
{@link #Theme_datePickerStyle android:datePickerStyle} The DatePicker style.
{@link #Theme_detailsElementBackground android:detailsElementBackground} Background that can be used behind parts of a UI that provide - details on data the user is selecting.
{@link #Theme_dialogCustomTitleDecorLayout android:dialogCustomTitleDecorLayout} Window decor layout to use in dialog mode with custom titles
{@link #Theme_dialogPreferenceStyle android:dialogPreferenceStyle} Default style for DialogPreference.
{@link #Theme_dialogTheme android:dialogTheme} Theme to use for dialogs spawned from this theme.
{@link #Theme_dialogTitleDecorLayout android:dialogTitleDecorLayout} Window decor layout to use in dialog mode with title only
{@link #Theme_dialogTitleIconsDecorLayout android:dialogTitleIconsDecorLayout} Window decor layout to use in dialog mode with icons
{@link #Theme_disabledAlpha android:disabledAlpha} Default disabled alpha for widgets that set enabled/disabled alpha programmatically.
{@link #Theme_dividerHorizontal android:dividerHorizontal} Drawable to use for generic horizontal dividers.
{@link #Theme_dividerVertical android:dividerVertical} Drawable to use for generic vertical dividers.
{@link #Theme_dropDownHintAppearance android:dropDownHintAppearance} Default style for drop down hints.
{@link #Theme_dropDownItemStyle android:dropDownItemStyle} Default style for drop down items.
{@link #Theme_dropDownListViewStyle android:dropDownListViewStyle} Default ListView style for drop downs.
{@link #Theme_dropDownSpinnerStyle android:dropDownSpinnerStyle} Default dropdown Spinner style.
{@link #Theme_dropdownListPreferredItemHeight android:dropdownListPreferredItemHeight} The preferred item height for dropdown lists.
{@link #Theme_editTextBackground android:editTextBackground} EditText background drawable.
{@link #Theme_editTextColor android:editTextColor} EditText text foreground color.
{@link #Theme_editTextPreferenceStyle android:editTextPreferenceStyle} Default style for EditTextPreference.
{@link #Theme_editTextStyle android:editTextStyle} Default EditText style.
{@link #Theme_errorMessageAboveBackground android:errorMessageAboveBackground} Background used instead of errorMessageBackground when the popup has to be above.
{@link #Theme_errorMessageBackground android:errorMessageBackground} Popup text displayed in TextView when setError is used.
{@link #Theme_expandableListPreferredChildIndicatorLeft android:expandableListPreferredChildIndicatorLeft} The preferred left bound for an expandable list child's indicator.
{@link #Theme_expandableListPreferredChildIndicatorRight android:expandableListPreferredChildIndicatorRight} The preferred right bound for an expandable list child's indicator.
{@link #Theme_expandableListPreferredChildPaddingLeft android:expandableListPreferredChildPaddingLeft} The preferred left padding for an expandable list item that is a child.
{@link #Theme_expandableListPreferredItemIndicatorLeft android:expandableListPreferredItemIndicatorLeft} The preferred left bound for an expandable list item's indicator.
{@link #Theme_expandableListPreferredItemIndicatorRight android:expandableListPreferredItemIndicatorRight} The preferred right bound for an expandable list item's indicator.
{@link #Theme_expandableListPreferredItemPaddingLeft android:expandableListPreferredItemPaddingLeft} The preferred left padding for an expandable list item (for child-specific layouts, - use expandableListPreferredChildPaddingLeft).
{@link #Theme_expandableListViewStyle android:expandableListViewStyle} Default ExpandableListView style.
{@link #Theme_expandableListViewWhiteStyle android:expandableListViewWhiteStyle} ExpandableListView with white background.
{@link #Theme_fastScrollOverlayPosition android:fastScrollOverlayPosition} Position of the fast scroll index overlay window.
{@link #Theme_fastScrollPreviewBackgroundLeft android:fastScrollPreviewBackgroundLeft} Drawable to use as the fast scroll index preview window background - when shown on the left.
{@link #Theme_fastScrollPreviewBackgroundRight android:fastScrollPreviewBackgroundRight} Drawable to use as the fast scroll index preview window background - when shown on the right.
{@link #Theme_fastScrollTextColor android:fastScrollTextColor} Text color for the fast scroll index overlay.
{@link #Theme_fastScrollThumbDrawable android:fastScrollThumbDrawable} Drawable to use as the fast scroll thumb.
{@link #Theme_fastScrollTrackDrawable android:fastScrollTrackDrawable} Drawable to use as the track for the fast scroll thumb.
{@link #Theme_findOnPageNextDrawable android:findOnPageNextDrawable} Drawable for WebView find-on-page dialogue's "next" button.
{@link #Theme_findOnPagePreviousDrawable android:findOnPagePreviousDrawable} Drawable for WebView find-on-page dialogue's "previous" button.
{@link #Theme_galleryItemBackground android:galleryItemBackground} The preferred background for gallery items.
{@link #Theme_galleryStyle android:galleryStyle} Default Gallery style.
{@link #Theme_gestureOverlayViewStyle android:gestureOverlayViewStyle} Default GestureOverlayView style.
{@link #Theme_gridViewStyle android:gridViewStyle} Default GridView style.
{@link #Theme_homeAsUpIndicator android:homeAsUpIndicator} Specifies a drawable to use for the 'home as up' indicator.
{@link #Theme_horizontalScrollViewStyle android:horizontalScrollViewStyle} Default HorizontalScrollView style.
{@link #Theme_imageButtonStyle android:imageButtonStyle} The style resource to use for an ImageButton.
{@link #Theme_imageWellStyle android:imageWellStyle} The style resource to use for an ImageButton that is an image well.
{@link #Theme_listChoiceBackgroundIndicator android:listChoiceBackgroundIndicator} Drawable used as a background for selected list items.
{@link #Theme_listChoiceIndicatorMultiple android:listChoiceIndicatorMultiple} Drawable to use for multiple choice indicators.
{@link #Theme_listChoiceIndicatorSingle android:listChoiceIndicatorSingle} Drawable to use for single choice indicators.
{@link #Theme_listDivider android:listDivider} The drawable for the list divider.
{@link #Theme_listDividerAlertDialog android:listDividerAlertDialog} The list divider used in alert dialogs.
{@link #Theme_listPopupWindowStyle android:listPopupWindowStyle} Default ListPopupWindow style.
{@link #Theme_listPreferredItemHeight android:listPreferredItemHeight} The preferred list item height.
{@link #Theme_listPreferredItemHeightLarge android:listPreferredItemHeightLarge} A larger, more robust list item height.
{@link #Theme_listPreferredItemHeightSmall android:listPreferredItemHeightSmall} A smaller, sleeker list item height.
{@link #Theme_listPreferredItemPaddingEnd android:listPreferredItemPaddingEnd} The preferred padding along the end edge of list items.
{@link #Theme_listPreferredItemPaddingLeft android:listPreferredItemPaddingLeft} The preferred padding along the left edge of list items.
{@link #Theme_listPreferredItemPaddingRight android:listPreferredItemPaddingRight} The preferred padding along the right edge of list items.
{@link #Theme_listPreferredItemPaddingStart android:listPreferredItemPaddingStart} The preferred padding along the start edge of list items.
{@link #Theme_listSeparatorTextViewStyle android:listSeparatorTextViewStyle} TextView style for list separators.
{@link #Theme_listViewStyle android:listViewStyle} Default ListView style.
{@link #Theme_listViewWhiteStyle android:listViewWhiteStyle} ListView with white background.
{@link #Theme_mapViewStyle android:mapViewStyle} Default MapView style.
{@link #Theme_mediaRouteButtonStyle android:mediaRouteButtonStyle} Default style for the MediaRouteButton widget.
{@link #Theme_numberPickerStyle android:numberPickerStyle} NumberPicker style.
{@link #Theme_panelBackground android:panelBackground} The background of a panel when it is inset from the left and right edges of the screen.
{@link #Theme_panelColorBackground android:panelColorBackground} Color that matches (as closely as possible) the panel background.
{@link #Theme_panelColorForeground android:panelColorForeground} Default color of foreground panel imagery.
{@link #Theme_panelFullBackground android:panelFullBackground} The background of a panel when it extends to the left and right edges of the screen.
{@link #Theme_panelMenuIsCompact android:panelMenuIsCompact}
{@link #Theme_panelMenuListTheme android:panelMenuListTheme}
{@link #Theme_panelMenuListWidth android:panelMenuListWidth}
{@link #Theme_panelTextAppearance android:panelTextAppearance} Default appearance of panel text.
{@link #Theme_pointerStyle android:pointerStyle} Reference to the Pointer style
{@link #Theme_popupMenuStyle android:popupMenuStyle} Default PopupMenu style.
{@link #Theme_popupWindowStyle android:popupWindowStyle} Default PopupWindow style.
{@link #Theme_preferenceCategoryStyle android:preferenceCategoryStyle} Default style for PreferenceCategory.
{@link #Theme_preferenceFragmentListStyle android:preferenceFragmentListStyle} Preference fragment list style
{@link #Theme_preferenceFragmentPaddingSide android:preferenceFragmentPaddingSide} Preference fragment padding side
{@link #Theme_preferenceFragmentStyle android:preferenceFragmentStyle} Default style for Headers pane in PreferenceActivity.
{@link #Theme_preferenceFrameLayoutStyle android:preferenceFrameLayoutStyle} Preference frame layout styles.
{@link #Theme_preferenceHeaderPanelStyle android:preferenceHeaderPanelStyle} Preference headers panel style
{@link #Theme_preferenceInformationStyle android:preferenceInformationStyle} Default style for informational Preference.
{@link #Theme_preferenceLayoutChild android:preferenceLayoutChild} The preference layout that has the child/tabbed effect.
{@link #Theme_preferenceListStyle android:preferenceListStyle} Preference list style
{@link #Theme_preferencePanelStyle android:preferencePanelStyle} Preference panel style
{@link #Theme_preferenceScreenStyle android:preferenceScreenStyle} Default style for PreferenceScreen.
{@link #Theme_preferenceStyle android:preferenceStyle} Default style for Preference.
{@link #Theme_presentationTheme android:presentationTheme} Theme to use for presentations spawned from this theme.
{@link #Theme_progressBarStyle android:progressBarStyle} Default ProgressBar style.
{@link #Theme_progressBarStyleHorizontal android:progressBarStyleHorizontal} Horizontal ProgressBar style.
{@link #Theme_progressBarStyleInverse android:progressBarStyleInverse} Inverse ProgressBar style.
{@link #Theme_progressBarStyleLarge android:progressBarStyleLarge} Large ProgressBar style.
{@link #Theme_progressBarStyleLargeInverse android:progressBarStyleLargeInverse} Large inverse ProgressBar style.
{@link #Theme_progressBarStyleSmall android:progressBarStyleSmall} Small ProgressBar style.
{@link #Theme_progressBarStyleSmallInverse android:progressBarStyleSmallInverse} Small inverse ProgressBar style.
{@link #Theme_progressBarStyleSmallTitle android:progressBarStyleSmallTitle} Small ProgressBar in title style.
{@link #Theme_quickContactBadgeOverlay android:quickContactBadgeOverlay} Drawable used as an overlay on top of quickcontact photos.
{@link #Theme_quickContactBadgeStyleSmallWindowLarge android:quickContactBadgeStyleSmallWindowLarge} Default quickcontact badge style with large quickcontact window.
{@link #Theme_quickContactBadgeStyleSmallWindowMedium android:quickContactBadgeStyleSmallWindowMedium} Default quickcontact badge style with medium quickcontact window.
{@link #Theme_quickContactBadgeStyleSmallWindowSmall android:quickContactBadgeStyleSmallWindowSmall} Default quickcontact badge style with small quickcontact window.
{@link #Theme_quickContactBadgeStyleWindowLarge android:quickContactBadgeStyleWindowLarge} Default quickcontact badge style with large quickcontact window.
{@link #Theme_quickContactBadgeStyleWindowMedium android:quickContactBadgeStyleWindowMedium} Default quickcontact badge style with medium quickcontact window.
{@link #Theme_quickContactBadgeStyleWindowSmall android:quickContactBadgeStyleWindowSmall} Default quickcontact badge style with small quickcontact window.
{@link #Theme_radioButtonStyle android:radioButtonStyle} Default RadioButton style.
{@link #Theme_ratingBarStyle android:ratingBarStyle} Default RatingBar style.
{@link #Theme_ratingBarStyleIndicator android:ratingBarStyleIndicator} Indicator RatingBar style.
{@link #Theme_ratingBarStyleSmall android:ratingBarStyleSmall} Small indicator RatingBar style.
{@link #Theme_ringtonePreferenceStyle android:ringtonePreferenceStyle} Default style for RingtonePreference.
{@link #Theme_scrollViewStyle android:scrollViewStyle} Default ScrollView style.
{@link #Theme_searchDialogTheme android:searchDialogTheme} Theme to use for Search Dialogs
{@link #Theme_searchDropdownBackground android:searchDropdownBackground} SearchView dropdown background
{@link #Theme_searchResultListItemHeight android:searchResultListItemHeight} The list item height for search results.
{@link #Theme_searchViewCloseIcon android:searchViewCloseIcon} SearchView close button icon
{@link #Theme_searchViewEditQuery android:searchViewEditQuery} SearchView query refinement icon
{@link #Theme_searchViewEditQueryBackground android:searchViewEditQueryBackground} SearchView query refinement icon background
{@link #Theme_searchViewGoIcon android:searchViewGoIcon} SearchView Go button icon
{@link #Theme_searchViewSearchIcon android:searchViewSearchIcon} SearchView Search icon
{@link #Theme_searchViewTextField android:searchViewTextField} SearchView text field background for the left section
{@link #Theme_searchViewTextFieldRight android:searchViewTextFieldRight} SearchView text field background for the right section
{@link #Theme_searchViewVoiceIcon android:searchViewVoiceIcon} SearchView Voice button icon
{@link #Theme_searchWidgetCorpusItemBackground android:searchWidgetCorpusItemBackground} Search widget more corpus result item background.
{@link #Theme_seekBarStyle android:seekBarStyle} Default SeekBar style.
{@link #Theme_segmentedButtonStyle android:segmentedButtonStyle} Style for segmented buttons - a container that houses several buttons - with the appearance of a singel button broken into segments.
{@link #Theme_selectableItemBackground android:selectableItemBackground} Background drawable for standalone items that need focus/pressed states.
{@link #Theme_spinnerDropDownItemStyle android:spinnerDropDownItemStyle} Default style for spinner drop down items.
{@link #Theme_spinnerItemStyle android:spinnerItemStyle} Default spinner item style.
{@link #Theme_spinnerStyle android:spinnerStyle} Default Spinner style.
{@link #Theme_stackViewStyle android:stackViewStyle} Default StackView style.
{@link #Theme_starStyle android:starStyle} Default Star style.
{@link #Theme_switchPreferenceStyle android:switchPreferenceStyle} Default style for switch preferences.
{@link #Theme_switchStyle android:switchStyle} Default style for the Switch widget.
{@link #Theme_tabWidgetStyle android:tabWidgetStyle} Default TabWidget style.
{@link #Theme_textAppearance android:textAppearance} Default appearance of text: color, typeface, size, and style.
{@link #Theme_textAppearanceAutoCorrectionSuggestion android:textAppearanceAutoCorrectionSuggestion} The underline color and thickness for auto correction suggestion
{@link #Theme_textAppearanceButton android:textAppearanceButton} Text color, typeface, size, and style for the text inside of a button.
{@link #Theme_textAppearanceEasyCorrectSuggestion android:textAppearanceEasyCorrectSuggestion} The underline color and thickness for easy correct suggestion
{@link #Theme_textAppearanceInverse android:textAppearanceInverse} Default appearance of text against an inverted background: - color, typeface, size, and style.
{@link #Theme_textAppearanceLarge android:textAppearanceLarge} Text color, typeface, size, and style for "large" text.
{@link #Theme_textAppearanceLargeInverse android:textAppearanceLargeInverse} Text color, typeface, size, and style for "large" inverse text.
{@link #Theme_textAppearanceLargePopupMenu android:textAppearanceLargePopupMenu} Text color, typeface, size, and style for the text inside of a popup menu.
{@link #Theme_textAppearanceListItem android:textAppearanceListItem} The preferred TextAppearance for the primary text of list items.
{@link #Theme_textAppearanceListItemSmall android:textAppearanceListItemSmall} The preferred TextAppearance for the primary text of small list items.
{@link #Theme_textAppearanceMedium android:textAppearanceMedium} Text color, typeface, size, and style for "medium" text.
{@link #Theme_textAppearanceMediumInverse android:textAppearanceMediumInverse} Text color, typeface, size, and style for "medium" inverse text.
{@link #Theme_textAppearanceMisspelledSuggestion android:textAppearanceMisspelledSuggestion} The underline color and thickness for misspelled suggestion
{@link #Theme_textAppearanceSearchResultSubtitle android:textAppearanceSearchResultSubtitle} Text color, typeface, size, and style for system search result subtitle.
{@link #Theme_textAppearanceSearchResultTitle android:textAppearanceSearchResultTitle} Text color, typeface, size, and style for system search result title.
{@link #Theme_textAppearanceSmall android:textAppearanceSmall} Text color, typeface, size, and style for "small" text.
{@link #Theme_textAppearanceSmallInverse android:textAppearanceSmallInverse} Text color, typeface, size, and style for "small" inverse text.
{@link #Theme_textAppearanceSmallPopupMenu android:textAppearanceSmallPopupMenu} Text color, typeface, size, and style for small text inside of a popup menu.
{@link #Theme_textCheckMark android:textCheckMark} Drawable to use for check marks.
{@link #Theme_textCheckMarkInverse android:textCheckMarkInverse}
{@link #Theme_textColorAlertDialogListItem android:textColorAlertDialogListItem} Color of list item text in alert dialogs.
{@link #Theme_textColorHighlightInverse android:textColorHighlightInverse} Color of highlighted text, when used in a light theme.
{@link #Theme_textColorHintInverse android:textColorHintInverse} Inverse hint text color.
{@link #Theme_textColorLinkInverse android:textColorLinkInverse} Color of link text (URLs), when used in a light theme.
{@link #Theme_textColorPrimary android:textColorPrimary} The most prominent text color.
{@link #Theme_textColorPrimaryDisableOnly android:textColorPrimaryDisableOnly} Bright text color.
{@link #Theme_textColorPrimaryInverse android:textColorPrimaryInverse} Primary inverse text color, useful for inverted backgrounds.
{@link #Theme_textColorPrimaryInverseDisableOnly android:textColorPrimaryInverseDisableOnly} Bright inverse text color.
{@link #Theme_textColorPrimaryInverseNoDisable android:textColorPrimaryInverseNoDisable} Bright inverse text color.
{@link #Theme_textColorPrimaryNoDisable android:textColorPrimaryNoDisable} Bright text color.
{@link #Theme_textColorSearchUrl android:textColorSearchUrl} Text color for urls in search suggestions, used by things like global search and the browser.
{@link #Theme_textColorSecondary android:textColorSecondary} Secondary text color.
{@link #Theme_textColorSecondaryInverse android:textColorSecondaryInverse} Secondary inverse text color, useful for inverted backgrounds.
{@link #Theme_textColorSecondaryInverseNoDisable android:textColorSecondaryInverseNoDisable} Dim inverse text color.
{@link #Theme_textColorSecondaryNoDisable android:textColorSecondaryNoDisable} Dim text color.
{@link #Theme_textColorTertiary android:textColorTertiary} Tertiary text color.
{@link #Theme_textColorTertiaryInverse android:textColorTertiaryInverse} Tertiary inverse text color, useful for inverted backgrounds.
{@link #Theme_textEditNoPasteWindowLayout android:textEditNoPasteWindowLayout} Variation of textEditPasteWindowLayout displayed when the clipboard is empty.
{@link #Theme_textEditPasteWindowLayout android:textEditPasteWindowLayout} The layout of the view that is displayed on top of the cursor to paste inside a - TextEdit field.
{@link #Theme_textEditSideNoPasteWindowLayout android:textEditSideNoPasteWindowLayout} Variation of textEditSidePasteWindowLayout displayed when the clipboard is empty.
{@link #Theme_textEditSidePasteWindowLayout android:textEditSidePasteWindowLayout} Used instead of textEditPasteWindowLayout when the window is moved on the side of the - insertion cursor because it would be clipped if it were positioned on top.
{@link #Theme_textEditSuggestionItemLayout android:textEditSuggestionItemLayout} Layout of the TextView item that will populate the suggestion popup window.
{@link #Theme_textSelectHandle android:textSelectHandle} Reference to a drawable that will be used to display a text selection - anchor for positioning the cursor within text.
{@link #Theme_textSelectHandleLeft android:textSelectHandleLeft} Reference to a drawable that will be used to display a text selection - anchor on the left side of a selection region.
{@link #Theme_textSelectHandleRight android:textSelectHandleRight} Reference to a drawable that will be used to display a text selection - anchor on the right side of a selection region.
{@link #Theme_textSelectHandleWindowStyle android:textSelectHandleWindowStyle} Reference to a style that will be used for the window containing a text - selection anchor.
{@link #Theme_textSuggestionsWindowStyle android:textSuggestionsWindowStyle} Reference to a style that will be used for the window containing a list of possible - text suggestions in an EditText.
{@link #Theme_textUnderlineColor android:textUnderlineColor} The underline color
{@link #Theme_textUnderlineThickness android:textUnderlineThickness} The underline thickness
{@link #Theme_textViewStyle android:textViewStyle} Default TextView style.
{@link #Theme_timePickerStyle android:timePickerStyle} The TimePicker style.
{@link #Theme_toastFrameBackground android:toastFrameBackground} Background to use for toasts
{@link #Theme_webTextViewStyle android:webTextViewStyle} Default WebTextView style.
{@link #Theme_webViewStyle android:webViewStyle} Default WebView style.
{@link #Theme_windowActionBar android:windowActionBar} Flag indicating whether this window should have an Action Bar - in place of the usual title bar.
{@link #Theme_windowActionBarOverlay android:windowActionBarOverlay} Flag indicating whether this window's Action Bar should overlay - application content.
{@link #Theme_windowActionModeOverlay android:windowActionModeOverlay} Flag indicating whether action modes should overlay window content - when there is not reserved space for their UI (such as an Action Bar).
{@link #Theme_windowAnimationStyle android:windowAnimationStyle} Reference to a style resource holding - the set of window animations to use, which can be - any of the attributes defined by - {@link android.R.styleable#WindowAnimation}.
{@link #Theme_windowBackground android:windowBackground} Drawable to use as the overall window background.
{@link #Theme_windowCloseOnTouchOutside android:windowCloseOnTouchOutside} Control whether a container should automatically close itself if - the user touches outside of it.
{@link #Theme_windowContentOverlay android:windowContentOverlay} This Drawable is overlaid over the foreground of the Window's content area, usually - to place a shadow below the title.
{@link #Theme_windowDisablePreview android:windowDisablePreview} Flag allowing you to disable the preview animation for a window.
{@link #Theme_windowEnableSplitTouch android:windowEnableSplitTouch} Flag indicating that this window should allow touches to be split - across other windows that also support split touch.
{@link #Theme_windowFrame android:windowFrame} Drawable to use as a frame around the window.
{@link #Theme_windowFullscreen android:windowFullscreen} Flag indicating whether this window should fill the entire screen.
{@link #Theme_windowIsFloating android:windowIsFloating} Flag indicating whether this is a floating window.
{@link #Theme_windowIsTranslucent android:windowIsTranslucent} Flag indicating whether this is a translucent window.
{@link #Theme_windowNoDisplay android:windowNoDisplay} Flag indicating that this window should not be displayed at all.
{@link #Theme_windowNoTitle android:windowNoTitle} Flag indicating whether there should be no title on this window.
{@link #Theme_windowOverscan android:windowOverscan} Flag indicating whether this window should extend into overscan region.
{@link #Theme_windowShowWallpaper android:windowShowWallpaper} Flag indicating that this window's background should be the - user's current wallpaper.
{@link #Theme_windowSoftInputMode android:windowSoftInputMode} Defines the default soft input state that this window would - like when it is displayed.
{@link #Theme_windowSplitActionBar android:windowSplitActionBar} Flag indicating that the action bar should be split to provide more - room for elements.
{@link #Theme_windowTitleBackgroundStyle android:windowTitleBackgroundStyle} The style resource to use for a window's title area.
{@link #Theme_windowTitleSize android:windowTitleSize} The style resource to use for a window's title bar height.
{@link #Theme_windowTitleStyle android:windowTitleStyle} The style resource to use for a window's title text.
{@link #Theme_windowTranslucentNavigation android:windowTranslucentNavigation} Flag indicating whether this window requests a translucent navigation bar.
{@link #Theme_windowTranslucentStatus android:windowTranslucentStatus} Flag indicating whether this window requests a translucent status bar.
{@link #Theme_yesNoPreferenceStyle android:yesNoPreferenceStyle} Default style for YesNoPreference.
- @see #Theme_absListViewStyle - @see #Theme_accessibilityFocusedDrawable - @see #Theme_actionBarDivider - @see #Theme_actionBarItemBackground - @see #Theme_actionBarSize - @see #Theme_actionBarSplitStyle - @see #Theme_actionBarStyle - @see #Theme_actionBarTabBarStyle - @see #Theme_actionBarTabStyle - @see #Theme_actionBarTabTextStyle - @see #Theme_actionBarWidgetTheme - @see #Theme_actionButtonStyle - @see #Theme_actionDropDownStyle - @see #Theme_actionMenuTextAppearance - @see #Theme_actionMenuTextColor - @see #Theme_actionModeBackground - @see #Theme_actionModeCloseButtonStyle - @see #Theme_actionModeCloseDrawable - @see #Theme_actionModeCopyDrawable - @see #Theme_actionModeCutDrawable - @see #Theme_actionModeFindDrawable - @see #Theme_actionModePasteDrawable - @see #Theme_actionModePopupWindowStyle - @see #Theme_actionModeSelectAllDrawable - @see #Theme_actionModeShareDrawable - @see #Theme_actionModeSplitBackground - @see #Theme_actionModeStyle - @see #Theme_actionModeWebSearchDrawable - @see #Theme_actionOverflowButtonStyle - @see #Theme_activatedBackgroundIndicator - @see #Theme_activityChooserViewStyle - @see #Theme_alertDialogButtonGroupStyle - @see #Theme_alertDialogCenterButtons - @see #Theme_alertDialogIcon - @see #Theme_alertDialogStyle - @see #Theme_alertDialogTheme - @see #Theme_autoCompleteTextViewStyle - @see #Theme_backgroundDimAmount - @see #Theme_backgroundDimEnabled - @see #Theme_borderlessButtonStyle - @see #Theme_buttonBarButtonStyle - @see #Theme_buttonBarStyle - @see #Theme_buttonStyle - @see #Theme_buttonStyleInset - @see #Theme_buttonStyleSmall - @see #Theme_buttonStyleToggle - @see #Theme_calendarViewStyle - @see #Theme_candidatesTextStyleSpans - @see #Theme_checkBoxPreferenceStyle - @see #Theme_checkboxStyle - @see #Theme_checkedTextViewStyle - @see #Theme_colorActivatedHighlight - @see #Theme_colorBackground - @see #Theme_colorBackgroundCacheHint - @see #Theme_colorFocusedHighlight - @see #Theme_colorForeground - @see #Theme_colorForegroundInverse - @see #Theme_colorLongPressedHighlight - @see #Theme_colorMultiSelectHighlight - @see #Theme_colorPressedHighlight - @see #Theme_datePickerStyle - @see #Theme_detailsElementBackground - @see #Theme_dialogCustomTitleDecorLayout - @see #Theme_dialogPreferenceStyle - @see #Theme_dialogTheme - @see #Theme_dialogTitleDecorLayout - @see #Theme_dialogTitleIconsDecorLayout - @see #Theme_disabledAlpha - @see #Theme_dividerHorizontal - @see #Theme_dividerVertical - @see #Theme_dropDownHintAppearance - @see #Theme_dropDownItemStyle - @see #Theme_dropDownListViewStyle - @see #Theme_dropDownSpinnerStyle - @see #Theme_dropdownListPreferredItemHeight - @see #Theme_editTextBackground - @see #Theme_editTextColor - @see #Theme_editTextPreferenceStyle - @see #Theme_editTextStyle - @see #Theme_errorMessageAboveBackground - @see #Theme_errorMessageBackground - @see #Theme_expandableListPreferredChildIndicatorLeft - @see #Theme_expandableListPreferredChildIndicatorRight - @see #Theme_expandableListPreferredChildPaddingLeft - @see #Theme_expandableListPreferredItemIndicatorLeft - @see #Theme_expandableListPreferredItemIndicatorRight - @see #Theme_expandableListPreferredItemPaddingLeft - @see #Theme_expandableListViewStyle - @see #Theme_expandableListViewWhiteStyle - @see #Theme_fastScrollOverlayPosition - @see #Theme_fastScrollPreviewBackgroundLeft - @see #Theme_fastScrollPreviewBackgroundRight - @see #Theme_fastScrollTextColor - @see #Theme_fastScrollThumbDrawable - @see #Theme_fastScrollTrackDrawable - @see #Theme_findOnPageNextDrawable - @see #Theme_findOnPagePreviousDrawable - @see #Theme_galleryItemBackground - @see #Theme_galleryStyle - @see #Theme_gestureOverlayViewStyle - @see #Theme_gridViewStyle - @see #Theme_homeAsUpIndicator - @see #Theme_horizontalScrollViewStyle - @see #Theme_imageButtonStyle - @see #Theme_imageWellStyle - @see #Theme_listChoiceBackgroundIndicator - @see #Theme_listChoiceIndicatorMultiple - @see #Theme_listChoiceIndicatorSingle - @see #Theme_listDivider - @see #Theme_listDividerAlertDialog - @see #Theme_listPopupWindowStyle - @see #Theme_listPreferredItemHeight - @see #Theme_listPreferredItemHeightLarge - @see #Theme_listPreferredItemHeightSmall - @see #Theme_listPreferredItemPaddingEnd - @see #Theme_listPreferredItemPaddingLeft - @see #Theme_listPreferredItemPaddingRight - @see #Theme_listPreferredItemPaddingStart - @see #Theme_listSeparatorTextViewStyle - @see #Theme_listViewStyle - @see #Theme_listViewWhiteStyle - @see #Theme_mapViewStyle - @see #Theme_mediaRouteButtonStyle - @see #Theme_numberPickerStyle - @see #Theme_panelBackground - @see #Theme_panelColorBackground - @see #Theme_panelColorForeground - @see #Theme_panelFullBackground - @see #Theme_panelMenuIsCompact - @see #Theme_panelMenuListTheme - @see #Theme_panelMenuListWidth - @see #Theme_panelTextAppearance - @see #Theme_pointerStyle - @see #Theme_popupMenuStyle - @see #Theme_popupWindowStyle - @see #Theme_preferenceCategoryStyle - @see #Theme_preferenceFragmentListStyle - @see #Theme_preferenceFragmentPaddingSide - @see #Theme_preferenceFragmentStyle - @see #Theme_preferenceFrameLayoutStyle - @see #Theme_preferenceHeaderPanelStyle - @see #Theme_preferenceInformationStyle - @see #Theme_preferenceLayoutChild - @see #Theme_preferenceListStyle - @see #Theme_preferencePanelStyle - @see #Theme_preferenceScreenStyle - @see #Theme_preferenceStyle - @see #Theme_presentationTheme - @see #Theme_progressBarStyle - @see #Theme_progressBarStyleHorizontal - @see #Theme_progressBarStyleInverse - @see #Theme_progressBarStyleLarge - @see #Theme_progressBarStyleLargeInverse - @see #Theme_progressBarStyleSmall - @see #Theme_progressBarStyleSmallInverse - @see #Theme_progressBarStyleSmallTitle - @see #Theme_quickContactBadgeOverlay - @see #Theme_quickContactBadgeStyleSmallWindowLarge - @see #Theme_quickContactBadgeStyleSmallWindowMedium - @see #Theme_quickContactBadgeStyleSmallWindowSmall - @see #Theme_quickContactBadgeStyleWindowLarge - @see #Theme_quickContactBadgeStyleWindowMedium - @see #Theme_quickContactBadgeStyleWindowSmall - @see #Theme_radioButtonStyle - @see #Theme_ratingBarStyle - @see #Theme_ratingBarStyleIndicator - @see #Theme_ratingBarStyleSmall - @see #Theme_ringtonePreferenceStyle - @see #Theme_scrollViewStyle - @see #Theme_searchDialogTheme - @see #Theme_searchDropdownBackground - @see #Theme_searchResultListItemHeight - @see #Theme_searchViewCloseIcon - @see #Theme_searchViewEditQuery - @see #Theme_searchViewEditQueryBackground - @see #Theme_searchViewGoIcon - @see #Theme_searchViewSearchIcon - @see #Theme_searchViewTextField - @see #Theme_searchViewTextFieldRight - @see #Theme_searchViewVoiceIcon - @see #Theme_searchWidgetCorpusItemBackground - @see #Theme_seekBarStyle - @see #Theme_segmentedButtonStyle - @see #Theme_selectableItemBackground - @see #Theme_spinnerDropDownItemStyle - @see #Theme_spinnerItemStyle - @see #Theme_spinnerStyle - @see #Theme_stackViewStyle - @see #Theme_starStyle - @see #Theme_switchPreferenceStyle - @see #Theme_switchStyle - @see #Theme_tabWidgetStyle - @see #Theme_textAppearance - @see #Theme_textAppearanceAutoCorrectionSuggestion - @see #Theme_textAppearanceButton - @see #Theme_textAppearanceEasyCorrectSuggestion - @see #Theme_textAppearanceInverse - @see #Theme_textAppearanceLarge - @see #Theme_textAppearanceLargeInverse - @see #Theme_textAppearanceLargePopupMenu - @see #Theme_textAppearanceListItem - @see #Theme_textAppearanceListItemSmall - @see #Theme_textAppearanceMedium - @see #Theme_textAppearanceMediumInverse - @see #Theme_textAppearanceMisspelledSuggestion - @see #Theme_textAppearanceSearchResultSubtitle - @see #Theme_textAppearanceSearchResultTitle - @see #Theme_textAppearanceSmall - @see #Theme_textAppearanceSmallInverse - @see #Theme_textAppearanceSmallPopupMenu - @see #Theme_textCheckMark - @see #Theme_textCheckMarkInverse - @see #Theme_textColorAlertDialogListItem - @see #Theme_textColorHighlightInverse - @see #Theme_textColorHintInverse - @see #Theme_textColorLinkInverse - @see #Theme_textColorPrimary - @see #Theme_textColorPrimaryDisableOnly - @see #Theme_textColorPrimaryInverse - @see #Theme_textColorPrimaryInverseDisableOnly - @see #Theme_textColorPrimaryInverseNoDisable - @see #Theme_textColorPrimaryNoDisable - @see #Theme_textColorSearchUrl - @see #Theme_textColorSecondary - @see #Theme_textColorSecondaryInverse - @see #Theme_textColorSecondaryInverseNoDisable - @see #Theme_textColorSecondaryNoDisable - @see #Theme_textColorTertiary - @see #Theme_textColorTertiaryInverse - @see #Theme_textEditNoPasteWindowLayout - @see #Theme_textEditPasteWindowLayout - @see #Theme_textEditSideNoPasteWindowLayout - @see #Theme_textEditSidePasteWindowLayout - @see #Theme_textEditSuggestionItemLayout - @see #Theme_textSelectHandle - @see #Theme_textSelectHandleLeft - @see #Theme_textSelectHandleRight - @see #Theme_textSelectHandleWindowStyle - @see #Theme_textSuggestionsWindowStyle - @see #Theme_textUnderlineColor - @see #Theme_textUnderlineThickness - @see #Theme_textViewStyle - @see #Theme_timePickerStyle - @see #Theme_toastFrameBackground - @see #Theme_webTextViewStyle - @see #Theme_webViewStyle - @see #Theme_windowActionBar - @see #Theme_windowActionBarOverlay - @see #Theme_windowActionModeOverlay - @see #Theme_windowAnimationStyle - @see #Theme_windowBackground - @see #Theme_windowCloseOnTouchOutside - @see #Theme_windowContentOverlay - @see #Theme_windowDisablePreview - @see #Theme_windowEnableSplitTouch - @see #Theme_windowFrame - @see #Theme_windowFullscreen - @see #Theme_windowIsFloating - @see #Theme_windowIsTranslucent - @see #Theme_windowNoDisplay - @see #Theme_windowNoTitle - @see #Theme_windowOverscan - @see #Theme_windowShowWallpaper - @see #Theme_windowSoftInputMode - @see #Theme_windowSplitActionBar - @see #Theme_windowTitleBackgroundStyle - @see #Theme_windowTitleSize - @see #Theme_windowTitleStyle - @see #Theme_windowTranslucentNavigation - @see #Theme_windowTranslucentStatus - @see #Theme_yesNoPreferenceStyle - */ - public static final int[] Theme = { - 0x01010030, 0x01010031, 0x01010032, 0x01010033, - 0x01010034, 0x01010035, 0x01010036, 0x01010037, - 0x01010038, 0x01010039, 0x0101003a, 0x0101003b, - 0x0101003c, 0x0101003d, 0x0101003e, 0x0101003f, - 0x01010040, 0x01010041, 0x01010042, 0x01010043, - 0x01010044, 0x01010045, 0x01010046, 0x01010047, - 0x01010048, 0x01010049, 0x0101004a, 0x0101004b, - 0x0101004c, 0x0101004d, 0x0101004e, 0x0101004f, - 0x01010050, 0x01010051, 0x01010052, 0x01010053, - 0x01010054, 0x01010055, 0x01010056, 0x01010057, - 0x01010058, 0x01010059, 0x0101005a, 0x0101005b, - 0x0101005c, 0x0101005d, 0x0101005e, 0x0101005f, - 0x01010060, 0x01010061, 0x01010062, 0x0101006a, - 0x0101006b, 0x0101006c, 0x0101006d, 0x0101006e, - 0x0101006f, 0x01010070, 0x01010071, 0x01010072, - 0x01010073, 0x01010074, 0x01010075, 0x01010076, - 0x01010077, 0x01010078, 0x01010079, 0x0101007a, - 0x0101007b, 0x0101007c, 0x0101007d, 0x0101007e, - 0x01010080, 0x01010081, 0x01010082, 0x01010083, - 0x01010084, 0x01010085, 0x01010086, 0x01010087, - 0x01010088, 0x01010089, 0x0101008a, 0x0101008b, - 0x0101008c, 0x0101008d, 0x0101008e, 0x0101008f, - 0x01010090, 0x01010091, 0x01010092, 0x01010093, - 0x01010094, 0x010100ae, 0x01010206, 0x01010207, - 0x01010208, 0x0101020d, 0x0101020f, 0x01010210, - 0x01010212, 0x01010213, 0x01010214, 0x01010219, - 0x0101021a, 0x0101021e, 0x0101021f, 0x01010222, - 0x0101022b, 0x01010230, 0x01010267, 0x01010287, - 0x01010288, 0x01010289, 0x0101028b, 0x01010292, - 0x010102a0, 0x010102a1, 0x010102ab, 0x010102ae, - 0x010102af, 0x010102b0, 0x010102b1, 0x010102b2, - 0x010102b3, 0x010102b6, 0x010102b9, 0x010102c5, - 0x010102c6, 0x010102c7, 0x010102c8, 0x010102cd, - 0x010102ce, 0x010102d6, 0x010102d7, 0x010102d8, - 0x010102db, 0x010102dc, 0x010102dd, 0x010102e4, - 0x010102eb, 0x010102f0, 0x010102f3, 0x010102f4, - 0x010102f5, 0x010102f6, 0x010102f7, 0x010102fd, - 0x010102ff, 0x01010300, 0x01010301, 0x01010302, - 0x01010305, 0x01010306, 0x01010308, 0x01010309, - 0x0101030a, 0x0101030b, 0x0101030e, 0x01010311, - 0x01010312, 0x01010313, 0x01010314, 0x01010315, - 0x01010317, 0x0101032b, 0x0101032c, 0x0101032e, - 0x0101032f, 0x01010330, 0x01010336, 0x01010337, - 0x01010338, 0x01010339, 0x0101033a, 0x0101034e, - 0x0101034f, 0x01010350, 0x01010351, 0x01010352, - 0x01010353, 0x01010355, 0x01010359, 0x0101035b, - 0x0101035c, 0x0101035d, 0x0101035e, 0x0101035f, - 0x01010360, 0x01010361, 0x0101036d, 0x01010373, - 0x01010374, 0x0101037e, 0x01010386, 0x01010387, - 0x01010388, 0x0101038d, 0x0101038e, 0x0101038f, - 0x01010390, 0x01010391, 0x01010394, 0x01010397, - 0x0101039b, 0x0101039c, 0x0101039d, 0x0101039e, - 0x0101039f, 0x010103a3, 0x010103a4, 0x010103a8, - 0x010103ad, 0x010103bd, 0x010103be, 0x010103c0, - 0x010103c3, 0x010103c8, 0x010103cf, 0x010103ef, - 0x010103f0, 0x010103f2, 0x010103f3, 0x010103f4, - 0x010103f5, 0x010103f6, 0x010103f7, 0x010103f8, - 0x010103f9, 0x010103fa, 0x010103fb, 0x010103fc, - 0x010103fd, 0x010103fe, 0x010103ff, 0x01010400, - 0x01010401, 0x01010402, 0x01010403, 0x01010404, - 0x01010405, 0x01010406, 0x01010407, 0x01010408, - 0x01010409, 0x0101040a, 0x0101040b, 0x0101040c, - 0x0101040d, 0x0101040e, 0x0101040f, 0x01010410, - 0x01010411, 0x01010412, 0x01010413, 0x01010414, - 0x01010415, 0x01010416, 0x01010417, 0x01010418, - 0x01010419, 0x0101041a, 0x0101041b, 0x0101041c, - 0x0101041d, 0x0101041e, 0x0101041f, 0x01010420, - 0x01010421, 0x01010422, 0x01010423}; - /** -

- @attr description - Default AbsListView style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#absListViewStyle}. - @attr name android:absListViewStyle - */ - public static final int Theme_absListViewStyle = 51; - /** -

- @attr description - The drawable for accessibility focused views. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:accessibilityFocusedDrawable - */ - public static final int Theme_accessibilityFocusedDrawable = 268; - /** -

- @attr description - Custom divider drawable to use for elements in the action bar. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionBarDivider}. - @attr name android:actionBarDivider - */ - public static final int Theme_actionBarDivider = 204; - /** -

- @attr description - Custom item state list drawable background for action bar items. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionBarItemBackground}. - @attr name android:actionBarItemBackground - */ - public static final int Theme_actionBarItemBackground = 205; - /** -

- @attr description - Size of the Action Bar, including the contextual - bar used to present Action Modes. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - -
ConstantValueDescription
wrap_content0
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionBarSize}. - @attr name android:actionBarSize - */ - public static final int Theme_actionBarSize = 140; - /** -

- @attr description - Reference to a style for the split Action Bar. This style - controls the split component that holds the menu/action - buttons. actionBarStyle is still used for the primary - bar. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionBarSplitStyle}. - @attr name android:actionBarSplitStyle - */ - public static final int Theme_actionBarSplitStyle = 196; - /** -

- @attr description - Reference to a style for the Action Bar - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionBarStyle}. - @attr name android:actionBarStyle - */ - public static final int Theme_actionBarStyle = 132; - /** -

This symbol is the offset where the {@link android.R.attr#actionBarTabBarStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name android:actionBarTabBarStyle - */ - public static final int Theme_actionBarTabBarStyle = 143; - /** -

- @attr description - Default style for tabs within an action bar - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionBarTabStyle}. - @attr name android:actionBarTabStyle - */ - public static final int Theme_actionBarTabStyle = 142; - /** -

This symbol is the offset where the {@link android.R.attr#actionBarTabTextStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name android:actionBarTabTextStyle - */ - public static final int Theme_actionBarTabTextStyle = 144; - /** -

- @attr description - Reference to a theme that should be used to inflate widgets - and layouts destined for the action bar. Most of the time - this will be a reference to the current theme, but when - the action bar has a significantly different contrast - profile than the rest of the activity the difference - can become important. If this is set to @null the current - theme will be used. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionBarWidgetTheme}. - @attr name android:actionBarWidgetTheme - */ - public static final int Theme_actionBarWidgetTheme = 203; - /** -

- @attr description - Default action button style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionButtonStyle}. - @attr name android:actionButtonStyle - */ - public static final int Theme_actionButtonStyle = 135; - /** -

- @attr description - Default ActionBar dropdown style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionDropDownStyle}. - @attr name android:actionDropDownStyle - */ - public static final int Theme_actionDropDownStyle = 134; - /** -

- @attr description - TextAppearance style that will be applied to text that - appears within action menu items. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionMenuTextAppearance}. - @attr name android:actionMenuTextAppearance - */ - public static final int Theme_actionMenuTextAppearance = 188; - /** -

- @attr description - Color for text that appears within action menu items. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionMenuTextColor}. - @attr name android:actionMenuTextColor - */ - public static final int Theme_actionMenuTextColor = 189; - /** -

- @attr description - Background drawable to use for action mode UI - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionModeBackground}. - @attr name android:actionModeBackground - */ - public static final int Theme_actionModeBackground = 136; - /** -

This symbol is the offset where the {@link android.R.attr#actionModeCloseButtonStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name android:actionModeCloseButtonStyle - */ - public static final int Theme_actionModeCloseButtonStyle = 146; - /** -

- @attr description - Drawable to use for the close action mode button - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionModeCloseDrawable}. - @attr name android:actionModeCloseDrawable - */ - public static final int Theme_actionModeCloseDrawable = 137; - /** -

- @attr description - Drawable to use for the Copy action button in Contextual Action Bar - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionModeCopyDrawable}. - @attr name android:actionModeCopyDrawable - */ - public static final int Theme_actionModeCopyDrawable = 160; - /** -

- @attr description - Drawable to use for the Cut action button in Contextual Action Bar - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionModeCutDrawable}. - @attr name android:actionModeCutDrawable - */ - public static final int Theme_actionModeCutDrawable = 159; - /** -

- @attr description - Drawable to use for the Find action button in WebView selection action modes - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:actionModeFindDrawable - */ - public static final int Theme_actionModeFindDrawable = 242; - /** -

- @attr description - Drawable to use for the Paste action button in Contextual Action Bar - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionModePasteDrawable}. - @attr name android:actionModePasteDrawable - */ - public static final int Theme_actionModePasteDrawable = 161; - /** -

- @attr description - PopupWindow style to use for action modes when showing as a window overlay. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:actionModePopupWindowStyle - */ - public static final int Theme_actionModePopupWindowStyle = 244; - /** -

- @attr description - Drawable to use for the Select all action button in Contextual Action Bar - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionModeSelectAllDrawable}. - @attr name android:actionModeSelectAllDrawable - */ - public static final int Theme_actionModeSelectAllDrawable = 193; - /** -

- @attr description - Drawable to use for the Share action button in WebView selection action modes - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:actionModeShareDrawable - */ - public static final int Theme_actionModeShareDrawable = 241; - /** -

- @attr description - Background drawable to use for action mode UI in the lower split bar - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#actionModeSplitBackground}. - @attr name android:actionModeSplitBackground - */ - public static final int Theme_actionModeSplitBackground = 206; - /** -

This symbol is the offset where the {@link android.R.attr#actionModeStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name android:actionModeStyle - */ - public static final int Theme_actionModeStyle = 202; - /** -

- @attr description - Drawable to use for the Web Search action button in WebView selection action modes - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:actionModeWebSearchDrawable - */ - public static final int Theme_actionModeWebSearchDrawable = 243; - /** -

This symbol is the offset where the {@link android.R.attr#actionOverflowButtonStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name android:actionOverflowButtonStyle - */ - public static final int Theme_actionOverflowButtonStyle = 145; - /** -

- @attr description - Drawable used as a background for activated items. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#activatedBackgroundIndicator}. - @attr name android:activatedBackgroundIndicator - */ - public static final int Theme_activatedBackgroundIndicator = 147; - /** -

- @attr description - Default ActivityChooserView style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:activityChooserViewStyle - */ - public static final int Theme_activityChooserViewStyle = 240; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#alertDialogButtonGroupStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name com.android.internal:alertDialogButtonGroupStyle - */ - public static final int Theme_alertDialogButtonGroupStyle = 230; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#alertDialogCenterButtons} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name com.android.internal:alertDialogCenterButtons - */ - public static final int Theme_alertDialogCenterButtons = 231; - /** -

- @attr description - Icon drawable to use for alerts - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#alertDialogIcon}. - @attr name android:alertDialogIcon - */ - public static final int Theme_alertDialogIcon = 181; - /** -

This symbol is the offset where the {@link android.R.attr#alertDialogStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name android:alertDialogStyle - */ - public static final int Theme_alertDialogStyle = 45; - /** -

- @attr description - Theme to use for alert dialogs spawned from this theme. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#alertDialogTheme}. - @attr name android:alertDialogTheme - */ - public static final int Theme_alertDialogTheme = 155; - /** -

- @attr description - Default AutoCompleteTextView style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#autoCompleteTextViewStyle}. - @attr name android:autoCompleteTextViewStyle - */ - public static final int Theme_autoCompleteTextViewStyle = 52; - /** -

- @attr description - Default background dim amount when a menu, dialog, or something similar pops up. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#backgroundDimAmount}. - @attr name android:backgroundDimAmount - */ - public static final int Theme_backgroundDimAmount = 2; - /** -

- @attr description - Control whether dimming behind the window is enabled. The default - theme does not set this value, meaning it is based on whether the - window is floating. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#backgroundDimEnabled}. - @attr name android:backgroundDimEnabled - */ - public static final int Theme_backgroundDimEnabled = 106; - /** -

- @attr description - Style for buttons without an explicit border, often used in groups. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#borderlessButtonStyle}. - @attr name android:borderlessButtonStyle - */ - public static final int Theme_borderlessButtonStyle = 165; - /** -

- @attr description - Style for buttons within button bars - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#buttonBarButtonStyle}. - @attr name android:buttonBarButtonStyle - */ - public static final int Theme_buttonBarButtonStyle = 168; - /** -

- @attr description - Style for button bars - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#buttonBarStyle}. - @attr name android:buttonBarStyle - */ - public static final int Theme_buttonBarStyle = 167; - /** -

- @attr description - Normal Button style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#buttonStyle}. - @attr name android:buttonStyle - */ - public static final int Theme_buttonStyle = 24; - /** -

- @attr description - Button style to inset into an EditText. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#buttonStyleInset}. - @attr name android:buttonStyleInset - */ - public static final int Theme_buttonStyleInset = 26; - /** -

- @attr description - Small Button style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#buttonStyleSmall}. - @attr name android:buttonStyleSmall - */ - public static final int Theme_buttonStyleSmall = 25; - /** -

- @attr description - ToggleButton style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#buttonStyleToggle}. - @attr name android:buttonStyleToggle - */ - public static final int Theme_buttonStyleToggle = 27; - /** -

- @attr description - The CalendarView style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#calendarViewStyle}. - @attr name android:calendarViewStyle - */ - public static final int Theme_calendarViewStyle = 185; - /** -

- @attr description - A styled string, specifying the style to be used for showing - inline candidate text when composing with an input method. The - text itself will be ignored, but the style spans will be applied - to the candidate text as it is edited. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#candidatesTextStyleSpans}. - @attr name android:candidatesTextStyleSpans - */ - public static final int Theme_candidatesTextStyleSpans = 109; - /** -

- @attr description - Default style for CheckBoxPreference. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#checkBoxPreferenceStyle}. - @attr name android:checkBoxPreferenceStyle - */ - public static final int Theme_checkBoxPreferenceStyle = 87; - /** -

- @attr description - Default Checkbox style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#checkboxStyle}. - @attr name android:checkboxStyle - */ - public static final int Theme_checkboxStyle = 53; - /** -

- @attr description - Default CheckedTextView style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#checkedTextViewStyle}. - @attr name android:checkedTextViewStyle - */ - public static final int Theme_checkedTextViewStyle = 217; - /** -

- @attr description - Default highlight color for items that are - activated. (Activated meaning persistent selection.) - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#colorActivatedHighlight}. - @attr name android:colorActivatedHighlight - */ - public static final int Theme_colorActivatedHighlight = 200; - /** -

- @attr description - Color that matches (as closely as possible) the window background. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#colorBackground}. - @attr name android:colorBackground - */ - public static final int Theme_colorBackground = 1; - /** -

- @attr description - This is a hint for a solid color that can be used for caching - rendered views. This should be the color of the background when - there is a solid background color; it should be null when the - background is a texture or translucent. When a device is able - to use accelerated drawing (thus setting state_accelerated), the - cache hint is ignored and always assumed to be transparent. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#colorBackgroundCacheHint}. - @attr name android:colorBackgroundCacheHint - */ - public static final int Theme_colorBackgroundCacheHint = 118; - /** -

- @attr description - Default highlight color for items that are - focused. (Focused meaning cursor-based selection.) - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#colorFocusedHighlight}. - @attr name android:colorFocusedHighlight - */ - public static final int Theme_colorFocusedHighlight = 199; - /** -

- @attr description - Default color of foreground imagery. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#colorForeground}. - @attr name android:colorForeground - */ - public static final int Theme_colorForeground = 0; - /** -

- @attr description - Default color of foreground imagery on an inverted background. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#colorForegroundInverse}. - @attr name android:colorForegroundInverse - */ - public static final int Theme_colorForegroundInverse = 94; - /** -

- @attr description - Default highlight color for items that are long-pressed. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#colorLongPressedHighlight}. - @attr name android:colorLongPressedHighlight - */ - public static final int Theme_colorLongPressedHighlight = 198; - /** -

- @attr description - Default highlight color for items in multiple selection - mode. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#colorMultiSelectHighlight}. - @attr name android:colorMultiSelectHighlight - */ - public static final int Theme_colorMultiSelectHighlight = 201; - /** -

- @attr description - Default highlight color for items that are pressed. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#colorPressedHighlight}. - @attr name android:colorPressedHighlight - */ - public static final int Theme_colorPressedHighlight = 197; - /** -

- @attr description - The DatePicker style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#datePickerStyle}. - @attr name android:datePickerStyle - */ - public static final int Theme_datePickerStyle = 184; - /** -

- @attr description - Background that can be used behind parts of a UI that provide - details on data the user is selecting. For example, this is - the background element of PreferenceActivity's embedded - preference fragment. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#detailsElementBackground}. - @attr name android:detailsElementBackground - */ - public static final int Theme_detailsElementBackground = 175; - /** -

- @attr description - Window decor layout to use in dialog mode with custom titles - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:dialogCustomTitleDecorLayout - */ - public static final int Theme_dialogCustomTitleDecorLayout = 252; - /** -

- @attr description - Default style for DialogPreference. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dialogPreferenceStyle}. - @attr name android:dialogPreferenceStyle - */ - public static final int Theme_dialogPreferenceStyle = 89; - /** -

- @attr description - Theme to use for dialogs spawned from this theme. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dialogTheme}. - @attr name android:dialogTheme - */ - public static final int Theme_dialogTheme = 154; - /** -

- @attr description - Window decor layout to use in dialog mode with title only - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:dialogTitleDecorLayout - */ - public static final int Theme_dialogTitleDecorLayout = 253; - /** -

- @attr description - Window decor layout to use in dialog mode with icons - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:dialogTitleIconsDecorLayout - */ - public static final int Theme_dialogTitleIconsDecorLayout = 251; - /** -

- @attr description - Default disabled alpha for widgets that set enabled/disabled alpha programmatically. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#disabledAlpha}. - @attr name android:disabledAlpha - */ - public static final int Theme_disabledAlpha = 3; - /** -

- @attr description - Drawable to use for generic horizontal dividers. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dividerHorizontal}. - @attr name android:dividerHorizontal - */ - public static final int Theme_dividerHorizontal = 166; - /** -

- @attr description - Drawable to use for generic vertical dividers. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dividerVertical}. - @attr name android:dividerVertical - */ - public static final int Theme_dividerVertical = 156; - /** -

- @attr description - Default style for drop down hints. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownHintAppearance}. - @attr name android:dropDownHintAppearance - */ - public static final int Theme_dropDownHintAppearance = 80; - /** -

- @attr description - Default style for drop down items. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownItemStyle}. - @attr name android:dropDownItemStyle - */ - public static final int Theme_dropDownItemStyle = 78; - /** -

- @attr description - Default ListView style for drop downs. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownListViewStyle}. - @attr name android:dropDownListViewStyle - */ - public static final int Theme_dropDownListViewStyle = 54; - /** -

- @attr description - Default dropdown Spinner style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#dropDownSpinnerStyle}. - @attr name android:dropDownSpinnerStyle - */ - public static final int Theme_dropDownSpinnerStyle = 133; - /** -

- @attr description - The preferred item height for dropdown lists. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:dropdownListPreferredItemHeight - */ - public static final int Theme_dropdownListPreferredItemHeight = 228; - /** -

- @attr description - EditText background drawable. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#editTextBackground}. - @attr name android:editTextBackground - */ - public static final int Theme_editTextBackground = 179; - /** -

- @attr description - EditText text foreground color. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#editTextColor}. - @attr name android:editTextColor - */ - public static final int Theme_editTextColor = 178; - /** -

- @attr description - Default style for EditTextPreference. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#editTextPreferenceStyle}. - @attr name android:editTextPreferenceStyle - */ - public static final int Theme_editTextPreferenceStyle = 90; - /** -

- @attr description - Default EditText style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#editTextStyle}. - @attr name android:editTextStyle - */ - public static final int Theme_editTextStyle = 55; - /** -

- @attr description - Background used instead of errorMessageBackground when the popup has to be above. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:errorMessageAboveBackground - */ - public static final int Theme_errorMessageAboveBackground = 226; - /** -

- @attr description - Popup text displayed in TextView when setError is used. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:errorMessageBackground - */ - public static final int Theme_errorMessageBackground = 225; - /** -

- @attr description - The preferred left bound for an expandable list child's indicator. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#expandableListPreferredChildIndicatorLeft}. - @attr name android:expandableListPreferredChildIndicatorLeft - */ - public static final int Theme_expandableListPreferredChildIndicatorLeft = 34; - /** -

- @attr description - The preferred right bound for an expandable list child's indicator. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#expandableListPreferredChildIndicatorRight}. - @attr name android:expandableListPreferredChildIndicatorRight - */ - public static final int Theme_expandableListPreferredChildIndicatorRight = 35; - /** -

- @attr description - The preferred left padding for an expandable list item that is a child. - If this is not provided, it defaults to the expandableListPreferredItemPaddingLeft. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#expandableListPreferredChildPaddingLeft}. - @attr name android:expandableListPreferredChildPaddingLeft - */ - public static final int Theme_expandableListPreferredChildPaddingLeft = 31; - /** -

- @attr description - The preferred left bound for an expandable list item's indicator. For a child-specific - indicator, use expandableListPreferredChildIndicatorLeft. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#expandableListPreferredItemIndicatorLeft}. - @attr name android:expandableListPreferredItemIndicatorLeft - */ - public static final int Theme_expandableListPreferredItemIndicatorLeft = 32; - /** -

- @attr description - The preferred right bound for an expandable list item's indicator. For a child-specific - indicator, use expandableListPreferredChildIndicatorRight. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#expandableListPreferredItemIndicatorRight}. - @attr name android:expandableListPreferredItemIndicatorRight - */ - public static final int Theme_expandableListPreferredItemIndicatorRight = 33; - /** -

- @attr description - The preferred left padding for an expandable list item (for child-specific layouts, - use expandableListPreferredChildPaddingLeft). This takes into account - the indicator that will be shown to next to the item. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#expandableListPreferredItemPaddingLeft}. - @attr name android:expandableListPreferredItemPaddingLeft - */ - public static final int Theme_expandableListPreferredItemPaddingLeft = 30; - /** -

- @attr description - Default ExpandableListView style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#expandableListViewStyle}. - @attr name android:expandableListViewStyle - */ - public static final int Theme_expandableListViewStyle = 56; - /** -

- @attr description - ExpandableListView with white background. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#expandableListViewWhiteStyle}. - @attr name android:expandableListViewWhiteStyle - */ - public static final int Theme_expandableListViewWhiteStyle = 125; - /** -

- @attr description - Position of the fast scroll index overlay window. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
floating0
atThumb1
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#fastScrollOverlayPosition}. - @attr name android:fastScrollOverlayPosition - */ - public static final int Theme_fastScrollOverlayPosition = 174; - /** -

- @attr description - Drawable to use as the fast scroll index preview window background - when shown on the left. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fastScrollPreviewBackgroundLeft}. - @attr name android:fastScrollPreviewBackgroundLeft - */ - public static final int Theme_fastScrollPreviewBackgroundLeft = 171; - /** -

- @attr description - Drawable to use as the fast scroll index preview window background - when shown on the right. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fastScrollPreviewBackgroundRight}. - @attr name android:fastScrollPreviewBackgroundRight - */ - public static final int Theme_fastScrollPreviewBackgroundRight = 172; - /** -

- @attr description - Text color for the fast scroll index overlay. Make sure it - plays nicely with fastScrollPreviewBackground[Left|Right]. - - -

Must be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fastScrollTextColor}. - @attr name android:fastScrollTextColor - */ - public static final int Theme_fastScrollTextColor = 182; - /** -

- @attr description - Drawable to use as the fast scroll thumb. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fastScrollThumbDrawable}. - @attr name android:fastScrollThumbDrawable - */ - public static final int Theme_fastScrollThumbDrawable = 170; - /** -

- @attr description - Drawable to use as the track for the fast scroll thumb. - This may be null. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fastScrollTrackDrawable}. - @attr name android:fastScrollTrackDrawable - */ - public static final int Theme_fastScrollTrackDrawable = 173; - /** -

- @attr description - Drawable for WebView find-on-page dialogue's "next" button. @hide - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:findOnPageNextDrawable - */ - public static final int Theme_findOnPageNextDrawable = 269; - /** -

- @attr description - Drawable for WebView find-on-page dialogue's "previous" button. @hide - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:findOnPagePreviousDrawable - */ - public static final int Theme_findOnPagePreviousDrawable = 270; - /** -

- @attr description - The preferred background for gallery items. This should be set - as the background of any Views you provide from the Adapter. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#galleryItemBackground}. - @attr name android:galleryItemBackground - */ - public static final int Theme_galleryItemBackground = 28; - /** -

- @attr description - Default Gallery style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#galleryStyle}. - @attr name android:galleryStyle - */ - public static final int Theme_galleryStyle = 57; - /** -

- @attr description - Default GestureOverlayView style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:gestureOverlayViewStyle - */ - public static final int Theme_gestureOverlayViewStyle = 235; - /** -

- @attr description - Default GridView style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#gridViewStyle}. - @attr name android:gridViewStyle - */ - public static final int Theme_gridViewStyle = 58; - /** -

- @attr description - Specifies a drawable to use for the 'home as up' indicator. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#homeAsUpIndicator}. - @attr name android:homeAsUpIndicator - */ - public static final int Theme_homeAsUpIndicator = 157; - /** -

- @attr description - Default HorizontalScrollView style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#horizontalScrollViewStyle}. - @attr name android:horizontalScrollViewStyle - */ - public static final int Theme_horizontalScrollViewStyle = 180; - /** -

- @attr description - The style resource to use for an ImageButton. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#imageButtonStyle}. - @attr name android:imageButtonStyle - */ - public static final int Theme_imageButtonStyle = 59; - /** -

- @attr description - The style resource to use for an ImageButton that is an image well. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#imageWellStyle}. - @attr name android:imageWellStyle - */ - public static final int Theme_imageWellStyle = 60; - /** -

- @attr description - Drawable used as a background for selected list items. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#listChoiceBackgroundIndicator}. - @attr name android:listChoiceBackgroundIndicator - */ - public static final int Theme_listChoiceBackgroundIndicator = 141; - /** -

- @attr description - Drawable to use for multiple choice indicators. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#listChoiceIndicatorMultiple}. - @attr name android:listChoiceIndicatorMultiple - */ - public static final int Theme_listChoiceIndicatorMultiple = 104; - /** -

- @attr description - Drawable to use for single choice indicators. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#listChoiceIndicatorSingle}. - @attr name android:listChoiceIndicatorSingle - */ - public static final int Theme_listChoiceIndicatorSingle = 103; - /** -

- @attr description - The drawable for the list divider. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#listDivider}. - @attr name android:listDivider - */ - public static final int Theme_listDivider = 102; - /** -

- @attr description - The list divider used in alert dialogs. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#listDividerAlertDialog}. - @attr name android:listDividerAlertDialog - */ - public static final int Theme_listDividerAlertDialog = 152; - /** -

- @attr description - Default ListPopupWindow style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#listPopupWindowStyle}. - @attr name android:listPopupWindowStyle - */ - public static final int Theme_listPopupWindowStyle = 148; - /** -

- @attr description - The preferred list item height. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#listPreferredItemHeight}. - @attr name android:listPreferredItemHeight - */ - public static final int Theme_listPreferredItemHeight = 29; - /** -

- @attr description - A larger, more robust list item height. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#listPreferredItemHeightLarge}. - @attr name android:listPreferredItemHeightLarge - */ - public static final int Theme_listPreferredItemHeightLarge = 194; - /** -

- @attr description - A smaller, sleeker list item height. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#listPreferredItemHeightSmall}. - @attr name android:listPreferredItemHeightSmall - */ - public static final int Theme_listPreferredItemHeightSmall = 195; - /** -

- @attr description - The preferred padding along the end edge of list items. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#listPreferredItemPaddingEnd}. - @attr name android:listPreferredItemPaddingEnd - */ - public static final int Theme_listPreferredItemPaddingEnd = 214; - /** -

- @attr description - The preferred padding along the left edge of list items. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#listPreferredItemPaddingLeft}. - @attr name android:listPreferredItemPaddingLeft - */ - public static final int Theme_listPreferredItemPaddingLeft = 209; - /** -

- @attr description - The preferred padding along the right edge of list items. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#listPreferredItemPaddingRight}. - @attr name android:listPreferredItemPaddingRight - */ - public static final int Theme_listPreferredItemPaddingRight = 210; - /** -

- @attr description - The preferred padding along the start edge of list items. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#listPreferredItemPaddingStart}. - @attr name android:listPreferredItemPaddingStart - */ - public static final int Theme_listPreferredItemPaddingStart = 213; - /** -

- @attr description - TextView style for list separators. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#listSeparatorTextViewStyle}. - @attr name android:listSeparatorTextViewStyle - */ - public static final int Theme_listSeparatorTextViewStyle = 96; - /** -

- @attr description - Default ListView style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#listViewStyle}. - @attr name android:listViewStyle - */ - public static final int Theme_listViewStyle = 61; - /** -

- @attr description - ListView with white background. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#listViewWhiteStyle}. - @attr name android:listViewWhiteStyle - */ - public static final int Theme_listViewWhiteStyle = 62; - /** -

- @attr description - Default MapView style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#mapViewStyle}. - @attr name android:mapViewStyle - */ - public static final int Theme_mapViewStyle = 82; - /** -

- @attr description - Default style for the MediaRouteButton widget. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#mediaRouteButtonStyle}. - @attr name android:mediaRouteButtonStyle - */ - public static final int Theme_mediaRouteButtonStyle = 212; - /** -

- @attr description - NumberPicker style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:numberPickerStyle - */ - public static final int Theme_numberPickerStyle = 238; - /** -

- @attr description - The background of a panel when it is inset from the left and right edges of the screen. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#panelBackground}. - @attr name android:panelBackground - */ - public static final int Theme_panelBackground = 46; - /** -

- @attr description - Color that matches (as closely as possible) the panel background. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#panelColorBackground}. - @attr name android:panelColorBackground - */ - public static final int Theme_panelColorBackground = 49; - /** -

- @attr description - Default color of foreground panel imagery. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#panelColorForeground}. - @attr name android:panelColorForeground - */ - public static final int Theme_panelColorForeground = 48; - /** -

- @attr description - The background of a panel when it extends to the left and right edges of the screen. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#panelFullBackground}. - @attr name android:panelFullBackground - */ - public static final int Theme_panelFullBackground = 47; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#panelMenuIsCompact} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name com.android.internal:panelMenuIsCompact - */ - public static final int Theme_panelMenuIsCompact = 232; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#panelMenuListTheme} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name com.android.internal:panelMenuListTheme - */ - public static final int Theme_panelMenuListTheme = 234; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#panelMenuListWidth} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name com.android.internal:panelMenuListWidth - */ - public static final int Theme_panelMenuListWidth = 233; - /** -

- @attr description - Default appearance of panel text. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#panelTextAppearance}. - @attr name android:panelTextAppearance - */ - public static final int Theme_panelTextAppearance = 50; - /** -

- @attr description - Reference to the Pointer style - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:pointerStyle - */ - public static final int Theme_pointerStyle = 267; - /** -

- @attr description - Default PopupMenu style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#popupMenuStyle}. - @attr name android:popupMenuStyle - */ - public static final int Theme_popupMenuStyle = 149; - /** -

- @attr description - Default PopupWindow style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#popupWindowStyle}. - @attr name android:popupWindowStyle - */ - public static final int Theme_popupWindowStyle = 63; - /** -

- @attr description - Default style for PreferenceCategory. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#preferenceCategoryStyle}. - @attr name android:preferenceCategoryStyle - */ - public static final int Theme_preferenceCategoryStyle = 84; - /** -

- @attr description - Preference fragment list style - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:preferenceFragmentListStyle - */ - public static final int Theme_preferenceFragmentListStyle = 249; - /** -

- @attr description - Preference fragment padding side - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:preferenceFragmentPaddingSide - */ - public static final int Theme_preferenceFragmentPaddingSide = 250; - /** -

- @attr description - Default style for Headers pane in PreferenceActivity. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:preferenceFragmentStyle - */ - public static final int Theme_preferenceFragmentStyle = 245; - /** -

- @attr description - Preference frame layout styles. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:preferenceFrameLayoutStyle - */ - public static final int Theme_preferenceFrameLayoutStyle = 265; - /** -

- @attr description - Preference headers panel style - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:preferenceHeaderPanelStyle - */ - public static final int Theme_preferenceHeaderPanelStyle = 247; - /** -

- @attr description - Default style for informational Preference. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#preferenceInformationStyle}. - @attr name android:preferenceInformationStyle - */ - public static final int Theme_preferenceInformationStyle = 85; - /** -

- @attr description - The preference layout that has the child/tabbed effect. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#preferenceLayoutChild}. - @attr name android:preferenceLayoutChild - */ - public static final int Theme_preferenceLayoutChild = 92; - /** -

- @attr description - Preference list style - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:preferenceListStyle - */ - public static final int Theme_preferenceListStyle = 248; - /** -

- @attr description - Preference panel style - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:preferencePanelStyle - */ - public static final int Theme_preferencePanelStyle = 246; - /** -

- @attr description - Default style for PreferenceScreen. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#preferenceScreenStyle}. - @attr name android:preferenceScreenStyle - */ - public static final int Theme_preferenceScreenStyle = 83; - /** -

- @attr description - Default style for Preference. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#preferenceStyle}. - @attr name android:preferenceStyle - */ - public static final int Theme_preferenceStyle = 86; - /** -

- @attr description - Theme to use for presentations spawned from this theme. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#presentationTheme}. - @attr name android:presentationTheme - */ - public static final int Theme_presentationTheme = 215; - /** -

- @attr description - Default ProgressBar style. This is a medium circular progress bar. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#progressBarStyle}. - @attr name android:progressBarStyle - */ - public static final int Theme_progressBarStyle = 64; - /** -

- @attr description - Horizontal ProgressBar style. This is a horizontal progress bar. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#progressBarStyleHorizontal}. - @attr name android:progressBarStyleHorizontal - */ - public static final int Theme_progressBarStyleHorizontal = 65; - /** -

- @attr description - Inverse ProgressBar style. This is a medium circular progress bar. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#progressBarStyleInverse}. - @attr name android:progressBarStyleInverse - */ - public static final int Theme_progressBarStyleInverse = 111; - /** -

- @attr description - Large ProgressBar style. This is a large circular progress bar. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#progressBarStyleLarge}. - @attr name android:progressBarStyleLarge - */ - public static final int Theme_progressBarStyleLarge = 67; - /** -

- @attr description - Large inverse ProgressBar style. This is a large circular progress bar. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#progressBarStyleLargeInverse}. - @attr name android:progressBarStyleLargeInverse - */ - public static final int Theme_progressBarStyleLargeInverse = 113; - /** -

- @attr description - Small ProgressBar style. This is a small circular progress bar. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#progressBarStyleSmall}. - @attr name android:progressBarStyleSmall - */ - public static final int Theme_progressBarStyleSmall = 66; - /** -

- @attr description - Small inverse ProgressBar style. This is a small circular progress bar. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#progressBarStyleSmallInverse}. - @attr name android:progressBarStyleSmallInverse - */ - public static final int Theme_progressBarStyleSmallInverse = 112; - /** -

- @attr description - Small ProgressBar in title style. This is a small circular progress bar that will be placed in title bars. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#progressBarStyleSmallTitle}. - @attr name android:progressBarStyleSmallTitle - */ - public static final int Theme_progressBarStyleSmallTitle = 98; - /** -

- @attr description - Drawable used as an overlay on top of quickcontact photos. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:quickContactBadgeOverlay - */ - public static final int Theme_quickContactBadgeOverlay = 236; - /** -

- @attr description - Default quickcontact badge style with large quickcontact window. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#quickContactBadgeStyleSmallWindowLarge}. - @attr name android:quickContactBadgeStyleSmallWindowLarge - */ - public static final int Theme_quickContactBadgeStyleSmallWindowLarge = 124; - /** -

- @attr description - Default quickcontact badge style with medium quickcontact window. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#quickContactBadgeStyleSmallWindowMedium}. - @attr name android:quickContactBadgeStyleSmallWindowMedium - */ - public static final int Theme_quickContactBadgeStyleSmallWindowMedium = 123; - /** -

- @attr description - Default quickcontact badge style with small quickcontact window. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#quickContactBadgeStyleSmallWindowSmall}. - @attr name android:quickContactBadgeStyleSmallWindowSmall - */ - public static final int Theme_quickContactBadgeStyleSmallWindowSmall = 122; - /** -

- @attr description - Default quickcontact badge style with large quickcontact window. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#quickContactBadgeStyleWindowLarge}. - @attr name android:quickContactBadgeStyleWindowLarge - */ - public static final int Theme_quickContactBadgeStyleWindowLarge = 121; - /** -

- @attr description - Default quickcontact badge style with medium quickcontact window. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#quickContactBadgeStyleWindowMedium}. - @attr name android:quickContactBadgeStyleWindowMedium - */ - public static final int Theme_quickContactBadgeStyleWindowMedium = 120; - /** -

- @attr description - Default quickcontact badge style with small quickcontact window. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#quickContactBadgeStyleWindowSmall}. - @attr name android:quickContactBadgeStyleWindowSmall - */ - public static final int Theme_quickContactBadgeStyleWindowSmall = 119; - /** -

- @attr description - Default RadioButton style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#radioButtonStyle}. - @attr name android:radioButtonStyle - */ - public static final int Theme_radioButtonStyle = 71; - /** -

- @attr description - Default RatingBar style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#ratingBarStyle}. - @attr name android:ratingBarStyle - */ - public static final int Theme_ratingBarStyle = 69; - /** -

- @attr description - Indicator RatingBar style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#ratingBarStyleIndicator}. - @attr name android:ratingBarStyleIndicator - */ - public static final int Theme_ratingBarStyleIndicator = 99; - /** -

- @attr description - Small indicator RatingBar style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#ratingBarStyleSmall}. - @attr name android:ratingBarStyleSmall - */ - public static final int Theme_ratingBarStyleSmall = 70; - /** -

- @attr description - Default style for RingtonePreference. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#ringtonePreferenceStyle}. - @attr name android:ringtonePreferenceStyle - */ - public static final int Theme_ringtonePreferenceStyle = 91; - /** -

- @attr description - Default ScrollView style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scrollViewStyle}. - @attr name android:scrollViewStyle - */ - public static final int Theme_scrollViewStyle = 72; - /** -

- @attr description - Theme to use for Search Dialogs - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:searchDialogTheme - */ - public static final int Theme_searchDialogTheme = 264; - /** -

- @attr description - SearchView dropdown background - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:searchDropdownBackground - */ - public static final int Theme_searchDropdownBackground = 255; - /** -

- @attr description - The list item height for search results. @hide - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:searchResultListItemHeight - */ - public static final int Theme_searchResultListItemHeight = 227; - /** -

- @attr description - SearchView close button icon - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:searchViewCloseIcon - */ - public static final int Theme_searchViewCloseIcon = 256; - /** -

- @attr description - SearchView query refinement icon - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:searchViewEditQuery - */ - public static final int Theme_searchViewEditQuery = 260; - /** -

- @attr description - SearchView query refinement icon background - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:searchViewEditQueryBackground - */ - public static final int Theme_searchViewEditQueryBackground = 261; - /** -

- @attr description - SearchView Go button icon - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:searchViewGoIcon - */ - public static final int Theme_searchViewGoIcon = 257; - /** -

- @attr description - SearchView Search icon - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:searchViewSearchIcon - */ - public static final int Theme_searchViewSearchIcon = 258; - /** -

- @attr description - SearchView text field background for the left section - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:searchViewTextField - */ - public static final int Theme_searchViewTextField = 262; - /** -

- @attr description - SearchView text field background for the right section - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:searchViewTextFieldRight - */ - public static final int Theme_searchViewTextFieldRight = 263; - /** -

- @attr description - SearchView Voice button icon - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:searchViewVoiceIcon - */ - public static final int Theme_searchViewVoiceIcon = 259; - /** -

- @attr description - Search widget more corpus result item background. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This is a private symbol. - @attr name com.android.internal:searchWidgetCorpusItemBackground - */ - public static final int Theme_searchWidgetCorpusItemBackground = 211; - /** -

- @attr description - Default SeekBar style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#seekBarStyle}. - @attr name android:seekBarStyle - */ - public static final int Theme_seekBarStyle = 68; - /** -

- @attr description - Style for segmented buttons - a container that houses several buttons - with the appearance of a singel button broken into segments. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#segmentedButtonStyle}. - @attr name android:segmentedButtonStyle - */ - public static final int Theme_segmentedButtonStyle = 169; - /** -

- @attr description - Background drawable for standalone items that need focus/pressed states. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#selectableItemBackground}. - @attr name android:selectableItemBackground - */ - public static final int Theme_selectableItemBackground = 158; - /** -

- @attr description - Default style for spinner drop down items. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#spinnerDropDownItemStyle}. - @attr name android:spinnerDropDownItemStyle - */ - public static final int Theme_spinnerDropDownItemStyle = 79; - /** -

- @attr description - Default spinner item style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#spinnerItemStyle}. - @attr name android:spinnerItemStyle - */ - public static final int Theme_spinnerItemStyle = 81; - /** -

- @attr description - Default Spinner style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#spinnerStyle}. - @attr name android:spinnerStyle - */ - public static final int Theme_spinnerStyle = 73; - /** -

- @attr description - Default StackView style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:stackViewStyle - */ - public static final int Theme_stackViewStyle = 237; - /** -

- @attr description - Default Star style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#starStyle}. - @attr name android:starStyle - */ - public static final int Theme_starStyle = 74; - /** -

- @attr description - Default style for switch preferences. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#switchPreferenceStyle}. - @attr name android:switchPreferenceStyle - */ - public static final int Theme_switchPreferenceStyle = 190; - /** -

- @attr description - Default style for the Switch widget. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:switchStyle - */ - public static final int Theme_switchStyle = 266; - /** -

- @attr description - Default TabWidget style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#tabWidgetStyle}. - @attr name android:tabWidgetStyle - */ - public static final int Theme_tabWidgetStyle = 75; - /** -

- @attr description - Default appearance of text: color, typeface, size, and style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAppearance}. - @attr name android:textAppearance - */ - public static final int Theme_textAppearance = 4; - /** -

- @attr description - The underline color and thickness for auto correction suggestion - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:textAppearanceAutoCorrectionSuggestion - */ - public static final int Theme_textAppearanceAutoCorrectionSuggestion = 222; - /** -

- @attr description - Text color, typeface, size, and style for the text inside of a button. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAppearanceButton}. - @attr name android:textAppearanceButton - */ - public static final int Theme_textAppearanceButton = 95; - /** -

- @attr description - The underline color and thickness for easy correct suggestion - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:textAppearanceEasyCorrectSuggestion - */ - public static final int Theme_textAppearanceEasyCorrectSuggestion = 216; - /** -

- @attr description - Default appearance of text against an inverted background: - color, typeface, size, and style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAppearanceInverse}. - @attr name android:textAppearanceInverse - */ - public static final int Theme_textAppearanceInverse = 5; - /** -

- @attr description - Text color, typeface, size, and style for "large" text. Defaults to primary text color. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAppearanceLarge}. - @attr name android:textAppearanceLarge - */ - public static final int Theme_textAppearanceLarge = 16; - /** -

- @attr description - Text color, typeface, size, and style for "large" inverse text. Defaults to primary inverse text color. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAppearanceLargeInverse}. - @attr name android:textAppearanceLargeInverse - */ - public static final int Theme_textAppearanceLargeInverse = 19; - /** -

- @attr description - Text color, typeface, size, and style for the text inside of a popup menu. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAppearanceLargePopupMenu}. - @attr name android:textAppearanceLargePopupMenu - */ - public static final int Theme_textAppearanceLargePopupMenu = 150; - /** -

- @attr description - The preferred TextAppearance for the primary text of list items. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAppearanceListItem}. - @attr name android:textAppearanceListItem - */ - public static final int Theme_textAppearanceListItem = 207; - /** -

- @attr description - The preferred TextAppearance for the primary text of small list items. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAppearanceListItemSmall}. - @attr name android:textAppearanceListItemSmall - */ - public static final int Theme_textAppearanceListItemSmall = 208; - /** -

- @attr description - Text color, typeface, size, and style for "medium" text. Defaults to primary text color. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAppearanceMedium}. - @attr name android:textAppearanceMedium - */ - public static final int Theme_textAppearanceMedium = 17; - /** -

- @attr description - Text color, typeface, size, and style for "medium" inverse text. Defaults to primary inverse text color. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAppearanceMediumInverse}. - @attr name android:textAppearanceMediumInverse - */ - public static final int Theme_textAppearanceMediumInverse = 20; - /** -

- @attr description - The underline color and thickness for misspelled suggestion - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:textAppearanceMisspelledSuggestion - */ - public static final int Theme_textAppearanceMisspelledSuggestion = 221; - /** -

- @attr description - Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAppearanceSearchResultSubtitle}. - @attr name android:textAppearanceSearchResultSubtitle - */ - public static final int Theme_textAppearanceSearchResultSubtitle = 116; - /** -

- @attr description - Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAppearanceSearchResultTitle}. - @attr name android:textAppearanceSearchResultTitle - */ - public static final int Theme_textAppearanceSearchResultTitle = 117; - /** -

- @attr description - Text color, typeface, size, and style for "small" text. Defaults to secondary text color. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAppearanceSmall}. - @attr name android:textAppearanceSmall - */ - public static final int Theme_textAppearanceSmall = 18; - /** -

- @attr description - Text color, typeface, size, and style for "small" inverse text. Defaults to secondary inverse text color. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAppearanceSmallInverse}. - @attr name android:textAppearanceSmallInverse - */ - public static final int Theme_textAppearanceSmallInverse = 21; - /** -

- @attr description - Text color, typeface, size, and style for small text inside of a popup menu. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAppearanceSmallPopupMenu}. - @attr name android:textAppearanceSmallPopupMenu - */ - public static final int Theme_textAppearanceSmallPopupMenu = 151; - /** -

- @attr description - Drawable to use for check marks. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textCheckMark}. - @attr name android:textCheckMark - */ - public static final int Theme_textCheckMark = 22; - /** -

This symbol is the offset where the {@link android.R.attr#textCheckMarkInverse} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". - @attr name android:textCheckMarkInverse - */ - public static final int Theme_textCheckMarkInverse = 23; - /** -

- @attr description - Color of list item text in alert dialogs. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorAlertDialogListItem}. - @attr name android:textColorAlertDialogListItem - */ - public static final int Theme_textColorAlertDialogListItem = 153; - /** -

- @attr description - Color of highlighted text, when used in a light theme. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorHighlightInverse}. - @attr name android:textColorHighlightInverse - */ - public static final int Theme_textColorHighlightInverse = 176; - /** -

- @attr description - Inverse hint text color. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorHintInverse}. - @attr name android:textColorHintInverse - */ - public static final int Theme_textColorHintInverse = 15; - /** -

- @attr description - Color of link text (URLs), when used in a light theme. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorLinkInverse}. - @attr name android:textColorLinkInverse - */ - public static final int Theme_textColorLinkInverse = 177; - /** -

- @attr description - The most prominent text color. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorPrimary}. - @attr name android:textColorPrimary - */ - public static final int Theme_textColorPrimary = 6; - /** -

- @attr description - Bright text color. Only differentiates based on the disabled state. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorPrimaryDisableOnly}. - @attr name android:textColorPrimaryDisableOnly - */ - public static final int Theme_textColorPrimaryDisableOnly = 7; - /** -

- @attr description - Primary inverse text color, useful for inverted backgrounds. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorPrimaryInverse}. - @attr name android:textColorPrimaryInverse - */ - public static final int Theme_textColorPrimaryInverse = 9; - /** -

- @attr description - Bright inverse text color. Only differentiates based on the disabled state. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorPrimaryInverseDisableOnly}. - @attr name android:textColorPrimaryInverseDisableOnly - */ - public static final int Theme_textColorPrimaryInverseDisableOnly = 114; - /** -

- @attr description - Bright inverse text color. This does not differentiate the disabled state. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorPrimaryInverseNoDisable}. - @attr name android:textColorPrimaryInverseNoDisable - */ - public static final int Theme_textColorPrimaryInverseNoDisable = 13; - /** -

- @attr description - Bright text color. This does not differentiate the disabled state. As an example, - buttons use this since they display the disabled state via the background and not the - foreground text color. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorPrimaryNoDisable}. - @attr name android:textColorPrimaryNoDisable - */ - public static final int Theme_textColorPrimaryNoDisable = 11; - /** -

- @attr description - Text color for urls in search suggestions, used by things like global search and the browser. @hide - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This is a private symbol. - @attr name com.android.internal:textColorSearchUrl - */ - public static final int Theme_textColorSearchUrl = 110; - /** -

- @attr description - Secondary text color. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorSecondary}. - @attr name android:textColorSecondary - */ - public static final int Theme_textColorSecondary = 8; - /** -

- @attr description - Secondary inverse text color, useful for inverted backgrounds. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorSecondaryInverse}. - @attr name android:textColorSecondaryInverse - */ - public static final int Theme_textColorSecondaryInverse = 10; - /** -

- @attr description - Dim inverse text color. This does not differentiate the disabled state. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorSecondaryInverseNoDisable}. - @attr name android:textColorSecondaryInverseNoDisable - */ - public static final int Theme_textColorSecondaryInverseNoDisable = 14; - /** -

- @attr description - Dim text color. This does not differentiate the disabled state. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorSecondaryNoDisable}. - @attr name android:textColorSecondaryNoDisable - */ - public static final int Theme_textColorSecondaryNoDisable = 12; - /** -

- @attr description - Tertiary text color. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorTertiary}. - @attr name android:textColorTertiary - */ - public static final int Theme_textColorTertiary = 100; - /** -

- @attr description - Tertiary inverse text color, useful for inverted backgrounds. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColorTertiaryInverse}. - @attr name android:textColorTertiaryInverse - */ - public static final int Theme_textColorTertiaryInverse = 101; - /** -

- @attr description - Variation of textEditPasteWindowLayout displayed when the clipboard is empty. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textEditNoPasteWindowLayout}. - @attr name android:textEditNoPasteWindowLayout - */ - public static final int Theme_textEditNoPasteWindowLayout = 163; - /** -

- @attr description - The layout of the view that is displayed on top of the cursor to paste inside a - TextEdit field. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textEditPasteWindowLayout}. - @attr name android:textEditPasteWindowLayout - */ - public static final int Theme_textEditPasteWindowLayout = 162; - /** -

- @attr description - Variation of textEditSidePasteWindowLayout displayed when the clipboard is empty. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textEditSideNoPasteWindowLayout}. - @attr name android:textEditSideNoPasteWindowLayout - */ - public static final int Theme_textEditSideNoPasteWindowLayout = 187; - /** -

- @attr description - Used instead of textEditPasteWindowLayout when the window is moved on the side of the - insertion cursor because it would be clipped if it were positioned on top. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textEditSidePasteWindowLayout}. - @attr name android:textEditSidePasteWindowLayout - */ - public static final int Theme_textEditSidePasteWindowLayout = 186; - /** -

- @attr description - Layout of the TextView item that will populate the suggestion popup window. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textEditSuggestionItemLayout}. - @attr name android:textEditSuggestionItemLayout - */ - public static final int Theme_textEditSuggestionItemLayout = 192; - /** -

- @attr description - Reference to a drawable that will be used to display a text selection - anchor for positioning the cursor within text. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textSelectHandle}. - @attr name android:textSelectHandle - */ - public static final int Theme_textSelectHandle = 129; - /** -

- @attr description - Reference to a drawable that will be used to display a text selection - anchor on the left side of a selection region. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textSelectHandleLeft}. - @attr name android:textSelectHandleLeft - */ - public static final int Theme_textSelectHandleLeft = 127; - /** -

- @attr description - Reference to a drawable that will be used to display a text selection - anchor on the right side of a selection region. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textSelectHandleRight}. - @attr name android:textSelectHandleRight - */ - public static final int Theme_textSelectHandleRight = 128; - /** -

- @attr description - Reference to a style that will be used for the window containing a text - selection anchor. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textSelectHandleWindowStyle}. - @attr name android:textSelectHandleWindowStyle - */ - public static final int Theme_textSelectHandleWindowStyle = 130; - /** -

- @attr description - Reference to a style that will be used for the window containing a list of possible - text suggestions in an EditText. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textSuggestionsWindowStyle}. - @attr name android:textSuggestionsWindowStyle - */ - public static final int Theme_textSuggestionsWindowStyle = 191; - /** -

- @attr description - The underline color - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This is a private symbol. - @attr name com.android.internal:textUnderlineColor - */ - public static final int Theme_textUnderlineColor = 223; - /** -

- @attr description - The underline thickness - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This is a private symbol. - @attr name com.android.internal:textUnderlineThickness - */ - public static final int Theme_textUnderlineThickness = 224; - /** -

- @attr description - Default TextView style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textViewStyle}. - @attr name android:textViewStyle - */ - public static final int Theme_textViewStyle = 76; - /** -

- @attr description - The TimePicker style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:timePickerStyle - */ - public static final int Theme_timePickerStyle = 239; - /** -

- @attr description - Background to use for toasts - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:toastFrameBackground - */ - public static final int Theme_toastFrameBackground = 254; - /** -

- @attr description - Default WebTextView style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#webTextViewStyle}. - @attr name android:webTextViewStyle - */ - public static final int Theme_webTextViewStyle = 126; - /** -

- @attr description - Default WebView style. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#webViewStyle}. - @attr name android:webViewStyle - */ - public static final int Theme_webViewStyle = 77; - /** -

- @attr description - Flag indicating whether this window should have an Action Bar - in place of the usual title bar. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowActionBar}. - @attr name android:windowActionBar - */ - public static final int Theme_windowActionBar = 131; - /** -

- @attr description - Flag indicating whether this window's Action Bar should overlay - application content. Does nothing if the window would not - have an Action Bar. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowActionBarOverlay}. - @attr name android:windowActionBarOverlay - */ - public static final int Theme_windowActionBarOverlay = 139; - /** -

- @attr description - Flag indicating whether action modes should overlay window content - when there is not reserved space for their UI (such as an Action Bar). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowActionModeOverlay}. - @attr name android:windowActionModeOverlay - */ - public static final int Theme_windowActionModeOverlay = 138; - /** -

- @attr description - Reference to a style resource holding - the set of window animations to use, which can be - any of the attributes defined by - {@link android.R.styleable#WindowAnimation}. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowAnimationStyle}. - @attr name android:windowAnimationStyle - */ - public static final int Theme_windowAnimationStyle = 93; - /** -

- @attr description - Drawable to use as the overall window background. As of - {@link android.os.Build.VERSION_CODES#HONEYCOMB}, this may - be a selector that uses state_accelerated to pick a non-solid - color when running on devices that can draw such a bitmap - with complex compositing on top at 60fps. - -

There are a few special considerations to use when setting this - drawable: -

    -
  • This information will be used to infer the pixel format - for your window's surface. If the drawable has any - non-opaque pixels, your window will be translucent - (32 bpp). -
  • If you want to draw the entire background - yourself, you should set this drawable to some solid - color that closely matches that background (so the - system's preview of your window will match), and - then in code manually set your window's background to - null so it will not be drawn. -
- - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowBackground}. - @attr name android:windowBackground - */ - public static final int Theme_windowBackground = 36; - /** -

- @attr description - Control whether a container should automatically close itself if - the user touches outside of it. This only applies to activities - and dialogs. - -

Note: this attribute will only be respected for applications - that are targeting {@link android.os.Build.VERSION_CODES#HONEYCOMB} - or later. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowCloseOnTouchOutside}. - @attr name android:windowCloseOnTouchOutside - */ - public static final int Theme_windowCloseOnTouchOutside = 183; - /** -

- @attr description - This Drawable is overlaid over the foreground of the Window's content area, usually - to place a shadow below the title. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowContentOverlay}. - @attr name android:windowContentOverlay - */ - public static final int Theme_windowContentOverlay = 41; - /** -

- @attr description - Flag allowing you to disable the preview animation for a window. - The default value is false; if set to true, the system can never - use the window's theme to show a preview of it before your - actual instance is shown to the user. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowDisablePreview}. - @attr name android:windowDisablePreview - */ - public static final int Theme_windowDisablePreview = 107; - /** -

- @attr description - Flag indicating that this window should allow touches to be split - across other windows that also support split touch. - The default value is true for applications with a targetSdkVersion - of Honeycomb or newer; false otherwise. - When this flag is false, the first pointer that goes down determines - the window to which all subsequent touches go until all pointers go up. - When this flag is true, each pointer (not necessarily the first) that - goes down determines the window to which all subsequent touches of that - pointer will go until that pointers go up thereby enabling touches - with multiple pointers to be split across multiple windows. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowEnableSplitTouch}. - @attr name android:windowEnableSplitTouch - */ - public static final int Theme_windowEnableSplitTouch = 164; - /** -

- @attr description - Drawable to use as a frame around the window. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowFrame}. - @attr name android:windowFrame - */ - public static final int Theme_windowFrame = 37; - /** -

- @attr description - Flag indicating whether this window should fill the entire screen. Corresponds - to {@link android.view.WindowManager.LayoutParams#FLAG_FULLSCREEN}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowFullscreen}. - @attr name android:windowFullscreen - */ - public static final int Theme_windowFullscreen = 97; - /** -

- @attr description - Flag indicating whether this is a floating window. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowIsFloating}. - @attr name android:windowIsFloating - */ - public static final int Theme_windowIsFloating = 39; - /** -

- @attr description - Flag indicating whether this is a translucent window. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowIsTranslucent}. - @attr name android:windowIsTranslucent - */ - public static final int Theme_windowIsTranslucent = 40; - /** -

- @attr description - Flag indicating that this window should not be displayed at all. - The default value is false; if set to true, and this window is - the main window of an Activity, then it will never actually - be added to the window manager. This means that your activity - must immediately quit without waiting for user interaction, - because there will be no such interaction coming. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowNoDisplay}. - @attr name android:windowNoDisplay - */ - public static final int Theme_windowNoDisplay = 105; - /** -

- @attr description - Flag indicating whether there should be no title on this window. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowNoTitle}. - @attr name android:windowNoTitle - */ - public static final int Theme_windowNoTitle = 38; - /** -

- @attr description - Flag indicating whether this window should extend into overscan region. Corresponds - to {@link android.view.WindowManager.LayoutParams#FLAG_LAYOUT_IN_OVERSCAN}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowOverscan}. - @attr name android:windowOverscan - */ - public static final int Theme_windowOverscan = 218; - /** -

- @attr description - Flag indicating that this window's background should be the - user's current wallpaper. Corresponds - to {@link android.view.WindowManager.LayoutParams#FLAG_SHOW_WALLPAPER}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowShowWallpaper}. - @attr name android:windowShowWallpaper - */ - public static final int Theme_windowShowWallpaper = 115; - /** -

- @attr description - Defines the default soft input state that this window would - like when it is displayed. Corresponds - to {@link android.view.WindowManager.LayoutParams#softInputMode}. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - -
ConstantValueDescription
stateUnspecified0 Not specified, use what the system thinks is best. This - is the default.
stateUnchanged1 Leave the soft input window as-is, in whatever state it - last was.
stateHidden2 Make the soft input area hidden when normally appropriate - (when the user is navigating forward to your window).
stateAlwaysHidden3 Always make the soft input area hidden when this window - has input focus.
stateVisible4 Make the soft input area visible when normally appropriate - (when the user is navigating forward to your window).
stateAlwaysVisible5 Always make the soft input area visible when this window - has input focus.
adjustUnspecified0x00 The window resize/pan adjustment has not been specified, - the system will automatically select between resize and pan - modes, depending - on whether the content of the window has any layout views - that can scroll their contents. If there is such a view, - then the window will be resized, with the assumption being - that the resizeable area can be reduced to make room for - the input UI.
adjustResize0x10 Always resize the window: the content area of the window is - reduced to make room for the soft input area.
adjustPan0x20 Don't resize the window to make room for the soft input area; - instead pan the contents of the window as focus moves inside - of it so that the user can see what they are typing. This is - generally less desireable than panning because the user may - need to close the input area to get at and interact with - parts of the window.
adjustNothing0x30 Don't resize or pan the window to make room for the - soft input area; the window is never adjusted for it.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowSoftInputMode}. - @attr name android:windowSoftInputMode - */ - public static final int Theme_windowSoftInputMode = 108; - /** -

- @attr description - Flag indicating that the action bar should be split to provide more - room for elements. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:windowSplitActionBar - */ - public static final int Theme_windowSplitActionBar = 229; - /** -

- @attr description - The style resource to use for a window's title area. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowTitleBackgroundStyle}. - @attr name android:windowTitleBackgroundStyle - */ - public static final int Theme_windowTitleBackgroundStyle = 44; - /** -

- @attr description - The style resource to use for a window's title bar height. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowTitleSize}. - @attr name android:windowTitleSize - */ - public static final int Theme_windowTitleSize = 42; - /** -

- @attr description - The style resource to use for a window's title text. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowTitleStyle}. - @attr name android:windowTitleStyle - */ - public static final int Theme_windowTitleStyle = 43; - /** -

- @attr description - Flag indicating whether this window requests a translucent navigation bar. Corresponds - to {@link android.view.WindowManager.LayoutParams#FLAG_TRANSLUCENT_NAVIGATION}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowTranslucentNavigation}. - @attr name android:windowTranslucentNavigation - */ - public static final int Theme_windowTranslucentNavigation = 220; - /** -

- @attr description - Flag indicating whether this window requests a translucent status bar. Corresponds - to {@link android.view.WindowManager.LayoutParams#FLAG_TRANSLUCENT_STATUS}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowTranslucentStatus}. - @attr name android:windowTranslucentStatus - */ - public static final int Theme_windowTranslucentStatus = 219; - /** -

- @attr description - Default style for YesNoPreference. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#yesNoPreferenceStyle}. - @attr name android:yesNoPreferenceStyle - */ - public static final int Theme_yesNoPreferenceStyle = 88; - /** - Attributes that can be used with a TimePicker. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #TimePicker_internalLayout android:internalLayout} @hide The layout of the time picker.
- @see #TimePicker_internalLayout - */ - public static final int[] TimePicker = { - 0x0101043c}; - /** -

- @attr description - @hide The layout of the time picker. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This is a private symbol. - @attr name com.android.internal:internalLayout - */ - public static final int TimePicker_internalLayout = 0; - /** - Attributes that can be used with a ToggleButton. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #ToggleButton_disabledAlpha android:disabledAlpha} The alpha to apply to the indicator when disabled.
{@link #ToggleButton_textOff android:textOff} The text for the button when it is not checked.
{@link #ToggleButton_textOn android:textOn} The text for the button when it is checked.
- @see #ToggleButton_disabledAlpha - @see #ToggleButton_textOff - @see #ToggleButton_textOn - */ - public static final int[] ToggleButton = { - 0x01010033, 0x01010124, 0x01010125}; - /** -

- @attr description - The alpha to apply to the indicator when disabled. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#disabledAlpha}. - @attr name android:disabledAlpha - */ - public static final int ToggleButton_disabledAlpha = 0; - /** -

- @attr description - The text for the button when it is not checked. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textOff}. - @attr name android:textOff - */ - public static final int ToggleButton_textOff = 2; - /** -

- @attr description - The text for the button when it is checked. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textOn}. - @attr name android:textOn - */ - public static final int ToggleButton_textOn = 1; - /** - Use specific transition subclass names as the root tag of the XML resource that - describes a {@link android.transition.Transition Transition}, - such as move, fade, and set. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #Transition_duration android:duration} Amount of time (in milliseconds) that the transition should run.
{@link #Transition_interpolator android:interpolator} Interpolator to be used in the animations spawned by this transition.
{@link #Transition_startDelay android:startDelay} Delay in milliseconds before the transition starts.
- @see #Transition_duration - @see #Transition_interpolator - @see #Transition_startDelay - */ - public static final int[] Transition = { - 0x01010141, 0x01010198, 0x010103e2}; - /** -

- @attr description - Amount of time (in milliseconds) that the transition should run. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#duration}. - @attr name android:duration - */ - public static final int Transition_duration = 1; - /** -

- @attr description - Interpolator to be used in the animations spawned by this transition. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#interpolator}. - @attr name android:interpolator - */ - public static final int Transition_interpolator = 0; - /** -

- @attr description - Delay in milliseconds before the transition starts. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#startDelay}. - @attr name android:startDelay - */ - public static final int Transition_startDelay = 2; - /** - Use transitionManager as the root tag of the XML resource that - describes a {@link android.transition.TransitionManager - TransitionManager}. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #TransitionManager_fromScene android:fromScene} The originating scene in this scene change.
{@link #TransitionManager_toScene android:toScene} The destination scene in this scene change.
{@link #TransitionManager_transition android:transition} The id of a transition to be used in a particular scene change.
- @see #TransitionManager_fromScene - @see #TransitionManager_toScene - @see #TransitionManager_transition - */ - public static final int[] TransitionManager = { - 0x010103dd, 0x010103de, 0x010103df}; - /** -

- @attr description - The originating scene in this scene change. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fromScene}. - @attr name android:fromScene - */ - public static final int TransitionManager_fromScene = 0; - /** -

- @attr description - The destination scene in this scene change. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#toScene}. - @attr name android:toScene - */ - public static final int TransitionManager_toScene = 1; - /** -

- @attr description - The id of a transition to be used in a particular scene change. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#transition}. - @attr name android:transition - */ - public static final int TransitionManager_transition = 2; - /** - Use set as the root tag of the XML resource that - describes a {@link android.transition.TransitionSet - TransitionSet} transition. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #TransitionSet_transitionOrdering android:transitionOrdering}
- @see #TransitionSet_transitionOrdering - */ - public static final int[] TransitionSet = { - 0x010103e0}; - /** -

This symbol is the offset where the {@link android.R.attr#transitionOrdering} - attribute's value can be found in the {@link #TransitionSet} array. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
together0 child transitions should be played together.
sequential1 child transitions should be played sequentially, in the same order - as the xml.
- @attr name android:transitionOrdering - */ - public static final int TransitionSet_transitionOrdering = 0; - /** - Use target as the root tag of the XML resource that - describes a {@link android.transition.Transition#addTarget(int) - targetId} of a transition. There can be one or more targets inside - a targets tag, which is itself inside an appropriate - {@link android.R.styleable#Transition Transition} tag. - -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #TransitionTarget_targetId android:targetId} The id of a target on which this transition will animate changes.
- @see #TransitionTarget_targetId - */ - public static final int[] TransitionTarget = { - 0x010103dc}; - /** -

- @attr description - The id of a target on which this transition will animate changes. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#targetId}. - @attr name android:targetId - */ - public static final int TransitionTarget_targetId = 0; - /** - Attributes that can be used with a TranslateAnimation. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #TranslateAnimation_fromXDelta android:fromXDelta}
{@link #TranslateAnimation_fromYDelta android:fromYDelta}
{@link #TranslateAnimation_toXDelta android:toXDelta}
{@link #TranslateAnimation_toYDelta android:toYDelta}
- @see #TranslateAnimation_fromXDelta - @see #TranslateAnimation_fromYDelta - @see #TranslateAnimation_toXDelta - @see #TranslateAnimation_toYDelta - */ - public static final int[] TranslateAnimation = { - 0x010101c6, 0x010101c7, 0x010101c8, 0x010101c9}; - /** -

This symbol is the offset where the {@link android.R.attr#fromXDelta} - attribute's value can be found in the {@link #TranslateAnimation} array. - - -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:fromXDelta - */ - public static final int TranslateAnimation_fromXDelta = 0; - /** -

This symbol is the offset where the {@link android.R.attr#fromYDelta} - attribute's value can be found in the {@link #TranslateAnimation} array. - - -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:fromYDelta - */ - public static final int TranslateAnimation_fromYDelta = 2; - /** -

This symbol is the offset where the {@link android.R.attr#toXDelta} - attribute's value can be found in the {@link #TranslateAnimation} array. - - -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:toXDelta - */ - public static final int TranslateAnimation_toXDelta = 1; - /** -

This symbol is the offset where the {@link android.R.attr#toYDelta} - attribute's value can be found in the {@link #TranslateAnimation} array. - - -

May be a floating point value, such as "1.2". -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:toYDelta - */ - public static final int TranslateAnimation_toYDelta = 3; - /** - Attributes that can be used with a TwoLineListItem. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #TwoLineListItem_mode android:mode}
- @see #TwoLineListItem_mode - */ - public static final int[] TwoLineListItem = { - 0x0101017e}; - /** -

This symbol is the offset where the {@link android.R.attr#mode} - attribute's value can be found in the {@link #TwoLineListItem} array. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
oneLine1 Always show only the first line.
collapsing2 When selected show both lines, otherwise show only the first line. - This is the default mode.
twoLine3 Always show both lines.
- @attr name android:mode - */ - public static final int TwoLineListItem_mode = 0; - /** - Attributes that can be used with a VerticalSlider_Layout. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #VerticalSlider_Layout_layout_scale android:layout_scale}
- @see #VerticalSlider_Layout_layout_scale - */ - public static final int[] VerticalSlider_Layout = { - 0x01010193}; - /** -

This symbol is the offset where the {@link android.R.attr#layout_scale} - attribute's value can be found in the {@link #VerticalSlider_Layout} array. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:layout_scale - */ - public static final int VerticalSlider_Layout_layout_scale = 0; - /** - Attributes that can be used with {@link android.view.View} or - any of its subclasses. Also see {@link #ViewGroup_Layout} for - attributes that are processed by the view's parent. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #View_accessibilityLiveRegion android:accessibilityLiveRegion} Indicates to accessibility services whether the user should be notified when - this view changes.
{@link #View_alpha android:alpha} alpha property of the view, as a value between 0 (completely transparent) and 1 - (completely opaque).
{@link #View_background android:background} A drawable to use as the background.
{@link #View_clickable android:clickable} Defines whether this view reacts to click events.
{@link #View_contentDescription android:contentDescription} Defines text that briefly describes content of the view.
{@link #View_drawingCacheQuality android:drawingCacheQuality} Defines the quality of translucent drawing caches.
{@link #View_duplicateParentState android:duplicateParentState} When this attribute is set to true, the view gets its drawable state - (focused, pressed, etc.
{@link #View_fadeScrollbars android:fadeScrollbars} Defines whether to fade out scrollbars when they are not in use.
{@link #View_fadingEdge android:fadingEdge} This attribute is deprecated and will be ignored as of - API level 14 ({@link android.os.Build.VERSION_CODES#ICE_CREAM_SANDWICH}).
{@link #View_fadingEdgeLength android:fadingEdgeLength} Defines the length of the fading edges.
{@link #View_filterTouchesWhenObscured android:filterTouchesWhenObscured} Specifies whether to filter touches when the view's window is obscured by - another visible window.
{@link #View_fitsSystemWindows android:fitsSystemWindows} Boolean internal attribute to adjust view layout based on - system windows such as the status bar.
{@link #View_focusable android:focusable} Boolean that controls whether a view can take focus.
{@link #View_focusableInTouchMode android:focusableInTouchMode} Boolean that controls whether a view can take focus while in touch mode.
{@link #View_hapticFeedbackEnabled android:hapticFeedbackEnabled} Boolean that controls whether a view should have haptic feedback - enabled for events such as long presses.
{@link #View_id android:id} Supply an identifier name for this view, to later retrieve it - with {@link android.view.View#findViewById View.findViewById()} or - {@link android.app.Activity#findViewById Activity.findViewById()}.
{@link #View_importantForAccessibility android:importantForAccessibility} Controls how this View is important for accessibility which is if it fires - accessibility events and if it is reported to accessibility services that - query the screen.
{@link #View_isScrollContainer android:isScrollContainer} Set this if the view will serve as a scrolling container, meaing - that it can be resized to shrink its overall window so that there - will be space for an input method.
{@link #View_keepScreenOn android:keepScreenOn} Controls whether the view's window should keep the screen on - while visible.
{@link #View_labelFor android:labelFor} Specifies the id of a view for which this view serves as a label for - accessibility purposes.
{@link #View_layerType android:layerType} Specifies the type of layer backing this view.
{@link #View_layoutDirection android:layoutDirection} Defines the direction of layout drawing.
{@link #View_longClickable android:longClickable} Defines whether this view reacts to long click events.
{@link #View_minHeight android:minHeight} Defines the minimum height of the view.
{@link #View_minWidth android:minWidth} Defines the minimum width of the view.
{@link #View_nextFocusDown android:nextFocusDown} Defines the next view to give focus to when the next focus is - {@link android.view.View#FOCUS_DOWN} - - If the reference refers to a view that does not exist or is part - of a hierarchy that is invisible, a {@link java.lang.RuntimeException} - will result when the reference is accessed.
{@link #View_nextFocusForward android:nextFocusForward} Defines the next view to give focus to when the next focus is - {@link android.view.View#FOCUS_FORWARD} - - If the reference refers to a view that does not exist or is part - of a hierarchy that is invisible, a {@link java.lang.RuntimeException} - will result when the reference is accessed.
{@link #View_nextFocusLeft android:nextFocusLeft} Defines the next view to give focus to when the next focus is - {@link android.view.View#FOCUS_LEFT}.
{@link #View_nextFocusRight android:nextFocusRight} Defines the next view to give focus to when the next focus is - {@link android.view.View#FOCUS_RIGHT} - - If the reference refers to a view that does not exist or is part - of a hierarchy that is invisible, a {@link java.lang.RuntimeException} - will result when the reference is accessed.
{@link #View_nextFocusUp android:nextFocusUp} Defines the next view to give focus to when the next focus is - {@link android.view.View#FOCUS_UP} - - If the reference refers to a view that does not exist or is part - of a hierarchy that is invisible, a {@link java.lang.RuntimeException} - will result when the reference is accessed.
{@link #View_onClick android:onClick} Name of the method in this View's context to invoke when the view is - clicked.
{@link #View_overScrollMode android:overScrollMode} Defines over-scrolling behavior.
{@link #View_padding android:padding} Sets the padding, in pixels, of all four edges.
{@link #View_paddingBottom android:paddingBottom} Sets the padding, in pixels, of the bottom edge; see {@link android.R.attr#padding}.
{@link #View_paddingEnd android:paddingEnd} Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
{@link #View_paddingLeft android:paddingLeft} Sets the padding, in pixels, of the left edge; see {@link android.R.attr#padding}.
{@link #View_paddingRight android:paddingRight} Sets the padding, in pixels, of the right edge; see {@link android.R.attr#padding}.
{@link #View_paddingStart android:paddingStart} Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
{@link #View_paddingTop android:paddingTop} Sets the padding, in pixels, of the top edge; see {@link android.R.attr#padding}.
{@link #View_requiresFadingEdge android:requiresFadingEdge} Defines which edges should be faded on scrolling.
{@link #View_rotation android:rotation} rotation of the view, in degrees.
{@link #View_rotationX android:rotationX} rotation of the view around the x axis, in degrees.
{@link #View_rotationY android:rotationY} rotation of the view around the y axis, in degrees.
{@link #View_saveEnabled android:saveEnabled} If unset, no state will be saved for this view when it is being - frozen.
{@link #View_scaleX android:scaleX} scale of the view in the x direction.
{@link #View_scaleY android:scaleY} scale of the view in the y direction.
{@link #View_scrollX android:scrollX} The initial horizontal scroll offset, in pixels.
{@link #View_scrollY android:scrollY} The initial vertical scroll offset, in pixels.
{@link #View_scrollbarAlwaysDrawHorizontalTrack android:scrollbarAlwaysDrawHorizontalTrack} Defines whether the horizontal scrollbar track should always be drawn.
{@link #View_scrollbarAlwaysDrawVerticalTrack android:scrollbarAlwaysDrawVerticalTrack} Defines whether the vertical scrollbar track should always be drawn.
{@link #View_scrollbarDefaultDelayBeforeFade android:scrollbarDefaultDelayBeforeFade} Defines the delay in milliseconds that a scrollbar waits before fade out.
{@link #View_scrollbarFadeDuration android:scrollbarFadeDuration} Defines the delay in milliseconds that a scrollbar takes to fade out.
{@link #View_scrollbarSize android:scrollbarSize} Sets the width of vertical scrollbars and height of horizontal scrollbars.
{@link #View_scrollbarStyle android:scrollbarStyle} Controls the scrollbar style and position.
{@link #View_scrollbarThumbHorizontal android:scrollbarThumbHorizontal} Defines the horizontal scrollbar thumb drawable.
{@link #View_scrollbarThumbVertical android:scrollbarThumbVertical} Defines the vertical scrollbar thumb drawable.
{@link #View_scrollbarTrackHorizontal android:scrollbarTrackHorizontal} Defines the horizontal scrollbar track drawable.
{@link #View_scrollbarTrackVertical android:scrollbarTrackVertical} Defines the vertical scrollbar track drawable.
{@link #View_scrollbars android:scrollbars} Defines which scrollbars should be displayed on scrolling or not.
{@link #View_soundEffectsEnabled android:soundEffectsEnabled} Boolean that controls whether a view should have sound effects - enabled for events such as clicking and touching.
{@link #View_tag android:tag} Supply a tag for this view containing a String, to be retrieved - later with {@link android.view.View#getTag View.getTag()} or - searched for with {@link android.view.View#findViewWithTag - View.findViewWithTag()}.
{@link #View_textAlignment android:textAlignment} Defines the alignment of the text.
{@link #View_textDirection android:textDirection} Defines the direction of the text.
{@link #View_transformPivotX android:transformPivotX} x location of the pivot point around which the view will rotate and scale.
{@link #View_transformPivotY android:transformPivotY} y location of the pivot point around which the view will rotate and scale.
{@link #View_translationX android:translationX} translation in x of the view.
{@link #View_translationY android:translationY} translation in y of the view.
{@link #View_verticalScrollbarPosition android:verticalScrollbarPosition} Determines which side the vertical scroll bar should be placed on.
{@link #View_visibility android:visibility} Controls the initial visibility of the view.
- @see #View_accessibilityLiveRegion - @see #View_alpha - @see #View_background - @see #View_clickable - @see #View_contentDescription - @see #View_drawingCacheQuality - @see #View_duplicateParentState - @see #View_fadeScrollbars - @see #View_fadingEdge - @see #View_fadingEdgeLength - @see #View_filterTouchesWhenObscured - @see #View_fitsSystemWindows - @see #View_focusable - @see #View_focusableInTouchMode - @see #View_hapticFeedbackEnabled - @see #View_id - @see #View_importantForAccessibility - @see #View_isScrollContainer - @see #View_keepScreenOn - @see #View_labelFor - @see #View_layerType - @see #View_layoutDirection - @see #View_longClickable - @see #View_minHeight - @see #View_minWidth - @see #View_nextFocusDown - @see #View_nextFocusForward - @see #View_nextFocusLeft - @see #View_nextFocusRight - @see #View_nextFocusUp - @see #View_onClick - @see #View_overScrollMode - @see #View_padding - @see #View_paddingBottom - @see #View_paddingEnd - @see #View_paddingLeft - @see #View_paddingRight - @see #View_paddingStart - @see #View_paddingTop - @see #View_requiresFadingEdge - @see #View_rotation - @see #View_rotationX - @see #View_rotationY - @see #View_saveEnabled - @see #View_scaleX - @see #View_scaleY - @see #View_scrollX - @see #View_scrollY - @see #View_scrollbarAlwaysDrawHorizontalTrack - @see #View_scrollbarAlwaysDrawVerticalTrack - @see #View_scrollbarDefaultDelayBeforeFade - @see #View_scrollbarFadeDuration - @see #View_scrollbarSize - @see #View_scrollbarStyle - @see #View_scrollbarThumbHorizontal - @see #View_scrollbarThumbVertical - @see #View_scrollbarTrackHorizontal - @see #View_scrollbarTrackVertical - @see #View_scrollbars - @see #View_soundEffectsEnabled - @see #View_tag - @see #View_textAlignment - @see #View_textDirection - @see #View_transformPivotX - @see #View_transformPivotY - @see #View_translationX - @see #View_translationY - @see #View_verticalScrollbarPosition - @see #View_visibility - */ - public static final int[] View = { - 0x01010063, 0x01010064, 0x01010065, 0x01010066, - 0x01010067, 0x01010068, 0x01010069, 0x0101007f, - 0x010100d0, 0x010100d1, 0x010100d2, 0x010100d3, - 0x010100d4, 0x010100d5, 0x010100d6, 0x010100d7, - 0x010100d8, 0x010100d9, 0x010100da, 0x010100db, - 0x010100dc, 0x010100dd, 0x010100de, 0x010100df, - 0x010100e0, 0x010100e1, 0x010100e2, 0x010100e3, - 0x010100e4, 0x010100e5, 0x010100e6, 0x010100e7, - 0x010100e8, 0x010100e9, 0x0101013f, 0x01010140, - 0x01010215, 0x01010216, 0x0101024e, 0x0101025e, - 0x0101026f, 0x01010273, 0x010102a8, 0x010102a9, - 0x010102aa, 0x010102c1, 0x010102c4, 0x0101031f, - 0x01010320, 0x01010321, 0x01010322, 0x01010323, - 0x01010324, 0x01010325, 0x01010326, 0x01010327, - 0x01010328, 0x01010334, 0x0101033c, 0x01010354, - 0x010103a5, 0x010103aa, 0x010103b0, 0x010103b1, - 0x010103b2, 0x010103b3, 0x010103b4, 0x010103c6, - 0x010103ee}; - /** -

- @attr description - Indicates to accessibility services whether the user should be notified when - this view changes. - - -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
none0 Accessibility services should not announce changes to this view.
polite1 Accessibility services should announce changes to this view.
assertive2 Accessibility services should interrupt ongoing speech to immediately - announce changes to this view.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#accessibilityLiveRegion}. - @attr name android:accessibilityLiveRegion - */ - public static final int View_accessibilityLiveRegion = 68; - /** -

- @attr description - alpha property of the view, as a value between 0 (completely transparent) and 1 - (completely opaque). - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#alpha}. - @attr name android:alpha - */ - public static final int View_alpha = 47; - /** -

- @attr description - A drawable to use as the background. This can be either a reference - to a full drawable resource (such as a PNG image, 9-patch, - XML state list description, etc), or a solid color such as "#ff000000" - (black). - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#background}. - @attr name android:background - */ - public static final int View_background = 12; - /** -

- @attr description - Defines whether this view reacts to click events. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#clickable}. - @attr name android:clickable - */ - public static final int View_clickable = 29; - /** -

- @attr description - Defines text that briefly describes content of the view. This property is used - primarily for accessibility. Since some views do not have textual - representation this attribute can be used for providing such. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#contentDescription}. - @attr name android:contentDescription - */ - public static final int View_contentDescription = 41; - /** -

- @attr description - Defines the quality of translucent drawing caches. This property is used - only when the drawing cache is enabled and translucent. The default value is auto. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
auto0 Lets the framework decide what quality level should be used - for the drawing cache.
low1 Low quality. When set to low quality, the drawing cache uses a lower color - depth, thus losing precision in rendering gradients, but uses less memory.
high2 High quality. When set to high quality, the drawing cache uses a higher - color depth but uses more memory.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#drawingCacheQuality}. - @attr name android:drawingCacheQuality - */ - public static final int View_drawingCacheQuality = 32; - /** -

- @attr description - When this attribute is set to true, the view gets its drawable state - (focused, pressed, etc.) from its direct parent rather than from itself. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#duplicateParentState}. - @attr name android:duplicateParentState - */ - public static final int View_duplicateParentState = 33; - /** -

- @attr description - Defines whether to fade out scrollbars when they are not in use. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fadeScrollbars}. - @attr name android:fadeScrollbars - */ - public static final int View_fadeScrollbars = 44; - /** -

- @attr description - This attribute is deprecated and will be ignored as of - API level 14 ({@link android.os.Build.VERSION_CODES#ICE_CREAM_SANDWICH}). - Using fading edges may introduce noticeable performance - degradations and should be used only when required by the application's - visual design. To request fading edges with API level 14 and above, - use the android:requiresFadingEdge attribute instead. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - -
ConstantValueDescription
none0x00000000 No edge is faded.
horizontal0x00001000 Fades horizontal edges only.
vertical0x00002000 Fades vertical edges only.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#fadingEdge}. - @attr name android:fadingEdge - */ - public static final int View_fadingEdge = 23; - /** -

- @attr description - Defines the length of the fading edges. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fadingEdgeLength}. - @attr name android:fadingEdgeLength - */ - public static final int View_fadingEdgeLength = 24; - /** -

- @attr description - Specifies whether to filter touches when the view's window is obscured by - another visible window. When set to true, the view will not receive touches - whenever a toast, dialog or other window appears above the view's window. - Refer to the {@link android.view.View} security documentation for more details. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#filterTouchesWhenObscured}. - @attr name android:filterTouchesWhenObscured - */ - public static final int View_filterTouchesWhenObscured = 46; - /** -

- @attr description - Boolean internal attribute to adjust view layout based on - system windows such as the status bar. - If true, adjusts the padding of this view to leave space for the system windows. - Will only take effect if this view is in a non-embedded activity. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#fitsSystemWindows}. - @attr name android:fitsSystemWindows - */ - public static final int View_fitsSystemWindows = 21; - /** -

- @attr description - Boolean that controls whether a view can take focus. By default the user can not - move focus to a view; by setting this attribute to true the view is - allowed to take focus. This value does not impact the behavior of - directly calling {@link android.view.View#requestFocus}, which will - always request focus regardless of this view. It only impacts where - focus navigation will try to move focus. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#focusable}. - @attr name android:focusable - */ - public static final int View_focusable = 18; - /** -

- @attr description - Boolean that controls whether a view can take focus while in touch mode. - If this is true for a view, that view can gain focus when clicked on, and can keep - focus if another view is clicked on that doesn't have this attribute set to true. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#focusableInTouchMode}. - @attr name android:focusableInTouchMode - */ - public static final int View_focusableInTouchMode = 19; - /** -

- @attr description - Boolean that controls whether a view should have haptic feedback - enabled for events such as long presses. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#hapticFeedbackEnabled}. - @attr name android:hapticFeedbackEnabled - */ - public static final int View_hapticFeedbackEnabled = 39; - /** -

- @attr description - Supply an identifier name for this view, to later retrieve it - with {@link android.view.View#findViewById View.findViewById()} or - {@link android.app.Activity#findViewById Activity.findViewById()}. - This must be a - resource reference; typically you set this using the - @+ syntax to create a new ID resources. - For example: android:id="@+id/my_id" which - allows you to later retrieve the view - with findViewById(R.id.my_id). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#id}. - @attr name android:id - */ - public static final int View_id = 8; - /** -

- @attr description - Controls how this View is important for accessibility which is if it fires - accessibility events and if it is reported to accessibility services that - query the screen. Note: While not recommended, an accessibility service may - decide to ignore this attribute and operate on all views in the view tree. - - -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
auto0 The system determines whether the view is important for accessibility - default - (recommended).
yes1 The view is important for accessibility.
no2 The view is not important for accessibility.
noHideDescendants4 The view is not important for accessibility, nor are any of its descendant - views.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#importantForAccessibility}. - @attr name android:importantForAccessibility - */ - public static final int View_importantForAccessibility = 61; - /** -

- @attr description - Set this if the view will serve as a scrolling container, meaing - that it can be resized to shrink its overall window so that there - will be space for an input method. If not set, the default - value will be true if "scrollbars" has the vertical scrollbar - set, else it will be false. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#isScrollContainer}. - @attr name android:isScrollContainer - */ - public static final int View_isScrollContainer = 38; - /** -

- @attr description - Controls whether the view's window should keep the screen on - while visible. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#keepScreenOn}. - @attr name android:keepScreenOn - */ - public static final int View_keepScreenOn = 37; - /** -

- @attr description - Specifies the id of a view for which this view serves as a label for - accessibility purposes. For example, a TextView before an EditText in - the UI usually specifies what infomation is contained in the EditText. - Hence, the TextView is a label for the EditText. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#labelFor}. - @attr name android:labelFor - */ - public static final int View_labelFor = 67; - /** -

- @attr description - Specifies the type of layer backing this view. The default value is none. - Refer to {@link android.view.View#setLayerType(int, android.graphics.Paint)} - for more information. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
none0 Don't use a layer.
software1 Use a software layer. Refer to - {@link android.view.View#setLayerType(int, android.graphics.Paint)} for - more information.
hardware2 Use a hardware layer. Refer to - {@link android.view.View#setLayerType(int, android.graphics.Paint)} for - more information.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#layerType}. - @attr name android:layerType - */ - public static final int View_layerType = 59; - /** -

- @attr description - Defines the direction of layout drawing. This typically is associated with writing - direction of the language script used. The possible values are "ltr" for Left-to-Right, - "rtl" for Right-to-Left, "locale" and "inherit" from parent view. If there is nothing - to inherit, "locale" is used. "locale" falls back to "en-US". "ltr" is the direction - used in "en-US". The default for this attribute is "inherit". - - -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
ltr0 Left-to-Right
rtl1 Right-to-Left
inherit2 Inherit from parent
locale3 Locale
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#layoutDirection}. - @attr name android:layoutDirection - */ - public static final int View_layoutDirection = 64; - /** -

- @attr description - Defines whether this view reacts to long click events. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#longClickable}. - @attr name android:longClickable - */ - public static final int View_longClickable = 30; - /** -

- @attr description - Defines the minimum height of the view. It is not guaranteed - the view will be able to achieve this minimum height (for example, - if its parent layout constrains it with less available height). - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#minHeight}. - @attr name android:minHeight - */ - public static final int View_minHeight = 35; - /** -

- @attr description - Defines the minimum width of the view. It is not guaranteed - the view will be able to achieve this minimum width (for example, - if its parent layout constrains it with less available width). - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#minWidth}. - @attr name android:minWidth - */ - public static final int View_minWidth = 34; - /** -

- @attr description - Defines the next view to give focus to when the next focus is - {@link android.view.View#FOCUS_DOWN} - - If the reference refers to a view that does not exist or is part - of a hierarchy that is invisible, a {@link java.lang.RuntimeException} - will result when the reference is accessed. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#nextFocusDown}. - @attr name android:nextFocusDown - */ - public static final int View_nextFocusDown = 28; - /** -

- @attr description - Defines the next view to give focus to when the next focus is - {@link android.view.View#FOCUS_FORWARD} - - If the reference refers to a view that does not exist or is part - of a hierarchy that is invisible, a {@link java.lang.RuntimeException} - will result when the reference is accessed. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#nextFocusForward}. - @attr name android:nextFocusForward - */ - public static final int View_nextFocusForward = 58; - /** -

- @attr description - Defines the next view to give focus to when the next focus is - {@link android.view.View#FOCUS_LEFT}. - - If the reference refers to a view that does not exist or is part - of a hierarchy that is invisible, a {@link java.lang.RuntimeException} - will result when the reference is accessed. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#nextFocusLeft}. - @attr name android:nextFocusLeft - */ - public static final int View_nextFocusLeft = 25; - /** -

- @attr description - Defines the next view to give focus to when the next focus is - {@link android.view.View#FOCUS_RIGHT} - - If the reference refers to a view that does not exist or is part - of a hierarchy that is invisible, a {@link java.lang.RuntimeException} - will result when the reference is accessed. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#nextFocusRight}. - @attr name android:nextFocusRight - */ - public static final int View_nextFocusRight = 26; - /** -

- @attr description - Defines the next view to give focus to when the next focus is - {@link android.view.View#FOCUS_UP} - - If the reference refers to a view that does not exist or is part - of a hierarchy that is invisible, a {@link java.lang.RuntimeException} - will result when the reference is accessed. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#nextFocusUp}. - @attr name android:nextFocusUp - */ - public static final int View_nextFocusUp = 27; - /** -

- @attr description - Name of the method in this View's context to invoke when the view is - clicked. This name must correspond to a public method that takes - exactly one parameter of type View. For instance, if you specify - android:onClick="sayHello", you must declare a - public void sayHello(View v) method of your context - (typically, your Activity). - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#onClick}. - @attr name android:onClick - */ - public static final int View_onClick = 40; - /** -

- @attr description - Defines over-scrolling behavior. This property is used only if the - View is scrollable. Over-scrolling is the ability for the user to - receive feedback when attempting to scroll beyond meaningful content. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
always0 Always show over-scroll effects, even if the content fits entirely - within the available space.
ifContentScrolls1 Only show over-scroll effects if the content is large - enough to meaningfully scroll.
never2 Never show over-scroll effects.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#overScrollMode}. - @attr name android:overScrollMode - */ - public static final int View_overScrollMode = 45; - /** -

- @attr description - Sets the padding, in pixels, of all four edges. Padding is defined as - space between the edges of the view and the view's content. A views size - will include it's padding. If a {@link android.R.attr#background} - is provided, the padding will initially be set to that (0 if the - drawable does not have padding). Explicitly setting a padding value - will override the corresponding padding found in the background. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#padding}. - @attr name android:padding - */ - public static final int View_padding = 13; - /** -

- @attr description - Sets the padding, in pixels, of the bottom edge; see {@link android.R.attr#padding}. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#paddingBottom}. - @attr name android:paddingBottom - */ - public static final int View_paddingBottom = 17; - /** -

- @attr description - Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#paddingEnd}. - @attr name android:paddingEnd - */ - public static final int View_paddingEnd = 66; - /** -

- @attr description - Sets the padding, in pixels, of the left edge; see {@link android.R.attr#padding}. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#paddingLeft}. - @attr name android:paddingLeft - */ - public static final int View_paddingLeft = 14; - /** -

- @attr description - Sets the padding, in pixels, of the right edge; see {@link android.R.attr#padding}. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#paddingRight}. - @attr name android:paddingRight - */ - public static final int View_paddingRight = 16; - /** -

- @attr description - Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#paddingStart}. - @attr name android:paddingStart - */ - public static final int View_paddingStart = 65; - /** -

- @attr description - Sets the padding, in pixels, of the top edge; see {@link android.R.attr#padding}. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#paddingTop}. - @attr name android:paddingTop - */ - public static final int View_paddingTop = 15; - /** -

- @attr description - Defines which edges should be faded on scrolling. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - -
ConstantValueDescription
none0x00000000 No edge is faded.
horizontal0x00001000 Fades horizontal edges only.
vertical0x00002000 Fades vertical edges only.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#requiresFadingEdge}. - @attr name android:requiresFadingEdge - */ - public static final int View_requiresFadingEdge = 60; - /** -

- @attr description - rotation of the view, in degrees. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#rotation}. - @attr name android:rotation - */ - public static final int View_rotation = 54; - /** -

- @attr description - rotation of the view around the x axis, in degrees. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#rotationX}. - @attr name android:rotationX - */ - public static final int View_rotationX = 55; - /** -

- @attr description - rotation of the view around the y axis, in degrees. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#rotationY}. - @attr name android:rotationY - */ - public static final int View_rotationY = 56; - /** -

- @attr description - If unset, no state will be saved for this view when it is being - frozen. The default is true, allowing the view to be saved - (however it also must have an ID assigned to it for its - state to be saved). Setting this to false only disables the - state for this view, not for its children which may still - be saved. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#saveEnabled}. - @attr name android:saveEnabled - */ - public static final int View_saveEnabled = 31; - /** -

- @attr description - scale of the view in the x direction. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scaleX}. - @attr name android:scaleX - */ - public static final int View_scaleX = 52; - /** -

- @attr description - scale of the view in the y direction. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scaleY}. - @attr name android:scaleY - */ - public static final int View_scaleY = 53; - /** -

- @attr description - The initial horizontal scroll offset, in pixels. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scrollX}. - @attr name android:scrollX - */ - public static final int View_scrollX = 10; - /** -

- @attr description - The initial vertical scroll offset, in pixels. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scrollY}. - @attr name android:scrollY - */ - public static final int View_scrollY = 11; - /** -

- @attr description - Defines whether the horizontal scrollbar track should always be drawn. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scrollbarAlwaysDrawHorizontalTrack}. - @attr name android:scrollbarAlwaysDrawHorizontalTrack - */ - public static final int View_scrollbarAlwaysDrawHorizontalTrack = 5; - /** -

- @attr description - Defines whether the vertical scrollbar track should always be drawn. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scrollbarAlwaysDrawVerticalTrack}. - @attr name android:scrollbarAlwaysDrawVerticalTrack - */ - public static final int View_scrollbarAlwaysDrawVerticalTrack = 6; - /** -

- @attr description - Defines the delay in milliseconds that a scrollbar waits before fade out. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scrollbarDefaultDelayBeforeFade}. - @attr name android:scrollbarDefaultDelayBeforeFade - */ - public static final int View_scrollbarDefaultDelayBeforeFade = 43; - /** -

- @attr description - Defines the delay in milliseconds that a scrollbar takes to fade out. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scrollbarFadeDuration}. - @attr name android:scrollbarFadeDuration - */ - public static final int View_scrollbarFadeDuration = 42; - /** -

- @attr description - Sets the width of vertical scrollbars and height of horizontal scrollbars. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scrollbarSize}. - @attr name android:scrollbarSize - */ - public static final int View_scrollbarSize = 0; - /** -

- @attr description - Controls the scrollbar style and position. The scrollbars can be overlaid or - inset. When inset, they add to the padding of the view. And the - scrollbars can be drawn inside the padding area or on the edge of - the view. For example, if a view has a background drawable and you - want to draw the scrollbars inside the padding specified by the - drawable, you can use insideOverlay or insideInset. If you want them - to appear at the edge of the view, ignoring the padding, then you can - use outsideOverlay or outsideInset. - - -

Must be one of the following constant values.

- - - - - - - - - -
ConstantValueDescription
insideOverlay0x0 Inside the padding and overlaid
insideInset0x01000000 Inside the padding and inset
outsideOverlay0x02000000 Edge of the view and overlaid
outsideInset0x03000000 Edge of the view and inset
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#scrollbarStyle}. - @attr name android:scrollbarStyle - */ - public static final int View_scrollbarStyle = 7; - /** -

- @attr description - Defines the horizontal scrollbar thumb drawable. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scrollbarThumbHorizontal}. - @attr name android:scrollbarThumbHorizontal - */ - public static final int View_scrollbarThumbHorizontal = 1; - /** -

- @attr description - Defines the vertical scrollbar thumb drawable. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scrollbarThumbVertical}. - @attr name android:scrollbarThumbVertical - */ - public static final int View_scrollbarThumbVertical = 2; - /** -

- @attr description - Defines the horizontal scrollbar track drawable. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scrollbarTrackHorizontal}. - @attr name android:scrollbarTrackHorizontal - */ - public static final int View_scrollbarTrackHorizontal = 3; - /** -

- @attr description - Defines the vertical scrollbar track drawable. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#scrollbarTrackVertical}. - @attr name android:scrollbarTrackVertical - */ - public static final int View_scrollbarTrackVertical = 4; - /** -

- @attr description - Defines which scrollbars should be displayed on scrolling or not. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - -
ConstantValueDescription
none0x00000000 No scrollbar is displayed.
horizontal0x00000100 Displays horizontal scrollbar only.
vertical0x00000200 Displays vertical scrollbar only.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#scrollbars}. - @attr name android:scrollbars - */ - public static final int View_scrollbars = 22; - /** -

- @attr description - Boolean that controls whether a view should have sound effects - enabled for events such as clicking and touching. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#soundEffectsEnabled}. - @attr name android:soundEffectsEnabled - */ - public static final int View_soundEffectsEnabled = 36; - /** -

- @attr description - Supply a tag for this view containing a String, to be retrieved - later with {@link android.view.View#getTag View.getTag()} or - searched for with {@link android.view.View#findViewWithTag - View.findViewWithTag()}. It is generally preferable to use - IDs (through the android:id attribute) instead of tags because - they are faster and allow for compile-time type checking. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#tag}. - @attr name android:tag - */ - public static final int View_tag = 9; - /** -

- @attr description - Defines the alignment of the text. A heuristic is used to determine the resolved - text alignment. - - -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - - - - - -
ConstantValueDescription
inherit0 Default
gravity1 Default for the root view. The gravity determines the alignment, ALIGN_NORMAL, - ALIGN_CENTER, or ALIGN_OPPOSITE, which are relative to each paragraph’s - text direction
textStart2 Align to the start of the paragraph, e.g. ALIGN_NORMAL.
textEnd3 Align to the end of the paragraph, e.g. ALIGN_OPPOSITE.
center4 Center the paragraph, e.g. ALIGN_CENTER.
viewStart5 Align to the start of the view, which is ALIGN_LEFT if the view’s resolved - layoutDirection is LTR, and ALIGN_RIGHT otherwise.
viewEnd6 Align to the end of the view, which is ALIGN_RIGHT if the view’s resolved - layoutDirection is LTR, and ALIGN_LEFT otherwise
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#textAlignment}. - @attr name android:textAlignment - */ - public static final int View_textAlignment = 63; - /** -

- @attr description - Defines the direction of the text. A heuristic is used to determine the resolved text - direction of paragraphs. - - -

May be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - - - - -
ConstantValueDescription
inherit0 Default
firstStrong1 Default for the root view. The first strong directional character determines the - paragraph direction. If there is no strong directional character, the paragraph - direction is the view’s resolved layout direction.
anyRtl2 The paragraph direction is RTL if it contains any strong RTL character, otherwise - it is LTR if it contains any strong LTR characters. If there are neither, the - paragraph direction is the view’s resolved layout direction.
ltr3 The paragraph direction is left to right.
rtl4 The paragraph direction is right to left.
locale5 The paragraph direction is coming from the system Locale.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#textDirection}. - @attr name android:textDirection - */ - public static final int View_textDirection = 62; - /** -

- @attr description - x location of the pivot point around which the view will rotate and scale. - This xml attribute sets the pivotX property of the View. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#transformPivotX}. - @attr name android:transformPivotX - */ - public static final int View_transformPivotX = 48; - /** -

- @attr description - y location of the pivot point around which the view will rotate and scale. - This xml attribute sets the pivotY property of the View. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#transformPivotY}. - @attr name android:transformPivotY - */ - public static final int View_transformPivotY = 49; - /** -

- @attr description - translation in x of the view. This value is added post-layout to the left - property of the view, which is set by its layout. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#translationX}. - @attr name android:translationX - */ - public static final int View_translationX = 50; - /** -

- @attr description - translation in y of the view. This value is added post-layout to the left - property of the view, which is set by its layout. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#translationY}. - @attr name android:translationY - */ - public static final int View_translationY = 51; - /** -

- @attr description - Determines which side the vertical scroll bar should be placed on. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
defaultPosition0 Place the scroll bar wherever the system default determines.
left1 Place the scroll bar on the left.
right2 Place the scroll bar on the right.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#verticalScrollbarPosition}. - @attr name android:verticalScrollbarPosition - */ - public static final int View_verticalScrollbarPosition = 57; - /** -

- @attr description - Controls the initial visibility of the view. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
visible0 Visible on screen; the default value.
invisible1 Not displayed, but taken into account during layout (space is left for it).
gone2 Completely hidden, as if the view had not been added.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#visibility}. - @attr name android:visibility - */ - public static final int View_visibility = 20; - /** - Attributes that can be used with a ViewAnimator. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #ViewAnimator_animateFirstView android:animateFirstView} Defines whether to animate the current View when the ViewAnimation - is first displayed.
{@link #ViewAnimator_inAnimation android:inAnimation} Identifier for the animation to use when a view is shown.
{@link #ViewAnimator_outAnimation android:outAnimation} Identifier for the animation to use when a view is hidden.
- @see #ViewAnimator_animateFirstView - @see #ViewAnimator_inAnimation - @see #ViewAnimator_outAnimation - */ - public static final int[] ViewAnimator = { - 0x01010177, 0x01010178, 0x010102d5}; - /** -

- @attr description - Defines whether to animate the current View when the ViewAnimation - is first displayed. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#animateFirstView}. - @attr name android:animateFirstView - */ - public static final int ViewAnimator_animateFirstView = 2; - /** -

- @attr description - Identifier for the animation to use when a view is shown. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#inAnimation}. - @attr name android:inAnimation - */ - public static final int ViewAnimator_inAnimation = 0; - /** -

- @attr description - Identifier for the animation to use when a view is hidden. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#outAnimation}. - @attr name android:outAnimation - */ - public static final int ViewAnimator_outAnimation = 1; - /** - Attributes that can be used with a ViewDrawableStates. -

Includes the following attributes:

- - - - - - - - - - - - - - -
AttributeDescription
{@link #ViewDrawableStates_state_accelerated android:state_accelerated} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - indicating that the Drawable is in a view that is hardware accelerated.
{@link #ViewDrawableStates_state_activated android:state_activated} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view or its parent has been "activated" meaning the user has currently - marked it as being of interest.
{@link #ViewDrawableStates_state_drag_can_accept android:state_drag_can_accept} State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} - indicating that the Drawable is in a view that is capable of accepting a drop of - the content currently being manipulated in a drag-and-drop operation.
{@link #ViewDrawableStates_state_drag_hovered android:state_drag_hovered} State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} - indicating that a drag operation (for which the Drawable's view is a valid recipient) - is currently positioned over the Drawable.
{@link #ViewDrawableStates_state_enabled android:state_enabled} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view is enabled.
{@link #ViewDrawableStates_state_focused android:state_focused} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view has input focus.
{@link #ViewDrawableStates_state_hovered android:state_hovered} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a pointer is hovering over the view.
{@link #ViewDrawableStates_state_pressed android:state_pressed} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when the user is pressing down in a view.
{@link #ViewDrawableStates_state_selected android:state_selected} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view (or one of its parents) is currently selected.
{@link #ViewDrawableStates_state_window_focused android:state_window_focused} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view's window has input focus.
- @see #ViewDrawableStates_state_accelerated - @see #ViewDrawableStates_state_activated - @see #ViewDrawableStates_state_drag_can_accept - @see #ViewDrawableStates_state_drag_hovered - @see #ViewDrawableStates_state_enabled - @see #ViewDrawableStates_state_focused - @see #ViewDrawableStates_state_hovered - @see #ViewDrawableStates_state_pressed - @see #ViewDrawableStates_state_selected - @see #ViewDrawableStates_state_window_focused - */ - public static final int[] ViewDrawableStates = { - 0x0101009c, 0x0101009d, 0x0101009e, 0x010100a1, - 0x010100a7, 0x010102fe, 0x0101031b, 0x01010367, - 0x01010368, 0x01010369}; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - indicating that the Drawable is in a view that is hardware accelerated. - This means that the device can at least render a full-screen scaled - bitmap with one layer of text and bitmaps composited on top of it - at 60fps. When this is set, the colorBackgroundCacheHint will be - ignored even if it specifies a solid color, since that optimization - is not needed. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_accelerated}. - @attr name android:state_accelerated - */ - public static final int ViewDrawableStates_state_accelerated = 6; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view or its parent has been "activated" meaning the user has currently - marked it as being of interest. This is an alternative representation of - state_checked for when the state should be propagated down the view hierarchy. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_activated}. - @attr name android:state_activated - */ - public static final int ViewDrawableStates_state_activated = 5; - /** -

- @attr description - State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} - indicating that the Drawable is in a view that is capable of accepting a drop of - the content currently being manipulated in a drag-and-drop operation. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_drag_can_accept}. - @attr name android:state_drag_can_accept - */ - public static final int ViewDrawableStates_state_drag_can_accept = 8; - /** -

- @attr description - State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} - indicating that a drag operation (for which the Drawable's view is a valid recipient) - is currently positioned over the Drawable. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_drag_hovered}. - @attr name android:state_drag_hovered - */ - public static final int ViewDrawableStates_state_drag_hovered = 9; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view is enabled. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_enabled}. - @attr name android:state_enabled - */ - public static final int ViewDrawableStates_state_enabled = 2; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view has input focus. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_focused}. - @attr name android:state_focused - */ - public static final int ViewDrawableStates_state_focused = 0; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a pointer is hovering over the view. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_hovered}. - @attr name android:state_hovered - */ - public static final int ViewDrawableStates_state_hovered = 7; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when the user is pressing down in a view. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_pressed}. - @attr name android:state_pressed - */ - public static final int ViewDrawableStates_state_pressed = 4; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view (or one of its parents) is currently selected. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_selected}. - @attr name android:state_selected - */ - public static final int ViewDrawableStates_state_selected = 3; - /** -

- @attr description - State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, - set when a view's window has input focus. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#state_window_focused}. - @attr name android:state_window_focused - */ - public static final int ViewDrawableStates_state_window_focused = 1; - /** - Attributes that can be used with a ViewFlipper. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #ViewFlipper_autoStart android:autoStart} When true, automatically start animating
{@link #ViewFlipper_flipInterval android:flipInterval}
- @see #ViewFlipper_autoStart - @see #ViewFlipper_flipInterval - */ - public static final int[] ViewFlipper = { - 0x01010179, 0x010102b5}; - /** -

- @attr description - When true, automatically start animating - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#autoStart}. - @attr name android:autoStart - */ - public static final int ViewFlipper_autoStart = 1; - /** -

This symbol is the offset where the {@link android.R.attr#flipInterval} - attribute's value can be found in the {@link #ViewFlipper} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name android:flipInterval - */ - public static final int ViewFlipper_flipInterval = 0; - /** - Attributes that can be used with a {@link android.view.ViewGroup} or any - of its subclasses. Also see {@link #ViewGroup_Layout} for - attributes that this class processes in its children. -

Includes the following attributes:

- - - - - - - - - - - - - - - -
AttributeDescription
{@link #ViewGroup_addStatesFromChildren android:addStatesFromChildren} Sets whether this ViewGroup's drawable states also include - its children's drawable states.
{@link #ViewGroup_alwaysDrawnWithCache android:alwaysDrawnWithCache} Defines whether the ViewGroup should always draw its children using their - drawing cache or not.
{@link #ViewGroup_animateLayoutChanges android:animateLayoutChanges} Defines whether changes in layout (caused by adding and removing items) should - cause a LayoutTransition to run.
{@link #ViewGroup_animationCache android:animationCache} Defines whether layout animations should create a drawing cache for their - children.
{@link #ViewGroup_clipChildren android:clipChildren} Defines whether a child is limited to draw inside of its bounds or not.
{@link #ViewGroup_clipToPadding android:clipToPadding} Defines whether the ViewGroup will clip its drawing surface so as to exclude - the padding area.
{@link #ViewGroup_descendantFocusability android:descendantFocusability} Defines the relationship between the ViewGroup and its descendants - when looking for a View to take focus.
{@link #ViewGroup_layoutAnimation android:layoutAnimation} Defines the layout animation to use the first time the ViewGroup is laid out.
{@link #ViewGroup_layoutMode android:layoutMode} Defines the layout mode of this ViewGroup.
{@link #ViewGroup_persistentDrawingCache android:persistentDrawingCache} Defines the persistence of the drawing cache.
{@link #ViewGroup_splitMotionEvents android:splitMotionEvents} Sets whether this ViewGroup should split MotionEvents - to separate child views during touch event dispatch.
- @see #ViewGroup_addStatesFromChildren - @see #ViewGroup_alwaysDrawnWithCache - @see #ViewGroup_animateLayoutChanges - @see #ViewGroup_animationCache - @see #ViewGroup_clipChildren - @see #ViewGroup_clipToPadding - @see #ViewGroup_descendantFocusability - @see #ViewGroup_layoutAnimation - @see #ViewGroup_layoutMode - @see #ViewGroup_persistentDrawingCache - @see #ViewGroup_splitMotionEvents - */ - public static final int[] ViewGroup = { - 0x010100ea, 0x010100eb, 0x010100ec, 0x010100ed, - 0x010100ee, 0x010100ef, 0x010100f0, 0x010100f1, - 0x010102ef, 0x010102f2, 0x010103da}; - /** -

- @attr description - Sets whether this ViewGroup's drawable states also include - its children's drawable states. This is used, for example, to - make a group appear to be focused when its child EditText or button - is focused. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#addStatesFromChildren}. - @attr name android:addStatesFromChildren - */ - public static final int ViewGroup_addStatesFromChildren = 6; - /** -

- @attr description - Defines whether the ViewGroup should always draw its children using their - drawing cache or not. The default value is true. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#alwaysDrawnWithCache}. - @attr name android:alwaysDrawnWithCache - */ - public static final int ViewGroup_alwaysDrawnWithCache = 5; - /** -

- @attr description - Defines whether changes in layout (caused by adding and removing items) should - cause a LayoutTransition to run. When this flag is set to true, a default - LayoutTransition object will be set on the ViewGroup container and default - animations will run when these layout changes occur. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#animateLayoutChanges}. - @attr name android:animateLayoutChanges - */ - public static final int ViewGroup_animateLayoutChanges = 9; - /** -

- @attr description - Defines whether layout animations should create a drawing cache for their - children. Enabling the animation cache consumes more memory and requires - a longer initialization but provides better performance. The animation - cache is enabled by default. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#animationCache}. - @attr name android:animationCache - */ - public static final int ViewGroup_animationCache = 3; - /** -

- @attr description - Defines whether a child is limited to draw inside of its bounds or not. - This is useful with animations that scale the size of the children to more - than 100% for instance. In such a case, this property should be set to false - to allow the children to draw outside of their bounds. The default value of - this property is true. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#clipChildren}. - @attr name android:clipChildren - */ - public static final int ViewGroup_clipChildren = 0; - /** -

- @attr description - Defines whether the ViewGroup will clip its drawing surface so as to exclude - the padding area. This property is set to true by default. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#clipToPadding}. - @attr name android:clipToPadding - */ - public static final int ViewGroup_clipToPadding = 1; - /** -

- @attr description - Defines the relationship between the ViewGroup and its descendants - when looking for a View to take focus. - - -

Must be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
beforeDescendants0 The ViewGroup will get focus before any of its descendants.
afterDescendants1 The ViewGroup will get focus only if none of its descendants want it.
blocksDescendants2 The ViewGroup will block its descendants from receiving focus.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#descendantFocusability}. - @attr name android:descendantFocusability - */ - public static final int ViewGroup_descendantFocusability = 7; - /** -

- @attr description - Defines the layout animation to use the first time the ViewGroup is laid out. - Layout animations can also be started manually after the first layout. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layoutAnimation}. - @attr name android:layoutAnimation - */ - public static final int ViewGroup_layoutAnimation = 2; - /** -

- @attr description - Defines the layout mode of this ViewGroup. - - -

Must be one of the following constant values.

- - - - - - - -
ConstantValueDescription
clipBounds0 Use the children's clip bounds when laying out this container.
opticalBounds1 Use the children's optical bounds when laying out this container.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#layoutMode}. - @attr name android:layoutMode - */ - public static final int ViewGroup_layoutMode = 10; - /** -

- @attr description - Defines the persistence of the drawing cache. The drawing cache might be - enabled by a ViewGroup for all its children in specific situations (for - instance during a scrolling.) This property lets you persist the cache - in memory after its initial usage. Persisting the cache consumes more - memory but may prevent frequent garbage collection is the cache is created - over and over again. By default the persistence is set to scrolling. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - -
ConstantValueDescription
none0x0 The drawing cache is not persisted after use.
animation0x1 The drawing cache is persisted after a layout animation.
scrolling0x2 The drawing cache is persisted after a scroll.
all0x3 The drawing cache is always persisted.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#persistentDrawingCache}. - @attr name android:persistentDrawingCache - */ - public static final int ViewGroup_persistentDrawingCache = 4; - /** -

- @attr description - Sets whether this ViewGroup should split MotionEvents - to separate child views during touch event dispatch. - If false (default), touch events will be dispatched to - the child view where the first pointer went down until - the last pointer goes up. - If true, touch events may be dispatched to multiple children. - MotionEvents for each pointer will be dispatched to the child - view where the initial ACTION_DOWN event happened. - See {@link android.view.ViewGroup#setMotionEventSplittingEnabled(boolean)} - for more information. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#splitMotionEvents}. - @attr name android:splitMotionEvents - */ - public static final int ViewGroup_splitMotionEvents = 8; - /** - This is the basic set of layout attributes that are common to all - layout managers. These attributes are specified with the rest of - a view's normal attributes (such as {@link android.R.attr#background}, - but will be parsed by the view's parent and ignored by the child. -

The values defined here correspond to the base layout attribute - class {@link android.view.ViewGroup.LayoutParams}. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #ViewGroup_Layout_layout_height android:layout_height} Specifies the basic height of the view.
{@link #ViewGroup_Layout_layout_width android:layout_width} Specifies the basic width of the view.
- @see #ViewGroup_Layout_layout_height - @see #ViewGroup_Layout_layout_width - */ - public static final int[] ViewGroup_Layout = { - 0x010100f4, 0x010100f5}; - /** -

- @attr description - Specifies the basic height of the view. This is a required attribute - for any view inside of a containing layout manager. Its value may - be a dimension (such as "12dip") for a constant height or one of - the special constants. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
fill_parent-1 The view should be as big as its parent (minus padding). - This constant is deprecated starting from API Level 8 and - is replaced by {@code match_parent}.
match_parent-1 The view should be as big as its parent (minus padding). - Introduced in API Level 8.
wrap_content-2 The view should be only big enough to enclose its content (plus padding).
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_height}. - @attr name android:layout_height - */ - public static final int ViewGroup_Layout_layout_height = 1; - /** -

- @attr description - Specifies the basic width of the view. This is a required attribute - for any view inside of a containing layout manager. Its value may - be a dimension (such as "12dip") for a constant width or one of - the special constants. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
fill_parent-1 The view should be as big as its parent (minus padding). - This constant is deprecated starting from API Level 8 and - is replaced by {@code match_parent}.
match_parent-1 The view should be as big as its parent (minus padding). - Introduced in API Level 8.
wrap_content-2 The view should be only big enough to enclose its content (plus padding).
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_width}. - @attr name android:layout_width - */ - public static final int ViewGroup_Layout_layout_width = 0; - /** - This is the basic set of layout attributes for layout managers that - wish to place margins around their child views. - These attributes are specified with the rest of - a view's normal attributes (such as {@link android.R.attr#background}, - but will be parsed by the view's parent and ignored by the child. -

The values defined here correspond to the base layout attribute - class {@link android.view.ViewGroup.MarginLayoutParams}. -

Includes the following attributes:

- - - - - - - - - - - - - -
AttributeDescription
{@link #ViewGroup_MarginLayout_layout_height android:layout_height} Specifies the basic height of the view.
{@link #ViewGroup_MarginLayout_layout_margin android:layout_margin} Specifies extra space on the left, top, right and bottom - sides of this view.
{@link #ViewGroup_MarginLayout_layout_marginBottom android:layout_marginBottom} Specifies extra space on the bottom side of this view.
{@link #ViewGroup_MarginLayout_layout_marginEnd android:layout_marginEnd} Specifies extra space on the end side of this view.
{@link #ViewGroup_MarginLayout_layout_marginLeft android:layout_marginLeft} Specifies extra space on the left side of this view.
{@link #ViewGroup_MarginLayout_layout_marginRight android:layout_marginRight} Specifies extra space on the right side of this view.
{@link #ViewGroup_MarginLayout_layout_marginStart android:layout_marginStart} Specifies extra space on the start side of this view.
{@link #ViewGroup_MarginLayout_layout_marginTop android:layout_marginTop} Specifies extra space on the top side of this view.
{@link #ViewGroup_MarginLayout_layout_width android:layout_width} Specifies the basic width of the view.
- @see #ViewGroup_MarginLayout_layout_height - @see #ViewGroup_MarginLayout_layout_margin - @see #ViewGroup_MarginLayout_layout_marginBottom - @see #ViewGroup_MarginLayout_layout_marginEnd - @see #ViewGroup_MarginLayout_layout_marginLeft - @see #ViewGroup_MarginLayout_layout_marginRight - @see #ViewGroup_MarginLayout_layout_marginStart - @see #ViewGroup_MarginLayout_layout_marginTop - @see #ViewGroup_MarginLayout_layout_width - */ - public static final int[] ViewGroup_MarginLayout = { - 0x010100f4, 0x010100f5, 0x010100f6, 0x010100f7, - 0x010100f8, 0x010100f9, 0x010100fa, 0x010103b5, - 0x010103b6}; - /** -

- @attr description - Specifies the basic height of the view. This is a required attribute - for any view inside of a containing layout manager. Its value may - be a dimension (such as "12dip") for a constant height or one of - the special constants. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
fill_parent-1 The view should be as big as its parent (minus padding). - This constant is deprecated starting from API Level 8 and - is replaced by {@code match_parent}.
match_parent-1 The view should be as big as its parent (minus padding). - Introduced in API Level 8.
wrap_content-2 The view should be only big enough to enclose its content (plus padding).
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_height}. - @attr name android:layout_height - */ - public static final int ViewGroup_MarginLayout_layout_height = 1; - /** -

- @attr description - Specifies extra space on the left, top, right and bottom - sides of this view. This space is outside this view's bounds. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_margin}. - @attr name android:layout_margin - */ - public static final int ViewGroup_MarginLayout_layout_margin = 2; - /** -

- @attr description - Specifies extra space on the bottom side of this view. - This space is outside this view's bounds. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_marginBottom}. - @attr name android:layout_marginBottom - */ - public static final int ViewGroup_MarginLayout_layout_marginBottom = 6; - /** -

- @attr description - Specifies extra space on the end side of this view. - This space is outside this view's bounds. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_marginEnd}. - @attr name android:layout_marginEnd - */ - public static final int ViewGroup_MarginLayout_layout_marginEnd = 8; - /** -

- @attr description - Specifies extra space on the left side of this view. - This space is outside this view's bounds. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_marginLeft}. - @attr name android:layout_marginLeft - */ - public static final int ViewGroup_MarginLayout_layout_marginLeft = 3; - /** -

- @attr description - Specifies extra space on the right side of this view. - This space is outside this view's bounds. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_marginRight}. - @attr name android:layout_marginRight - */ - public static final int ViewGroup_MarginLayout_layout_marginRight = 5; - /** -

- @attr description - Specifies extra space on the start side of this view. - This space is outside this view's bounds. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_marginStart}. - @attr name android:layout_marginStart - */ - public static final int ViewGroup_MarginLayout_layout_marginStart = 7; - /** -

- @attr description - Specifies extra space on the top side of this view. - This space is outside this view's bounds. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_marginTop}. - @attr name android:layout_marginTop - */ - public static final int ViewGroup_MarginLayout_layout_marginTop = 4; - /** -

- @attr description - Specifies the basic width of the view. This is a required attribute - for any view inside of a containing layout manager. Its value may - be a dimension (such as "12dip") for a constant width or one of - the special constants. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

May be one of the following constant values.

- - - - - - - - -
ConstantValueDescription
fill_parent-1 The view should be as big as its parent (minus padding). - This constant is deprecated starting from API Level 8 and - is replaced by {@code match_parent}.
match_parent-1 The view should be as big as its parent (minus padding). - Introduced in API Level 8.
wrap_content-2 The view should be only big enough to enclose its content (plus padding).
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout_width}. - @attr name android:layout_width - */ - public static final int ViewGroup_MarginLayout_layout_width = 0; - /** - A {@link android.view.ViewStub} lets you lazily include other XML layouts - inside your application at runtime. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #ViewStub_inflatedId android:inflatedId} Overrides the id of the inflated View with this value.
{@link #ViewStub_layout android:layout} Supply an identifier for the layout resource to inflate when the ViewStub - becomes visible or when forced to do so.
- @see #ViewStub_inflatedId - @see #ViewStub_layout - */ - public static final int[] ViewStub = { - 0x010100f2, 0x010100f3}; - /** -

- @attr description - Overrides the id of the inflated View with this value. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#inflatedId}. - @attr name android:inflatedId - */ - public static final int ViewStub_inflatedId = 1; - /** -

- @attr description - Supply an identifier for the layout resource to inflate when the ViewStub - becomes visible or when forced to do so. The layout resource must be a - valid reference to a layout. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#layout}. - @attr name android:layout - */ - public static final int ViewStub_layout = 0; - /** - * Attributes that can be used with a ViewSwitcher. - */ - public static final int[] ViewSwitcher = { - - }; - /** - Base attributes available to VolumePreference. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #VolumePreference_streamType android:streamType} Different audio stream types.
- @see #VolumePreference_streamType - */ - public static final int[] VolumePreference = { - 0x01010209}; - /** -

- @attr description - Different audio stream types. - - -

Must be one of the following constant values.

- - - - - - - - - - -
ConstantValueDescription
voice0
system1
ring2
music3
alarm4
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#streamType}. - @attr name android:streamType - */ - public static final int VolumePreference_streamType = 0; - /** - Use wallpaper as the root tag of the XML resource that - describes an - {@link android.service.wallpaper.WallpaperService}, which is - referenced from its - {@link android.service.wallpaper.WallpaperService#SERVICE_META_DATA} - meta-data entry. Described here are the attributes that can be - included in that tag. -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #Wallpaper_author android:author} Name of the author of this component, e.
{@link #Wallpaper_description android:description} Short description of the component's purpose or behavior.
{@link #Wallpaper_settingsActivity android:settingsActivity} Component name of an activity that allows the user to modify - the settings for this service.
{@link #Wallpaper_thumbnail android:thumbnail} Reference to a the wallpaper's thumbnail bitmap.
- @see #Wallpaper_author - @see #Wallpaper_description - @see #Wallpaper_settingsActivity - @see #Wallpaper_thumbnail - */ - public static final int[] Wallpaper = { - 0x01010020, 0x01010225, 0x010102a5, 0x010102b4}; - /** -

- @attr description - Name of the author of this component, e.g. Google. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#author}. - @attr name android:author - */ - public static final int Wallpaper_author = 3; - /** -

- @attr description - Short description of the component's purpose or behavior. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#description}. - @attr name android:description - */ - public static final int Wallpaper_description = 0; - /** -

- @attr description - Component name of an activity that allows the user to modify - the settings for this service. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#settingsActivity}. - @attr name android:settingsActivity - */ - public static final int Wallpaper_settingsActivity = 1; - /** -

- @attr description - Reference to a the wallpaper's thumbnail bitmap. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#thumbnail}. - @attr name android:thumbnail - */ - public static final int Wallpaper_thumbnail = 2; - /** - Use wallpaper-preview as the root tag of the XML resource that - describes a wallpaper preview. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #WallpaperPreviewInfo_staticWallpaperPreview android:staticWallpaperPreview} A resource id of a static drawable.
- @see #WallpaperPreviewInfo_staticWallpaperPreview - */ - public static final int[] WallpaperPreviewInfo = { - 0x01010331}; - /** -

- @attr description - A resource id of a static drawable. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#staticWallpaperPreview}. - @attr name android:staticWallpaperPreview - */ - public static final int WallpaperPreviewInfo_staticWallpaperPreview = 0; - /** - @hide -

Includes the following attributes:

- - - - - - - - -
AttributeDescription
{@link #WeightedLinearLayout_majorWeightMax android:majorWeightMax}
{@link #WeightedLinearLayout_majorWeightMin android:majorWeightMin}
{@link #WeightedLinearLayout_minorWeightMax android:minorWeightMax}
{@link #WeightedLinearLayout_minorWeightMin android:minorWeightMin}
- @see #WeightedLinearLayout_majorWeightMax - @see #WeightedLinearLayout_majorWeightMin - @see #WeightedLinearLayout_minorWeightMax - @see #WeightedLinearLayout_minorWeightMin - */ - public static final int[] WeightedLinearLayout = { - 0x0101043e, 0x0101043f, 0x01010440, 0x01010441}; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#majorWeightMax} - attribute's value can be found in the {@link #WeightedLinearLayout} array. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name com.android.internal:majorWeightMax - */ - public static final int WeightedLinearLayout_majorWeightMax = 2; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#majorWeightMin} - attribute's value can be found in the {@link #WeightedLinearLayout} array. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name com.android.internal:majorWeightMin - */ - public static final int WeightedLinearLayout_majorWeightMin = 0; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#minorWeightMax} - attribute's value can be found in the {@link #WeightedLinearLayout} array. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name com.android.internal:minorWeightMax - */ - public static final int WeightedLinearLayout_minorWeightMax = 3; - /** -

This symbol is the offset where the {@link com.android.internal.R.attr#minorWeightMin} - attribute's value can be found in the {@link #WeightedLinearLayout} array. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. - @attr name com.android.internal:minorWeightMin - */ - public static final int WeightedLinearLayout_minorWeightMin = 1; - /** - The set of attributes that describe a Windows's theme. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #Window_backgroundDimAmount android:backgroundDimAmount} Default background dim amount when a menu, dialog, or something similar pops up.
{@link #Window_backgroundDimEnabled android:backgroundDimEnabled} Control whether dimming behind the window is enabled.
{@link #Window_textColor android:textColor} Color of text (usually same as colorForeground).
{@link #Window_windowActionBar android:windowActionBar} Flag indicating whether this window should have an Action Bar - in place of the usual title bar.
{@link #Window_windowActionBarOverlay android:windowActionBarOverlay} Flag indicating whether this window's Action Bar should overlay - application content.
{@link #Window_windowActionModeOverlay android:windowActionModeOverlay} Flag indicating whether action modes should overlay window content - when there is not reserved space for their UI (such as an Action Bar).
{@link #Window_windowAnimationStyle android:windowAnimationStyle} Reference to a style resource holding - the set of window animations to use, which can be - any of the attributes defined by - {@link android.R.styleable#WindowAnimation}.
{@link #Window_windowBackground android:windowBackground} Drawable to use as the overall window background.
{@link #Window_windowCloseOnTouchOutside android:windowCloseOnTouchOutside} Control whether a container should automatically close itself if - the user touches outside of it.
{@link #Window_windowContentOverlay android:windowContentOverlay} This Drawable is overlaid over the foreground of the Window's content area, usually - to place a shadow below the title.
{@link #Window_windowDisablePreview android:windowDisablePreview} Flag allowing you to disable the preview animation for a window.
{@link #Window_windowEnableSplitTouch android:windowEnableSplitTouch} Flag indicating that this window should allow touches to be split - across other windows that also support split touch.
{@link #Window_windowFixedHeightMajor android:windowFixedHeightMajor} A fixed height for the window along the major axis of the screen, - that is, when in portrait.
{@link #Window_windowFixedHeightMinor android:windowFixedHeightMinor} A fixed height for the window along the minor axis of the screen, - that is, when in landscape.
{@link #Window_windowFixedWidthMajor android:windowFixedWidthMajor} A fixed width for the window along the major axis of the screen, - that is, when in landscape.
{@link #Window_windowFixedWidthMinor android:windowFixedWidthMinor} A fixed width for the window along the minor axis of the screen, - that is, when in portrait.
{@link #Window_windowFrame android:windowFrame} Drawable to use as a frame around the window.
{@link #Window_windowFullscreen android:windowFullscreen} Flag indicating whether this window should fill the entire screen.
{@link #Window_windowIsFloating android:windowIsFloating} Flag indicating whether this is a floating window.
{@link #Window_windowIsTranslucent android:windowIsTranslucent} Flag indicating whether this is a translucent window.
{@link #Window_windowMinWidthMajor android:windowMinWidthMajor} The minimum width the window is allowed to be, along the major - axis of the screen.
{@link #Window_windowMinWidthMinor android:windowMinWidthMinor} The minimum width the window is allowed to be, along the minor - axis of the screen.
{@link #Window_windowNoDisplay android:windowNoDisplay} Flag indicating that this window should not be displayed at all.
{@link #Window_windowNoTitle android:windowNoTitle} Flag indicating whether there should be no title on this window.
{@link #Window_windowOverscan android:windowOverscan} Flag indicating whether this window should extend into overscan region.
{@link #Window_windowShowWallpaper android:windowShowWallpaper} Flag indicating that this window's background should be the - user's current wallpaper.
{@link #Window_windowSoftInputMode android:windowSoftInputMode} Defines the default soft input state that this window would - like when it is displayed.
{@link #Window_windowSplitActionBar android:windowSplitActionBar} Flag indicating that the action bar should be split to provide more - room for elements.
{@link #Window_windowTranslucentNavigation android:windowTranslucentNavigation} Flag indicating whether this window requests a translucent navigation bar.
{@link #Window_windowTranslucentStatus android:windowTranslucentStatus} Flag indicating whether this window requests a translucent status bar.
- @see #Window_backgroundDimAmount - @see #Window_backgroundDimEnabled - @see #Window_textColor - @see #Window_windowActionBar - @see #Window_windowActionBarOverlay - @see #Window_windowActionModeOverlay - @see #Window_windowAnimationStyle - @see #Window_windowBackground - @see #Window_windowCloseOnTouchOutside - @see #Window_windowContentOverlay - @see #Window_windowDisablePreview - @see #Window_windowEnableSplitTouch - @see #Window_windowFixedHeightMajor - @see #Window_windowFixedHeightMinor - @see #Window_windowFixedWidthMajor - @see #Window_windowFixedWidthMinor - @see #Window_windowFrame - @see #Window_windowFullscreen - @see #Window_windowIsFloating - @see #Window_windowIsTranslucent - @see #Window_windowMinWidthMajor - @see #Window_windowMinWidthMinor - @see #Window_windowNoDisplay - @see #Window_windowNoTitle - @see #Window_windowOverscan - @see #Window_windowShowWallpaper - @see #Window_windowSoftInputMode - @see #Window_windowSplitActionBar - @see #Window_windowTranslucentNavigation - @see #Window_windowTranslucentStatus - */ - public static final int[] Window = { - 0x01010032, 0x01010054, 0x01010055, 0x01010056, - 0x01010057, 0x01010058, 0x01010059, 0x01010098, - 0x010100ae, 0x0101020d, 0x0101021e, 0x0101021f, - 0x01010222, 0x0101022b, 0x01010292, 0x010102cd, - 0x010102dd, 0x010102e4, 0x01010317, 0x01010356, - 0x01010357, 0x0101035b, 0x010103cf, 0x010103ef, - 0x010103f0, 0x010103fa, 0x01010424, 0x01010425, - 0x01010426, 0x01010427}; - /** -

- @attr description - Default background dim amount when a menu, dialog, or something similar pops up. - - -

Must be a floating point value, such as "1.2". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#backgroundDimAmount}. - @attr name android:backgroundDimAmount - */ - public static final int Window_backgroundDimAmount = 0; - /** -

- @attr description - Control whether dimming behind the window is enabled. The default - theme does not set this value, meaning it is based on whether the - window is floating. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#backgroundDimEnabled}. - @attr name android:backgroundDimEnabled - */ - public static final int Window_backgroundDimEnabled = 11; - /** -

- @attr description - Color of text (usually same as colorForeground). - - -

May be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", - "#rrggbb", or "#aarrggbb". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#textColor}. - @attr name android:textColor - */ - public static final int Window_textColor = 7; - /** -

- @attr description - Flag indicating whether this window should have an Action Bar - in place of the usual title bar. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowActionBar}. - @attr name android:windowActionBar - */ - public static final int Window_windowActionBar = 15; - /** -

- @attr description - Flag indicating whether this window's Action Bar should overlay - application content. Does nothing if the window would not - have an Action Bar. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowActionBarOverlay}. - @attr name android:windowActionBarOverlay - */ - public static final int Window_windowActionBarOverlay = 17; - /** -

- @attr description - Flag indicating whether action modes should overlay window content - when there is not reserved space for their UI (such as an Action Bar). - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowActionModeOverlay}. - @attr name android:windowActionModeOverlay - */ - public static final int Window_windowActionModeOverlay = 16; - /** -

- @attr description - Reference to a style resource holding - the set of window animations to use, which can be - any of the attributes defined by - {@link android.R.styleable#WindowAnimation}. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowAnimationStyle}. - @attr name android:windowAnimationStyle - */ - public static final int Window_windowAnimationStyle = 8; - /** -

- @attr description - Drawable to use as the overall window background. As of - {@link android.os.Build.VERSION_CODES#HONEYCOMB}, this may - be a selector that uses state_accelerated to pick a non-solid - color when running on devices that can draw such a bitmap - with complex compositing on top at 60fps. - -

There are a few special considerations to use when setting this - drawable: -

    -
  • This information will be used to infer the pixel format - for your window's surface. If the drawable has any - non-opaque pixels, your window will be translucent - (32 bpp). -
  • If you want to draw the entire background - yourself, you should set this drawable to some solid - color that closely matches that background (so the - system's preview of your window will match), and - then in code manually set your window's background to - null so it will not be drawn. -
- - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowBackground}. - @attr name android:windowBackground - */ - public static final int Window_windowBackground = 1; - /** -

- @attr description - Control whether a container should automatically close itself if - the user touches outside of it. This only applies to activities - and dialogs. - -

Note: this attribute will only be respected for applications - that are targeting {@link android.os.Build.VERSION_CODES#HONEYCOMB} - or later. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowCloseOnTouchOutside}. - @attr name android:windowCloseOnTouchOutside - */ - public static final int Window_windowCloseOnTouchOutside = 21; - /** -

- @attr description - This Drawable is overlaid over the foreground of the Window's content area, usually - to place a shadow below the title. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowContentOverlay}. - @attr name android:windowContentOverlay - */ - public static final int Window_windowContentOverlay = 6; - /** -

- @attr description - Flag allowing you to disable the preview animation for a window. - The default value is false; if set to true, the system can never - use the window's theme to show a preview of it before your - actual instance is shown to the user. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowDisablePreview}. - @attr name android:windowDisablePreview - */ - public static final int Window_windowDisablePreview = 12; - /** -

- @attr description - Flag indicating that this window should allow touches to be split - across other windows that also support split touch. - The default value is true for applications with a targetSdkVersion - of Honeycomb or newer; false otherwise. - When this flag is false, the first pointer that goes down determines - the window to which all subsequent touches go until all pointers go up. - When this flag is true, each pointer (not necessarily the first) that - goes down determines the window to which all subsequent touches of that - pointer will go until that pointers go up thereby enabling touches - with multiple pointers to be split across multiple windows. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowEnableSplitTouch}. - @attr name android:windowEnableSplitTouch - */ - public static final int Window_windowEnableSplitTouch = 18; - /** -

- @attr description - A fixed height for the window along the major axis of the screen, - that is, when in portrait. Can be either an absolute dimension - or a fraction of the screen size in that dimension. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:windowFixedHeightMajor - */ - public static final int Window_windowFixedHeightMajor = 29; - /** -

- @attr description - A fixed height for the window along the minor axis of the screen, - that is, when in landscape. Can be either an absolute dimension - or a fraction of the screen size in that dimension. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:windowFixedHeightMinor - */ - public static final int Window_windowFixedHeightMinor = 27; - /** -

- @attr description - A fixed width for the window along the major axis of the screen, - that is, when in landscape. Can be either an absolute dimension - or a fraction of the screen size in that dimension. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:windowFixedWidthMajor - */ - public static final int Window_windowFixedWidthMajor = 26; - /** -

- @attr description - A fixed width for the window along the minor axis of the screen, - that is, when in portrait. Can be either an absolute dimension - or a fraction of the screen size in that dimension. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:windowFixedWidthMinor - */ - public static final int Window_windowFixedWidthMinor = 28; - /** -

- @attr description - Drawable to use as a frame around the window. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowFrame}. - @attr name android:windowFrame - */ - public static final int Window_windowFrame = 2; - /** -

- @attr description - Flag indicating whether this window should fill the entire screen. Corresponds - to {@link android.view.WindowManager.LayoutParams#FLAG_FULLSCREEN}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowFullscreen}. - @attr name android:windowFullscreen - */ - public static final int Window_windowFullscreen = 9; - /** -

- @attr description - Flag indicating whether this is a floating window. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowIsFloating}. - @attr name android:windowIsFloating - */ - public static final int Window_windowIsFloating = 4; - /** -

- @attr description - Flag indicating whether this is a translucent window. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowIsTranslucent}. - @attr name android:windowIsTranslucent - */ - public static final int Window_windowIsTranslucent = 5; - /** -

- @attr description - The minimum width the window is allowed to be, along the major - axis of the screen. That is, when in landscape. Can be either - an absolute dimension or a fraction of the screen size in that - dimension. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowMinWidthMajor}. - @attr name android:windowMinWidthMajor - */ - public static final int Window_windowMinWidthMajor = 19; - /** -

- @attr description - The minimum width the window is allowed to be, along the minor - axis of the screen. That is, when in portrait. Can be either - an absolute dimension or a fraction of the screen size in that - dimension. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". - Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), - in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". - The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to - some parent container. -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowMinWidthMinor}. - @attr name android:windowMinWidthMinor - */ - public static final int Window_windowMinWidthMinor = 20; - /** -

- @attr description - Flag indicating that this window should not be displayed at all. - The default value is false; if set to true, and this window is - the main window of an Activity, then it will never actually - be added to the window manager. This means that your activity - must immediately quit without waiting for user interaction, - because there will be no such interaction coming. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowNoDisplay}. - @attr name android:windowNoDisplay - */ - public static final int Window_windowNoDisplay = 10; - /** -

- @attr description - Flag indicating whether there should be no title on this window. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowNoTitle}. - @attr name android:windowNoTitle - */ - public static final int Window_windowNoTitle = 3; - /** -

- @attr description - Flag indicating whether this window should extend into overscan region. Corresponds - to {@link android.view.WindowManager.LayoutParams#FLAG_LAYOUT_IN_OVERSCAN}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowOverscan}. - @attr name android:windowOverscan - */ - public static final int Window_windowOverscan = 22; - /** -

- @attr description - Flag indicating that this window's background should be the - user's current wallpaper. Corresponds - to {@link android.view.WindowManager.LayoutParams#FLAG_SHOW_WALLPAPER}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowShowWallpaper}. - @attr name android:windowShowWallpaper - */ - public static final int Window_windowShowWallpaper = 14; - /** -

- @attr description - Defines the default soft input state that this window would - like when it is displayed. Corresponds - to {@link android.view.WindowManager.LayoutParams#softInputMode}. - - -

Must be one or more (separated by '|') of the following constant values.

- - - - - - - - - - - - - - - -
ConstantValueDescription
stateUnspecified0 Not specified, use what the system thinks is best. This - is the default.
stateUnchanged1 Leave the soft input window as-is, in whatever state it - last was.
stateHidden2 Make the soft input area hidden when normally appropriate - (when the user is navigating forward to your window).
stateAlwaysHidden3 Always make the soft input area hidden when this window - has input focus.
stateVisible4 Make the soft input area visible when normally appropriate - (when the user is navigating forward to your window).
stateAlwaysVisible5 Always make the soft input area visible when this window - has input focus.
adjustUnspecified0x00 The window resize/pan adjustment has not been specified, - the system will automatically select between resize and pan - modes, depending - on whether the content of the window has any layout views - that can scroll their contents. If there is such a view, - then the window will be resized, with the assumption being - that the resizeable area can be reduced to make room for - the input UI.
adjustResize0x10 Always resize the window: the content area of the window is - reduced to make room for the soft input area.
adjustPan0x20 Don't resize the window to make room for the soft input area; - instead pan the contents of the window as focus moves inside - of it so that the user can see what they are typing. This is - generally less desireable than panning because the user may - need to close the input area to get at and interact with - parts of the window.
adjustNothing0x30 Don't resize or pan the window to make room for the - soft input area; the window is never adjusted for it.
-

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowSoftInputMode}. - @attr name android:windowSoftInputMode - */ - public static final int Window_windowSoftInputMode = 13; - /** -

- @attr description - Flag indicating that the action bar should be split to provide more - room for elements. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This is a private symbol. - @attr name com.android.internal:windowSplitActionBar - */ - public static final int Window_windowSplitActionBar = 25; - /** -

- @attr description - Flag indicating whether this window requests a translucent navigation bar. Corresponds - to {@link android.view.WindowManager.LayoutParams#FLAG_TRANSLUCENT_NAVIGATION}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowTranslucentNavigation}. - @attr name android:windowTranslucentNavigation - */ - public static final int Window_windowTranslucentNavigation = 24; - /** -

- @attr description - Flag indicating whether this window requests a translucent status bar. Corresponds - to {@link android.view.WindowManager.LayoutParams#FLAG_TRANSLUCENT_STATUS}. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form - "@[package:]type:name") or - theme attribute (in the form - "?[package:][type:]name") - containing a value of this type. -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowTranslucentStatus}. - @attr name android:windowTranslucentStatus - */ - public static final int Window_windowTranslucentStatus = 23; - /** - Window animation class attributes. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #WindowAnimation_activityCloseEnterAnimation android:activityCloseEnterAnimation} When closing the current activity, this is the animation that is - run on the next activity (which is entering the screen).
{@link #WindowAnimation_activityCloseExitAnimation android:activityCloseExitAnimation} When closing the current activity, this is the animation that is - run on the current activity (which is exiting the screen).
{@link #WindowAnimation_activityOpenEnterAnimation android:activityOpenEnterAnimation} When opening a new activity, this is the animation that is - run on the next activity (which is entering the screen).
{@link #WindowAnimation_activityOpenExitAnimation android:activityOpenExitAnimation} When opening a new activity, this is the animation that is - run on the previous activity (which is exiting the screen).
{@link #WindowAnimation_taskCloseEnterAnimation android:taskCloseEnterAnimation} When closing the last activity of a task, this is the animation that is - run on the activity of the next task (which is entering the screen).
{@link #WindowAnimation_taskCloseExitAnimation android:taskCloseExitAnimation} When opening an activity in a new task, this is the animation that is - run on the activity of the old task (which is exiting the screen).
{@link #WindowAnimation_taskOpenEnterAnimation android:taskOpenEnterAnimation} When opening an activity in a new task, this is the animation that is - run on the activity of the new task (which is entering the screen).
{@link #WindowAnimation_taskOpenExitAnimation android:taskOpenExitAnimation} When opening an activity in a new task, this is the animation that is - run on the activity of the old task (which is exiting the screen).
{@link #WindowAnimation_taskToBackEnterAnimation android:taskToBackEnterAnimation} When sending the current task to the background, this is the - animation that is run on the top activity of the task behind - it (which is entering the screen).
{@link #WindowAnimation_taskToBackExitAnimation android:taskToBackExitAnimation} When sending the current task to the background, this is the - animation that is run on the top activity of the current task - (which is exiting the screen).
{@link #WindowAnimation_taskToFrontEnterAnimation android:taskToFrontEnterAnimation} When bringing an existing task to the foreground, this is the - animation that is run on the top activity of the task being brought - to the foreground (which is entering the screen).
{@link #WindowAnimation_taskToFrontExitAnimation android:taskToFrontExitAnimation} When bringing an existing task to the foreground, this is the - animation that is run on the current foreground activity - (which is exiting the screen).
{@link #WindowAnimation_wallpaperCloseEnterAnimation android:wallpaperCloseEnterAnimation} When opening a new activity that hides the wallpaper, while - currently showing the wallpaper, this is the animation that - is run on the new activity (which is entering the screen).
{@link #WindowAnimation_wallpaperCloseExitAnimation android:wallpaperCloseExitAnimation} When opening a new activity that hides the wallpaper, while - currently showing the wallpaper, this is the animation that - is run on the old wallpaper activity (which is exiting the screen).
{@link #WindowAnimation_wallpaperIntraCloseEnterAnimation android:wallpaperIntraCloseEnterAnimation} When closing a foreround activity that is on top of the wallpaper - when the previous activity is also on top of the wallpaper, - this is the animation that is run on the previous activity - (which is entering the screen).
{@link #WindowAnimation_wallpaperIntraCloseExitAnimation android:wallpaperIntraCloseExitAnimation} When closing a foreround activity that is on top of the wallpaper - when the previous activity is also on top of the wallpaper, - this is the animation that is run on the current activity - (which is exiting the screen).
{@link #WindowAnimation_wallpaperIntraOpenEnterAnimation android:wallpaperIntraOpenEnterAnimation} When opening a new activity that is on top of the wallpaper - when the current activity is also on top of the wallpaper, - this is the animation that is run on the new activity - (which is entering the screen).
{@link #WindowAnimation_wallpaperIntraOpenExitAnimation android:wallpaperIntraOpenExitAnimation} When opening a new activity that is on top of the wallpaper - when the current activity is also on top of the wallpaper, - this is the animation that is run on the current activity - (which is exiting the screen).
{@link #WindowAnimation_wallpaperOpenEnterAnimation android:wallpaperOpenEnterAnimation} When opening a new activity that shows the wallpaper, while - currently not showing the wallpaper, this is the animation that - is run on the new wallpaper activity (which is entering the screen).
{@link #WindowAnimation_wallpaperOpenExitAnimation android:wallpaperOpenExitAnimation} When opening a new activity that shows the wallpaper, while - currently not showing the wallpaper, this is the animation that - is run on the current activity (which is exiting the screen).
{@link #WindowAnimation_windowEnterAnimation android:windowEnterAnimation} The animation used when a window is being added.
{@link #WindowAnimation_windowExitAnimation android:windowExitAnimation} The animation used when a window is being removed.
{@link #WindowAnimation_windowHideAnimation android:windowHideAnimation} The animation used when a window is going from VISIBLE to INVISIBLE.
{@link #WindowAnimation_windowShowAnimation android:windowShowAnimation} The animation used when a window is going from INVISIBLE to VISIBLE.
- @see #WindowAnimation_activityCloseEnterAnimation - @see #WindowAnimation_activityCloseExitAnimation - @see #WindowAnimation_activityOpenEnterAnimation - @see #WindowAnimation_activityOpenExitAnimation - @see #WindowAnimation_taskCloseEnterAnimation - @see #WindowAnimation_taskCloseExitAnimation - @see #WindowAnimation_taskOpenEnterAnimation - @see #WindowAnimation_taskOpenExitAnimation - @see #WindowAnimation_taskToBackEnterAnimation - @see #WindowAnimation_taskToBackExitAnimation - @see #WindowAnimation_taskToFrontEnterAnimation - @see #WindowAnimation_taskToFrontExitAnimation - @see #WindowAnimation_wallpaperCloseEnterAnimation - @see #WindowAnimation_wallpaperCloseExitAnimation - @see #WindowAnimation_wallpaperIntraCloseEnterAnimation - @see #WindowAnimation_wallpaperIntraCloseExitAnimation - @see #WindowAnimation_wallpaperIntraOpenEnterAnimation - @see #WindowAnimation_wallpaperIntraOpenExitAnimation - @see #WindowAnimation_wallpaperOpenEnterAnimation - @see #WindowAnimation_wallpaperOpenExitAnimation - @see #WindowAnimation_windowEnterAnimation - @see #WindowAnimation_windowExitAnimation - @see #WindowAnimation_windowHideAnimation - @see #WindowAnimation_windowShowAnimation - */ - public static final int[] WindowAnimation = { - 0x010100b4, 0x010100b5, 0x010100b6, 0x010100b7, - 0x010100b8, 0x010100b9, 0x010100ba, 0x010100bb, - 0x010100bc, 0x010100bd, 0x010100be, 0x010100bf, - 0x010100c0, 0x010100c1, 0x010100c2, 0x010100c3, - 0x01010293, 0x01010294, 0x01010295, 0x01010296, - 0x01010297, 0x01010298, 0x01010299, 0x0101029a}; - /** -

- @attr description - When closing the current activity, this is the animation that is - run on the next activity (which is entering the screen). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#activityCloseEnterAnimation}. - @attr name android:activityCloseEnterAnimation - */ - public static final int WindowAnimation_activityCloseEnterAnimation = 6; - /** -

- @attr description - When closing the current activity, this is the animation that is - run on the current activity (which is exiting the screen). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#activityCloseExitAnimation}. - @attr name android:activityCloseExitAnimation - */ - public static final int WindowAnimation_activityCloseExitAnimation = 7; - /** -

- @attr description - When opening a new activity, this is the animation that is - run on the next activity (which is entering the screen). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#activityOpenEnterAnimation}. - @attr name android:activityOpenEnterAnimation - */ - public static final int WindowAnimation_activityOpenEnterAnimation = 4; - /** -

- @attr description - When opening a new activity, this is the animation that is - run on the previous activity (which is exiting the screen). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#activityOpenExitAnimation}. - @attr name android:activityOpenExitAnimation - */ - public static final int WindowAnimation_activityOpenExitAnimation = 5; - /** -

- @attr description - When closing the last activity of a task, this is the animation that is - run on the activity of the next task (which is entering the screen). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#taskCloseEnterAnimation}. - @attr name android:taskCloseEnterAnimation - */ - public static final int WindowAnimation_taskCloseEnterAnimation = 10; - /** -

- @attr description - When opening an activity in a new task, this is the animation that is - run on the activity of the old task (which is exiting the screen). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#taskCloseExitAnimation}. - @attr name android:taskCloseExitAnimation - */ - public static final int WindowAnimation_taskCloseExitAnimation = 11; - /** -

- @attr description - When opening an activity in a new task, this is the animation that is - run on the activity of the new task (which is entering the screen). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#taskOpenEnterAnimation}. - @attr name android:taskOpenEnterAnimation - */ - public static final int WindowAnimation_taskOpenEnterAnimation = 8; - /** -

- @attr description - When opening an activity in a new task, this is the animation that is - run on the activity of the old task (which is exiting the screen). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#taskOpenExitAnimation}. - @attr name android:taskOpenExitAnimation - */ - public static final int WindowAnimation_taskOpenExitAnimation = 9; - /** -

- @attr description - When sending the current task to the background, this is the - animation that is run on the top activity of the task behind - it (which is entering the screen). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#taskToBackEnterAnimation}. - @attr name android:taskToBackEnterAnimation - */ - public static final int WindowAnimation_taskToBackEnterAnimation = 14; - /** -

- @attr description - When sending the current task to the background, this is the - animation that is run on the top activity of the current task - (which is exiting the screen). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#taskToBackExitAnimation}. - @attr name android:taskToBackExitAnimation - */ - public static final int WindowAnimation_taskToBackExitAnimation = 15; - /** -

- @attr description - When bringing an existing task to the foreground, this is the - animation that is run on the top activity of the task being brought - to the foreground (which is entering the screen). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#taskToFrontEnterAnimation}. - @attr name android:taskToFrontEnterAnimation - */ - public static final int WindowAnimation_taskToFrontEnterAnimation = 12; - /** -

- @attr description - When bringing an existing task to the foreground, this is the - animation that is run on the current foreground activity - (which is exiting the screen). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#taskToFrontExitAnimation}. - @attr name android:taskToFrontExitAnimation - */ - public static final int WindowAnimation_taskToFrontExitAnimation = 13; - /** -

- @attr description - When opening a new activity that hides the wallpaper, while - currently showing the wallpaper, this is the animation that - is run on the new activity (which is entering the screen). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#wallpaperCloseEnterAnimation}. - @attr name android:wallpaperCloseEnterAnimation - */ - public static final int WindowAnimation_wallpaperCloseEnterAnimation = 18; - /** -

- @attr description - When opening a new activity that hides the wallpaper, while - currently showing the wallpaper, this is the animation that - is run on the old wallpaper activity (which is exiting the screen). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#wallpaperCloseExitAnimation}. - @attr name android:wallpaperCloseExitAnimation - */ - public static final int WindowAnimation_wallpaperCloseExitAnimation = 19; - /** -

- @attr description - When closing a foreround activity that is on top of the wallpaper - when the previous activity is also on top of the wallpaper, - this is the animation that is run on the previous activity - (which is entering the screen). The wallpaper remains - static behind the animation. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#wallpaperIntraCloseEnterAnimation}. - @attr name android:wallpaperIntraCloseEnterAnimation - */ - public static final int WindowAnimation_wallpaperIntraCloseEnterAnimation = 22; - /** -

- @attr description - When closing a foreround activity that is on top of the wallpaper - when the previous activity is also on top of the wallpaper, - this is the animation that is run on the current activity - (which is exiting the screen). The wallpaper remains - static behind the animation. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#wallpaperIntraCloseExitAnimation}. - @attr name android:wallpaperIntraCloseExitAnimation - */ - public static final int WindowAnimation_wallpaperIntraCloseExitAnimation = 23; - /** -

- @attr description - When opening a new activity that is on top of the wallpaper - when the current activity is also on top of the wallpaper, - this is the animation that is run on the new activity - (which is entering the screen). The wallpaper remains - static behind the animation. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#wallpaperIntraOpenEnterAnimation}. - @attr name android:wallpaperIntraOpenEnterAnimation - */ - public static final int WindowAnimation_wallpaperIntraOpenEnterAnimation = 20; - /** -

- @attr description - When opening a new activity that is on top of the wallpaper - when the current activity is also on top of the wallpaper, - this is the animation that is run on the current activity - (which is exiting the screen). The wallpaper remains - static behind the animation. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#wallpaperIntraOpenExitAnimation}. - @attr name android:wallpaperIntraOpenExitAnimation - */ - public static final int WindowAnimation_wallpaperIntraOpenExitAnimation = 21; - /** -

- @attr description - When opening a new activity that shows the wallpaper, while - currently not showing the wallpaper, this is the animation that - is run on the new wallpaper activity (which is entering the screen). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#wallpaperOpenEnterAnimation}. - @attr name android:wallpaperOpenEnterAnimation - */ - public static final int WindowAnimation_wallpaperOpenEnterAnimation = 16; - /** -

- @attr description - When opening a new activity that shows the wallpaper, while - currently not showing the wallpaper, this is the animation that - is run on the current activity (which is exiting the screen). - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#wallpaperOpenExitAnimation}. - @attr name android:wallpaperOpenExitAnimation - */ - public static final int WindowAnimation_wallpaperOpenExitAnimation = 17; - /** -

- @attr description - The animation used when a window is being added. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowEnterAnimation}. - @attr name android:windowEnterAnimation - */ - public static final int WindowAnimation_windowEnterAnimation = 0; - /** -

- @attr description - The animation used when a window is being removed. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowExitAnimation}. - @attr name android:windowExitAnimation - */ - public static final int WindowAnimation_windowExitAnimation = 1; - /** -

- @attr description - The animation used when a window is going from VISIBLE to INVISIBLE. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowHideAnimation}. - @attr name android:windowHideAnimation - */ - public static final int WindowAnimation_windowHideAnimation = 3; - /** -

- @attr description - The animation used when a window is going from INVISIBLE to VISIBLE. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" - or to a theme attribute in the form "?[package:][type:]name". -

This corresponds to the global attribute - resource symbol {@link android.R.attr#windowShowAnimation}. - @attr name android:windowShowAnimation - */ - public static final int WindowAnimation_windowShowAnimation = 2; - }; + public static final class anim { + public static final int accelerate_decelerate_interpolator=0x010a0004; + /** Acceleration curve matching Flash's quadratic ease out function. + */ + public static final int accelerate_interpolator=0x010a0005; + public static final int anticipate_interpolator=0x010a0007; + public static final int anticipate_overshoot_interpolator=0x010a0009; + public static final int app_starting_exit=0x010a0011; + public static final int bounce_interpolator=0x010a000a; + public static final int cycle_interpolator=0x010a000c; + /** Acceleration curve matching Flash's quadratic ease in function. + */ + public static final int decelerate_interpolator=0x010a0006; + public static final int dock_bottom_enter=0x010a0017; + public static final int dock_bottom_exit=0x010a0018; + public static final int dock_left_enter=0x010a0019; + public static final int dock_left_exit=0x010a001a; + public static final int dock_right_enter=0x010a001b; + public static final int dock_right_exit=0x010a001c; + public static final int dock_top_enter=0x010a001d; + public static final int dock_top_exit=0x010a001e; + public static final int fade_in=0x010a0000; + public static final int fade_out=0x010a0001; + public static final int launch_task_behind_source=0x010a0030; + public static final int linear_interpolator=0x010a000b; + public static final int lock_screen_behind_enter=0x010a0032; + public static final int lock_screen_behind_enter_fade_in=0x010a0033; + public static final int lock_screen_behind_enter_wallpaper=0x010a0034; + public static final int lock_screen_wallpaper_exit=0x010a0037; + public static final int overshoot_interpolator=0x010a0008; + public static final int push_down_in=0x010a0040; + public static final int push_down_out=0x010a0042; + public static final int push_up_in=0x010a0044; + public static final int push_up_out=0x010a0045; + public static final int rotation_animation_enter=0x010a004a; + public static final int rotation_animation_jump_exit=0x010a004b; + public static final int rotation_animation_xfade_exit=0x010a004c; + public static final int screen_rotate_0_enter=0x010a004d; + public static final int screen_rotate_0_exit=0x010a004e; + public static final int screen_rotate_0_frame=0x010a004f; + public static final int screen_rotate_180_enter=0x010a0050; + public static final int screen_rotate_180_exit=0x010a0051; + public static final int screen_rotate_180_frame=0x010a0052; + public static final int screen_rotate_finish_enter=0x010a0053; + public static final int screen_rotate_finish_exit=0x010a0054; + public static final int screen_rotate_finish_frame=0x010a0055; + public static final int screen_rotate_minus_90_enter=0x010a0056; + public static final int screen_rotate_minus_90_exit=0x010a0057; + public static final int screen_rotate_minus_90_frame=0x010a0058; + public static final int screen_rotate_plus_90_enter=0x010a0059; + public static final int screen_rotate_plus_90_exit=0x010a005a; + public static final int screen_rotate_plus_90_frame=0x010a005b; + public static final int screen_rotate_start_enter=0x010a005c; + public static final int screen_rotate_start_exit=0x010a005d; + public static final int screen_rotate_start_frame=0x010a005e; + public static final int screen_user_enter=0x010a005f; + public static final int screen_user_exit=0x010a0060; + public static final int slide_in_child_bottom=0x010a0068; + public static final int slide_in_left=0x010a0002; + public static final int slide_in_right=0x010a006a; + public static final int slide_out_left=0x010a006d; + public static final int slide_out_right=0x010a0003; + public static final int voice_activity_close_enter=0x010a007c; + public static final int voice_activity_close_exit=0x010a007d; + public static final int voice_activity_open_enter=0x010a007e; + public static final int voice_activity_open_exit=0x010a007f; + public static final int window_move_from_decor=0x010a008c; + } + public static final class animator { + /** A simple fade-in animation. + */ + public static final int fade_in=0x010b0000; + /** A simple fade-out animation. + */ + public static final int fade_out=0x010b0001; + } + public static final class array { + /** This string array should be overridden by the manufacture to present a list of carrier-id,locale. The wifi regulatory domain is extracted from the locale information. This is used at startup to set system defaults by checking the system property ro.carrier for the carrier-id and searching through this array + An Array of [[Carrier-ID] + [default-locale]] + */ + public static final int carrier_properties=0x0107004f; + /** Various locale-specific string resources for Contacts + */ + public static final int common_nicknames=0x01070048; + /** Array of output values for button backlight corresponding to the LUX values + in the config_autoBrightnessLevels array. This array should have size one greater + than the size of the config_autoBrightnessLevels array. + The brightness values must be between 0 and 255 and be non-decreasing. + This must be overridden in platform specific overlays + */ + public static final int config_autoBrightnessButtonBacklightValues=0x01070027; + /** Array of output values for keyboard backlight corresponding to the LUX values + in the config_autoBrightnessLevels array. This array should have size one greater + than the size of the config_autoBrightnessLevels array. + The brightness values must be between 0 and 255 and be non-decreasing. + This must be overridden in platform specific overlays + */ + public static final int config_autoBrightnessKeyboardBacklightValues=0x01070028; + /** Array of output values for LCD backlight corresponding to the LUX values + in the config_autoBrightnessLevels array. This array should have size one greater + than the size of the config_autoBrightnessLevels array. + The brightness values must be between 0 and 255 and be non-decreasing. + This must be overridden in platform specific overlays + */ + public static final int config_autoBrightnessLcdBacklightValues=0x01070026; + /** Array of light sensor LUX values to define our levels for auto backlight brightness support. + The N entries of this array define N + 1 control points as follows: + (1-based arrays) + + Point 1: (0, value[1]): lux <= 0 + Point 2: (level[1], value[2]): 0 < lux <= level[1] + Point 3: (level[2], value[3]): level[2] < lux <= level[3] + ... + Point N+1: (level[N], value[N+1]): level[N] < lux + + The control points must be strictly increasing. Each control point + corresponds to an entry in the brightness backlight values arrays. + For example, if LUX == level[1] (first element of the levels array) + then the brightness will be determined by value[2] (second element + of the brightness values array). + + Spline interpolation is used to determine the auto-brightness + backlight values for LUX levels between these control points. + + Must be overridden in platform specific overlays + */ + public static final int config_autoBrightnessLevels=0x01070025; + /** Sets the minimum and maximum tilt tolerance for each possible rotation. + This array consists of 4 pairs of values which specify the minimum and maximum + tilt angle at which the device will transition into each rotation. + + The tilt angle represents the direction in which the plane of the screen is facing; + it is also known as the angle of elevation. + + -90 degree tilt means that the screen is facing straight down + (the device is being held overhead upside-down) + 0 degree tilt means that the screen is facing outwards + (the device is being held vertically) + 90 degree tilt means that the screen is facing straight up + (the device is resting on a flat table) + + The default tolerances are set conservatively such that the device is more + likely to remain in its natural orientation than rotate into a counterclockwise, + clockwise, or reversed posture (with an especially strong bias against the latter) + to prevent accidental rotation while carrying the device in hand. + + These thresholds may need to be tuned when the device is intended to be + mounted into a dock with a particularly shallow profile wherein rotation + would ordinarily have been suppressed. + + It is helpful to consider the desired behavior both when the device is being + held at a positive tilt (typical case) vs. a negative tilt (reading overhead in + bed) since they are quite different. In the overhead case, we typically want + the device to more strongly prefer to retain its current configuration (in absence + of a clear indication that a rotation is desired) since the user's head and neck may + be held at an unusual angle. + + */ + public static final int config_autoRotationTiltTolerance=0x01070019; + /** Vibrator pattern for feedback when selecting a day/month/year date of a Calendar + */ + public static final int config_calendarDateVibePattern=0x01070020; + /** call barring MMI code from TS 22.030 Annex B + */ + public static final int config_callBarringMMI=0x01070039; + /** If the DUN connection for this CDMA device supports more than just DUN + traffic you should list them here. + If this device is not CDMA this is ignored. If this list is empty on + a DUN-requiring CDMA device, the DUN APN will just support just DUN. + */ + public static final int config_cdma_dun_supported_types=0x01070017; + public static final int config_cdma_home_system=0x0107003c; + /** An array of CDMA roaming indicators which means international roaming + */ + public static final int config_cdma_international_roaming_indicators=0x01070044; + /** Number of retries Cell Data should attempt for a given error code before + restarting the modem. + Error codes not listed will not lead to modem restarts. + Array of "code#,retry#" + */ + public static final int config_cell_retries_per_error_code=0x01070045; + /** Vibrator pattern for feedback when selecting an hour/minute tick of a Clock + */ + public static final int config_clockTickVibePattern=0x0107001f; + /** The color transform values that correspond to each respective configuration mode for the + built-in display, or -1 if the mode is unsupported by the device. The possible + configuration modes are: + 1. Wide-gamut ("Vibrant") + 2. Adobe RGB ("Natural") + 3. sRGB ("Standard") + + For example, if a device had Wide-gamut as color transform mode 1, sRGB mode as color + transform mode 7, and did not support Adobe RGB at all this would look like: + + + 1 + -1 + 7 + + + */ + public static final int config_colorTransforms=0x01070030; + /** Vibrator pattern for feedback about a context click + */ + public static final int config_contextClickVibePattern=0x01070024; + /** Set of NetworkInfo.getType() that reflect data usage. + TYPE_MOBILE_IA + */ + public static final int config_data_usage_network_types=0x0107000f; + /** Vibrator pattern to be used as the default for notifications + that specify DEFAULT_VIBRATE. + + */ + public static final int config_defaultNotificationVibePattern=0x01070032; + /** If there is no preload VM number in the sim card, carriers such as + Verizon require to load a default vm number from the configurantion. + Define config_default_vm_number for this purpose. And there are two + optional formats for this configuration as below: + (1)voicemail number + (2)voicemail number;gid + The logic to pick up the correct voicemail number: + (1) If the config_default_vm_number array has no gid special item, the last one will be + picked + (2) If the config_default_vm_number array has gid special item and it matches the current + sim's gid, it will be picked. + (3) If the config_default_vm_number array has gid special item but it doesn't match the + current sim's gid, the last one without gid will be picked + */ + public static final int config_default_vm_number=0x0107003f; + /** The list of carrier applications which should be disabled until used. + This function suppresses update notifications for these pre-installed apps. + In SubscriptionInfoUpdater, the listed applications are disabled until used when all of the + following conditions are met. + 1. Not currently carrier-privileged according to the inserted SIM + 2. Pre-installed + 3. In the default state (enabled but not explicitly) + And SubscriptionInfoUpdater undoes this and marks the app enabled when a SIM is inserted + that marks the app as carrier privileged. It also grants the app default permissions + for Phone and Location. As such, apps MUST only ever be added to this list if they + obtain user consent to access their location through other means. + */ + public static final int config_disabledUntilUsedPreinstalledCarrierApps=0x01070035; + /** The list of IMEs which should be disabled until used. + This function suppresses update notifications for these pre-installed apps. + We need to set this configuration carefully that they should not have functionarities + other than "IME" or "Spell Checker". In InputMethodManagerService, + the listed IMEs are disabled until used when all of the following conditions are met. + 1. Not selected as an enabled IME in the Settings + 2. Not selected as a spell checker in the Settings + 3. Installed + 4. A pre-installed IME + 5. Not enabled + And the disabled_until_used state for an IME is released by InputMethodManagerService + when the IME is selected as an enabled IME. + */ + public static final int config_disabledUntilUsedPreinstalledImes=0x01070034; + /** Defines the default set of global actions. Actions may still be disabled or hidden based + on the current state of the device. + Each item must be one of the following strings: + "power" = Power off + "settings" = An action to launch settings + "airplane" = Airplane mode toggle + "bugreport" = Take bug report, if available + "silent" = silent mode + "users" = list of users + + */ + public static final int config_globalActionsList=0x0107003a; + /** Values for GPS configuration + */ + public static final int config_gpsParameters=0x0107003e; + /** This string array can be overriden to add an additional DRM support for WebView EME. + Array of "[keySystemName],[UuidOfMediaDrm]" @hide + Example: + "x-com.microsoft.playready,9A04F079-9840-4286-AB92-E65BE0885F95" + + */ + @android.annotation.SystemApi + public static final int config_keySystemUuidMapping=0x01070005; + /** Vibrator pattern for a very short but reliable vibration for soft keyboard tap + */ + public static final int config_keyboardTapVibePattern=0x0107001e; + /** Package name(s) containing location provider support. + These packages can contain services implementing location providers, + such as the Geocode Provider, Network Location Provider, and + Fused Location Provider. They will each be searched for + service components implementing these providers. + It is strongly recommended that the packages explicitly named + below are on the system image, so that they will not map to + a 3rd party application. + The location framework also has support for installation + of new location providers at run-time. The new package does not + have to be explicitly listed here, however it must have a signature + that matches the signature of at least one package on this list. + + */ + public static final int config_locationProviderPackageNames=0x01070029; + /** Vibrator pattern for feedback about a long screen/key press + */ + public static final int config_longPressVibePattern=0x0107001c; + /** If the mobile hotspot feature requires provisioning, a package name and class name + can be provided to launch a supported application that provisions the devices. + + Example Usage: + + String[] appDetails = getStringArray(R.array.config_mobile_hotspot_provision_app); + Intent intent = new Intent(Intent.ACTION_MAIN); + intent.setClassName(appDetails[0], appDetails[1]); + startActivityForResult(intent, 0); + + public void onActivityResult(int requestCode, int resultCode, Intent intent) { + super.onActivityResult(requestCode, resultCode, intent); + if (requestCode == 0) { + if (resultCode == Activity.RESULT_OK) { + //Mobile hotspot provisioning successful + } else { + //Mobile hotspot provisioning failed + } + } + + See src/com/android/settings/TetherSettings.java for more details. + For ui-less/periodic recheck support see config_mobile_hotspot_provision_app_no_ui + + The first element is the package name and the second element is the class name + of the provisioning app + + com.example.provisioning + com.example.provisioning.Activity + + */ + public static final int config_mobile_hotspot_provision_app=0x01070015; + /** Configure mobile tcp buffer sizes in the form: + rat-name:rmem_min,rmem_def,rmem_max,wmem_min,wmem_def,wmem_max + If no value is found for the rat-name in use, the system default will be applied. + + */ + public static final int config_mobile_tcp_buffers=0x0107002f; + /** Vibrator pattern to be used as the default for notifications + that do not specify vibration but vibrate anyway because the device + is in vibrate mode. + + */ + public static final int config_notificationFallbackVibePattern=0x01070033; + /** The list of classes that should be added to the notification ranking pipline. + See {@link com.android.server.notification.NotificationSignalExtractor} + */ + public static final int config_notificationSignalExtractors=0x01070036; + /** Array of OEM specific USB mode override config. + OEM can override a certain USB mode depending on ro.bootmode. + Specify an array of below items to set override rule. + [bootmode]:[original USB mode]:[USB mode used] + */ + public static final int config_oemUsbModeOverride=0x0107002e; + /** The list of ril radio technologies (see ServiceState.java) which only support + a single data connection at one time. This may change by carrier via + overlays (some don't support multiple pdp on UMTS). All unlisted radio + tech types support unlimited types (practically only 2-4 used). + EVDO_B + */ + public static final int config_onlySingleDcAllowed=0x01070031; + /** Don't use roaming icon for considered operators. + A match on config_sameNamedOperatorConsideredRoaming supersedes a match on this. + Can use mcc or mcc+mnc as item. For example, 302 or 21407. + If operators, 21404 and 21407, make roaming agreements, user of 21404 should not see + the roaming icon as using 21407 network. + To do this, add 21407 item to values-mcc214-mnc04/config.xml + */ + public static final int config_operatorConsideredNonRoaming=0x01070037; + /** Array of ConnectivityManager.TYPE_xxxx constants for networks that may only + be controlled by systemOrSignature apps. + */ + public static final int config_protectedNetworks=0x0107000d; + /** Vibrator pattern for feedback about booting with safe mode disabled + */ + public static final int config_safeModeDisabledVibePattern=0x01070021; + /** Vibrator pattern for feedback about booting with safe mode disabled + */ + public static final int config_safeModeEnabledVibePattern=0x01070022; + /** This is NOT just for same named operators unlike the name suggests (will blacklist regardless of name). + A match on this supersedes a match on config_operatorConsideredNonRoaming. + Uses "startsWith" so you can use a leading substring like the mcc or + use the complete mcc+mnc string. + For a given mcc/mcc-mnc, some operators may want to roam (even if + config_operatorConsideredNonRoaming has the mcc/mcc-mnc). + user of 40485 should see the roaming icon as using 40483 network + though same Reliance network. + To do this, add 40483 item to values-mcc404-mnc85/config.xml + */ + public static final int config_sameNamedOperatorConsideredRoaming=0x01070038; + /** List of paths to serial ports that are available to the serial manager. + for example, /dev/ttyUSB0 + + */ + public static final int config_serialPorts=0x0107001b; + /** This config is used to check if the carrier requires converting destination + number before sending out a SMS. + Formats for this configuration as below: + [true or false][;optional gid] + The logic to pick up the configuration: + (1) If the "config_sms_convert_destination_number_support" array has no gid + special item, the last one will be picked + (2) If the "config_sms_convert_destination_number_support" array has gid special + item and it matches the current sim's gid, it will be picked. + (3) If the "config_sms_convert_destination_number_support" array has gid special + item but it doesn't match the current sim's gid, the last one without gid + will be picked + */ + public static final int config_sms_convert_destination_number_support=0x01070043; + /** National language locking shift tables to enable for SMS encoding. + Decoding is always enabled. 3GPP TS 23.038 states that this feature + should not be enabled until a formal request is issued by the relevant + national regulatory body. Array elements are codes from the table above. + Example 1: devices sold in Turkey must include table 1 after the + Turkish Telecommunication Authority requires locking shift encoding + to be enabled (est. July 2012). (http://www.btk.gov.tr/eng/pdf/2009/BY-LAW_SMS.pdf) + See also: http://www.mobitech.com.tr/tr/ersanozturkblog_en/index.php?entry=entry090223-160014 + Example 2: devices sold in India should include tables 4 through 13 + to enable use of the new Release 9 tables for Indic languages. + */ + public static final int config_sms_enabled_locking_shift_tables=0x0107002d; + /** National Language Identifier codes for the following two config items. + (from 3GPP TS 23.038 V9.1.1 Table 6.2.1.2.4.1): + 0 - reserved + 1 - Turkish + 2 - Spanish (single shift table only) + 3 - Portuguese + 4 - Bengali + 5 - Gujarati + 6 - Hindi + 7 - Kannada + 8 - Malayalam + 9 - Oriya + 10 - Punjabi + 11 - Tamil + 12 - Telugu + 13 - Urdu + 14+ - reserved + National language single shift tables to enable for SMS encoding. + Decoding is always enabled. 3GPP TS 23.038 states that this feature + should not be enabled until a formal request is issued by the relevant + national regulatory body. Array elements are codes from the table above. + Example 1: devices sold in Turkey must include table 1 to conform with + By-Law Number 27230. (http://www.btk.gov.tr/eng/pdf/2009/BY-LAW_SMS.pdf) + Example 2: devices sold in India should include tables 4 through 13 + to enable use of the new Release 9 tables for Indic languages. + */ + public static final int config_sms_enabled_single_shift_tables=0x0107002c; + /** Do not translate. Defines the slots for the right-hand side icons. That is to say, the + icons in the status bar that are not notifications. + */ + public static final int config_statusBarIcons=0x0107000b; + /** Enabled built-in zen mode condition providers + */ + public static final int config_system_condition_providers=0x01070042; + /** default telephony hardware configuration for this platform. + + this string array should be overridden by the device to present a list + telephony hardware resource. this is used by the telephony device controller + (TDC) to offer the basic capabilities of the hardware to the telephony + framework + + an array of "[hardware type],[hardware-uuid],[state],[[hardware-type specific]]" + with, [[hardware-type specific]] in: + - "[[ril-model],[rat],[max-active-voice],[max-active-data],[max-active-standby]]" + for 'modem' hardware + - "[[associated-modem-uuid]]" + for 'sim' hardware. + refer to HardwareConfig in com.android.internal.telephony for specific details/values + those elements can carry. + + */ + public static final int config_telephonyHardware=0x0107003b; + /** This string array can be overriden to enable test location providers initially. + Array of "[locationProviderName],[requiresNetwork], + [requiresSatellite],[requiresCell],[hasMonetaryCost], + [supportAltitute],[supportsSpeed],[supportsBearing], + [powerRequirement],[accuracy]" + powerRequirement is defined in android.location.Criteria + 0 = NO_REQUIREMENT / 1 = POWER_LOW / 2 = POWER_MEDIUM / 3 = POWER_HIGH + accuracy is defined in anroid.location.Criteria + 1 = ACCURACY_FINE / 2 = ACCURACY_COARSE + Example test network location provider + network,false,false,false,false,true,true,true,1,2 + + */ + public static final int config_testLocationProviders=0x0107002a; + /** String containing the apn value for tethering. May be overriden by secure settings + TETHER_DUN_APN. Value is a comma separated series of strings: + "name,apn,proxy,port,username,password,server,mmsc,mmsproxy,mmsport,mcc,mnc,auth,type", + Or string format of ApnSettingV3. + note that empty fields can be ommitted: "name,apn,,,,,,,,,310,260,,DUN" + Multiple entries are separated by using string-array: + "[ApnSettingV3]Name,apn,,,,,,,,,123,45,,mms|*,IPV6,IP,true,14,,,,,,,spn,testspn + [ApnSettingV3]Name1,apn2,,,,,,,,,123,46,,mms|*,IPV6,IP,true,12,,,,,,,," + */ + public static final int config_tether_apndata=0x01070018; + /** List of regexpressions describing the interface (if any) that represent tetherable + bluetooth interfaces. If the device doesn't want to support tethering over bluetooth this + should be empty. + */ + public static final int config_tether_bluetooth_regexs=0x01070013; + /** Dhcp range (min, max) to use for tethering purposes + */ + public static final int config_tether_dhcp_range=0x01070014; + /** Array of ConnectivityManager.TYPE_xxxx values allowable for tethering + Common options are [1, 4] for TYPE_WIFI and TYPE_MOBILE_DUN or + simOperatorNumber;position;gid(optional)> + + */ + public static final int no_ems_support_sim_operators=0x0107003d; + /** Organization types from android.provider.Contacts. This could be used when adding a new organization for a contact, for example. + */ + public static final int organizationTypes=0x01070002; + /** Phone number types from android.provider.Contacts. This could be used when adding a new phone number for a contact, for example. + */ + public static final int phoneTypes=0x01070003; + /** Postal address types from android.provider.Contacts. This could be used when adding a new address for a contact, for example. + */ + public static final int postalAddressTypes=0x01070004; + /** Do not translate. These are all of the color state list resources that should be + preloaded by the zygote process before it starts forking application processes. + */ + public static final int preloaded_color_state_lists=0x01070007; + /** Do not translate. These are all of the drawable resources that should be preloaded by + the zygote process before it starts forking application processes. + */ + public static final int preloaded_drawables=0x01070006; + /** This string array should be overridden by the device to present a list of radio + attributes. This is used by the connectivity manager to decide which networks can coexist + based on the hardware + An Array of "[ConnectivityManager connectionType], + [# simultaneous connection types]" + */ + public static final int radioAttributes=0x0107000e; + public static final int sim_colors=0x0107000a; + /** Used in LocalePicker + */ + public static final int special_locale_codes=0x01070008; + /** Used in LocalePicker + */ + public static final int special_locale_names=0x01070009; + /** WFC Operator Error Messages showed as alerts + */ + public static final int wfcOperatorErrorAlertMessages=0x0107004a; + /** WFC Operator Error Codes + */ + public static final int wfcOperatorErrorCodes=0x01070049; + /** WFC Operator Error Messages showed as notifications + */ + public static final int wfcOperatorErrorNotificationMessages=0x0107004b; + } + public static final class attr { + /** Default AbsListView style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int absListViewStyle=0x0101006a; + /** The event types this serivce would like to receive as specified in + {@link android.view.accessibility.AccessibilityEvent}. This setting + can be changed at runtime by calling + {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) + android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + + + + + + + + + + + + + +
ConstantValueDescription
typeViewClicked0x00000001 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_CLICKED} events.
typeViewLongClicked0x00000002 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_LONG_CLICKED} events.
typeViewSelected0x00000004 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_SELECTED} events.
typeViewFocused0x00000008 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_FOCUSED} events.
typeViewTextChanged0x00000010 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_TEXT_CHANGED} events.
typeWindowStateChanged0x00000020 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_WINDOW_STATE_CHANGED} events.
typeNotificationStateChanged0x00000040 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_NOTIFICATION_STATE_CHANGED} events.
typeViewHoverEnter0x00000080 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_HOVER_ENTER} events.
typeViewHoverExit0x00000100 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_HOVER_EXIT} events.
typeTouchExplorationGestureStart0x00000200 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_TOUCH_EXPLORATION_GESTURE_START} events.
typeTouchExplorationGestureEnd0x00000400 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_TOUCH_EXPLORATION_GESTURE_END} events.
typeWindowContentChanged0x00000800 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_WINDOW_CONTENT_CHANGED} events.
typeViewScrolled0x000001000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_SCROLLED} events.
typeViewTextSelectionChanged0x000002000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_TEXT_SELECTION_CHANGED} events.
typeAnnouncement0x00004000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_ANNOUNCEMENT} events.
typeViewAccessibilityFocused0x00008000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_ACCESSIBILITY_FOCUSED} events.
typeViewAccessibilityFocusCleared0x00010000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_ACCESSIBILITY_FOCUS_CLEARED} events.
typeViewTextTraversedAtMovementGranularity0x00020000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_TEXT_TRAVERSED_AT_MOVEMENT_GRANULARITY} events.
typeGestureDetectionStart0x00040000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_GESTURE_DETECTION_START} events.
typeGestureDetectionEnd0x00080000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_GESTURE_DETECTION_END} events.
typeTouchInteractionStart0x00100000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_TOUCH_INTERACTION_START} events.
typeTouchInteractionEnd0x00200000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_TOUCH_INTERACTION_END} events.
typeWindowsChanged0x00400000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_WINDOWS_CHANGED} events.
typeContextClicked0x00800000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_CONTEXT_CLICKED} events.
typeAssistReadingContext0x01000000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_ASSIST_READING_CONTEXT} events.
typeAllMask0xffffffff Receives {@link android.view.accessibility.AccessibilityEvent#TYPES_ALL_MASK} i.e. all events.
+ */ + public static final int accessibilityEventTypes=0x01010380; + /** The feedback types this serivce provides as specified in + {@link android.accessibilityservice.AccessibilityServiceInfo}. This setting + can be changed at runtime by calling + {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) + android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
feedbackSpoken0x00000001 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_SPOKEN} feedback.
feedbackHaptic0x00000002 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_HAPTIC} feedback.
feedbackAudible0x00000004 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_AUDIBLE} feedback.
feedbackVisual0x00000008 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_VISUAL} feedback.
feedbackGeneric0x00000010 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_GENERIC} feedback.
feedbackAllMask0xffffffff Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_ALL_MASK} feedback.
+ */ + public static final int accessibilityFeedbackType=0x01010382; + /** Additional flags as specified in + {@link android.accessibilityservice.AccessibilityServiceInfo}. + This setting can be changed at runtime by calling + {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) + android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
flagDefault0x00000001 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#DEFAULT}
flagIncludeNotImportantViews0x00000002 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_INCLUDE_NOT_IMPORTANT_VIEWS}
flagRequestTouchExplorationMode0x00000004 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REQUEST_TOUCH_EXPLORATION_MODE}
flagRequestEnhancedWebAccessibility0x00000008 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REQUEST_ENHANCED_WEB_ACCESSIBILITY}
flagReportViewIds0x00000010 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REPORT_VIEW_IDS}
flagRequestFilterKeyEvents0x00000020 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REQUEST_FILTER_KEY_EVENTS}
flagRetrieveInteractiveWindows0x00000040 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_RETRIEVE_INTERACTIVE_WINDOWS}
+ */ + public static final int accessibilityFlags=0x01010384; + public static final int accessibilityFocusedDrawable=0x01160031; + /** Indicates to accessibility services whether the user should be notified when + this view changes. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0 Accessibility services should not announce changes to this view.
polite1 Accessibility services should announce changes to this view.
assertive2 Accessibility services should interrupt ongoing speech to immediately + announce changes to this view.
+ */ + public static final int accessibilityLiveRegion=0x010103ee; + /** Sets the id of a view after which this one is visited in accessibility traversal. + A screen-reader must visit the content of the other view before the content of + this one. + @see android.view.View#setAccessibilityTraversalAfter(int)} +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int accessibilityTraversalAfter=0x010104d2; + /** Sets the id of a view before which this one is visited in accessibility traversal. + A screen-reader must visit the content of this view before the content of the one + it precedes. + @see android.view.View#setAccessibilityTraversalBefore(int)} +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int accessibilityTraversalBefore=0x010104d1; + /** A preferences.xml file for authenticator-specific settings. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int accountPreferences=0x0101029f; + /** The account type this authenticator handles. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int accountType=0x0101028f; + /** The action name to assign to the Intent, as per + {@link android.content.Intent#setAction Intent.setAction()}. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int action=0x0101002d; + /** Custom divider drawable to use for elements in the action bar. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x0101039b; + /** Custom item state list drawable background for action bar items. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x0101039c; + /** Reference to a theme that should be used to inflate popups + shown by widgets in the action bar. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x0101048d; + /** Size of the Action Bar, including the contextual + bar used to present Action Modes. +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x010102eb; + /** Reference to a style for the split Action Bar. This style + controls the split component that holds the menu/action + buttons. actionBarStyle is still used for the primary + bar. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x01010388; + /** Reference to a style for the Action Bar +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x010102ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x010102f4; + /** Default style for tabs within an action bar +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x010102f3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x010102f5; + /** Reference to a theme that should be used to inflate the + action bar. This will be inherited by any widget inflated + into the action bar. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x01010431; + /** Reference to a theme that should be used to inflate widgets + and layouts destined for the action bar. Most of the time + this will be a reference to the current theme, but when + the action bar has a significantly different contrast + profile than the rest of the activity the difference + can become important. If this is set to @null the current + theme will be used. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x01010397; + /** Default action button style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x010102d8; + /** Default ActionBar dropdown style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x010102d7; + /** An optional layout to be used as an action view. + See {@link android.view.MenuItem#setActionView(android.view.View)} + for more info. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x010102fb; + /** TextAppearance style that will be applied to text that + appears within action menu items. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x01010360; + /** Color for text that appears within action menu items. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x01010361; + /** Background drawable to use for action mode UI +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x010102db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x010102f7; + /** Drawable to use for the close action mode button +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x010102dc; + /** Drawable to use for the Copy action button in Contextual Action Bar +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x01010312; + /** Drawable to use for the Cut action button in Contextual Action Bar +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x01010311; + /** Drawable to use for the Find action button in WebView selection action modes +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x0101047a; + /** Drawable to use for the Paste action button in Contextual Action Bar +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x01010313; + public static final int actionModePopupWindowStyle=0x01160020; + /** Drawable to use for the Select all action button in Contextual Action Bar +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x0101037e; + /** Drawable to use for the Share action button in WebView selection action modes +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x01010479; + /** Background drawable to use for action mode UI in the lower split bar +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x0101039d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x01010394; + /** Drawable to use for the Web Search action button in WebView selection action modes +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x0101047b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x010102f6; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x01010444; + /** The name of an optional ActionProvider class to instantiate an action view + and perform operations such as default action for that menu item. + See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} + for more info. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x01010389; + /** The name of an optional View class to instantiate and use as an + action view. See {@link android.view.MenuItem#setActionView(android.view.View)} + for more info. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x010102fc; + /** Drawable used as a background for activated items. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activatedBackgroundIndicator=0x010102fd; + /** When closing the current activity, this is the animation that is + run on the next activity (which is entering the screen). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityCloseEnterAnimation=0x010100ba; + /** When closing the current activity, this is the animation that is + run on the current activity (which is exiting the screen). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityCloseExitAnimation=0x010100bb; + /** When opening a new activity, this is the animation that is + run on the next activity (which is entering the screen). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityOpenEnterAnimation=0x010100b8; + /** When opening a new activity, this is the animation that is + run on the previous activity (which is exiting the screen). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityOpenExitAnimation=0x010100b9; + /** Fully qualified class name of an activity that allows the user to manually + add printers to this print service. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int addPrintersActivity=0x010103e6; + /** Sets whether this ViewGroup's drawable states also include + its children's drawable states. This is used, for example, to + make a group appear to be focused when its child EditText or button + is focused. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int addStatesFromChildren=0x010100f0; + /** Set this to true if you want the ImageView to adjust its bounds + to preserve the aspect ratio of its drawable. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int adjustViewBounds=0x0101011e; + /** Fully qualified class name of an activity with advanced print options + specific to this print service. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int advancedPrintOptionsActivity=0x010103f1; + public static final int alertDialogCenterButtons=0x01160017; + /** Icon drawable to use for alerts +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogIcon=0x01010355; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x0101005d; + /** Theme to use for alert dialogs spawned from this theme. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x01010309; + /** Alignment constants. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
alignBounds0 Align the bounds of the children. + See {@link android.widget.GridLayout#ALIGN_BOUNDS}.
alignMargins1 Align the margins of the children. + See {@link android.widget.GridLayout#ALIGN_MARGINS}.
+ */ + public static final int alignmentMode=0x0101037a; + /** Resource representing the term "All Contacts" (e.g. "All Friends" or + "All connections"). Optional (Default is "All Contacts"). +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allContactsName=0x010102cc; + /** Whether to allow the application to participate in the backup + and restore infrastructure. If this attribute is set to false, + no backup or restore of the application will ever be performed, even by a + full-system backup that would otherwise cause all application data to be saved + via adb. The default value of this attribute is true. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowBackup=0x01010280; + /** Option to let applications specify that user data can/cannot be + cleared. This flag is turned on by default. + This attribute is usable only by applications + included in the system image. Third-party apps cannot use it. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowClearUserData=0x01010005; + /** Indicate that the activity can be launched as the embedded child of another + activity. Particularly in the case where the child lives in a container + such as a Display owned by another activity. + +

The default value of this attribute is false. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowEmbedded=0x010103f5; + /** Set to true to tell the SyncManager that this SyncAdapter supports + multiple simultaneous syncs for the same account type and authority. + Otherwise the SyncManager will be sure not to issue a start sync request + to this SyncAdapter if the SyncAdapter is already syncing another account. + Defaults to false. + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowParallelSyncs=0x01010332; + /** Indicates whether the drawer can be opened/closed by a single tap + on the handle. (If false, the user must drag or fling, or click + using the trackball, to open/close the drawer.) Default is true. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowSingleTap=0x01010259; + /** Specify that an activity can be moved out of a task it is in to + the task it has an affinity for when appropriate. Use with the + application tag (to supply a default for all activities in the + application), or with an activity tag (to supply a specific + setting for that component). + +

Normally when an application is started, it is associated with + the task of the activity that started it and stays there for its + entire lifetime. You can use the allowTaskReparenting feature to force an + activity to be re-parented to a different task when the task it is + in goes to the background. Typically this is used to cause the + activities of an application to move back to the main task associated + with that application. The activity is re-parented to the task + with the same {@link android.R.attr#taskAffinity} as it has. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowTaskReparenting=0x01010204; + /** Whether undo should be allowed for editable text. Defaults to true. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowUndo=0x010104df; + /** alpha property of the view, as a value between 0 (completely transparent) and 1 + (completely opaque). +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alpha=0x0101031f; + /** The alphabetic shortcut key. This is the shortcut when using a keyboard + with alphabetic keys. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alphabeticShortcut=0x010101e3; + /** Defines whether the ViewGroup should always draw its children using their + drawing cache or not. The default value is true. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alwaysDrawnWithCache=0x010100ef; + /** Specify whether an acitivty's task state should always be maintained + by the system, or if it is allowed to reset the task to its initial + state in certain situations. + +

Normally the system will reset a task (remove all activities from + the stack and reset the root activity) in certain situations when + the user re-selects that task from the home screen. Typically this + will be done if the user hasn't visited that task for a certain + amount of time, such as 30 minutes. + +

By setting this attribute, the user will always return to your + task in its last state, regardless of how they get there. This is + useful, for example, in an application like the web browser where there + is a lot of state (such as multiple open tabs) that the application + would not like to lose. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alwaysRetainTaskState=0x01010203; + /** The background color state list for the AM/PM selectors. + {@deprecated Use headerBackground instead.} +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @Deprecated + public static final int amPmBackgroundColor=0x010104a5; + /** The color for the AM/PM selectors. + {@deprecated Use headerTextColor instead.} +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @Deprecated + public static final int amPmTextColor=0x010104a4; + /** Alpha value of the ambient shadow projected by elevated views, between 0 and 1. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ambientShadowAlpha=0x010104be; + /** Angle of the gradient. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int angle=0x010101a0; + /** Defines whether to animate the current View when the ViewAnimation + is first displayed. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int animateFirstView=0x010102d5; + /** Defines whether changes in layout (caused by adding and removing items) should + cause a LayoutTransition to run. When this flag is set to true, a default + LayoutTransition object will be set on the ViewGroup container and default + animations will run when these layout changes occur. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int animateLayoutChanges=0x010102f2; + /** Indicates whether the drawer should be opened/closed with an animation + when the user clicks the handle. Default is true. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int animateOnClick=0x0101025c; + /** Animation to use on each child. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int animation=0x010101cd; + /** Defines whether layout animations should create a drawing cache for their + children. Enabling the animation cache consumes more memory and requires + a longer initialization but provides better performance. The animation + cache is enabled by default. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int animationCache=0x010100ed; + /** Sets how long a transition animation should run (in milliseconds) + when layout has changed. Only relevant if animation is turned on. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int animationDuration=0x01010112; + /** The order in which the animations will be started. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0 Animations are started in the natural order.
reverse1 Animations are started in the reverse order.
random2 Animations are started randomly.
+ */ + public static final int animationOrder=0x010101ce; + /** @deprecated Not used by the framework. + Timeout between frames of animation in milliseconds + {@deprecated Not used by the framework.} +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @Deprecated + public static final int animationResolution=0x0101031a; + /** Enables or disables antialiasing. Antialiasing can be used to smooth the + edges of a bitmap when rotated. Default value is false. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int antialias=0x0101011a; + /** Indicates whether the application can accommodate any screen + density. Older applications are assumed to not be able to, + new ones able to. You can explicitly supply your abilities + here. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int anyDensity=0x0101026c; + /** A drawable that can be rendered in Android's system UI for representing + the service. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int apduServiceBanner=0x010103ed; + /** Value is a string that specifies the Maps API Key to use. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int apiKey=0x01010211; + /** Name of the author of this component, e.g. Google. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int author=0x010102b4; + /** Specify the authorities under which this content provider can be + found. Multiple authorities may be supplied by separating them + with a semicolon. Authority names should use a Java-style naming + convention (such as com.google.provider.MyProvider) + in order to avoid conflicts. Typically this name is the same + as the class implementation describing the provider's data structure. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int authorities=0x01010018; + /** The view id of the AppWidget subview which should be auto-advanced. + by the widget's host. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoAdvanceViewId=0x0101030f; + /** Default AutoCompleteTextView style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x0101006b; + /** Controls whether links such as urls and email addresses are + automatically found and converted to clickable links. The default + value is "none", disabling this feature. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
none0x00 Match no patterns (default).
web0x01 Match Web URLs.
email0x02 Match email addresses.
phone0x04 Match phone numbers.
map0x08 Match map addresses.
all0x0f Match all patterns (equivalent to web|email|phone|map).
+ */ + public static final int autoLink=0x010100b0; + /** Indicates if the drawable needs to be mirrored when its layout direction is + RTL (right-to-left). See + {@link android.graphics.drawable.Drawable#setAutoMirrored}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoMirrored=0x010103ea; + /** Tasks launched by activities with this attribute will remain in the recent tasks + list until the last activity in the task is completed. When that happens the task + will be automatically removed from the recent tasks list. This overrides the caller's + use of {@link android.content.Intent#FLAG_ACTIVITY_RETAIN_IN_RECENTS + Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS} +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoRemoveFromRecents=0x01010447; + /** When true, automatically start animating +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoStart=0x010102b5; + /** If set, specifies that this TextView has a textual input method + and automatically corrects some common spelling errors. + The default is "false". + {@deprecated Use inputType instead.} +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @Deprecated + public static final int autoText=0x0101016a; + /** If provided and true, URLs entered in the search dialog while searching + within this activity would be detected and treated as URLs (show a 'go' button in the + keyboard and invoke the browser directly when user launches the URL instead of passing + the URL to the activity). If set to false any URLs entered are treated as + normal query text. + The default value is false. Optional attribute.. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoUrlDetect=0x0101028c; + /** Specify whether an activity intent filter will need to be verified thru its set + of data URIs. This will only be used when the Intent's action is set to + {@link android.content.Intent#ACTION_VIEW Intent.ACTION_VIEW} and the Intent's category is + set to {@link android.content.Intent#CATEGORY_BROWSABLE Intent.CATEGORY_BROWSABLE} and the + intern filter data scheme is set to "http" or "https". When set to true, the intent filter + will need to use its data tag for getting the URIs to verify with. + + For each URI, an HTTPS network request will be done to /.well-known/statements.json + host to verify that the web site is okay with the app intercepting the URI. + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int autoVerify=0x010104ee; + /** A drawable to use as the background. This can be either a reference + to a full drawable resource (such as a PNG image, 9-patch, + XML state list description, etc), or a solid color such as "#ff000000" + (black). +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int background=0x010100d4; + /** Default background dim amount when a menu, dialog, or something similar pops up. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundDimAmount=0x01010032; + /** Control whether dimming behind the window is enabled. The default + theme does not set this value, meaning it is based on whether the + window is floating. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundDimEnabled=0x0101021f; + /** Specifies a background drawable for the bottom component of a split action bar. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x0101038b; + /** Specifies a background drawable for a second stacked row of the action bar. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x0101038a; + /** Tint to apply to the background. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x0101046b; + /** Blending mode used to apply the background tint. +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+ */ + public static final int backgroundTintMode=0x0101046c; + /** The name of the class subclassing BackupAgent to manage + backup and restore of the application's data on external storage. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backupAgent=0x0101027f; + /** A Drawable resource providing an extended graphical banner for its + associated item. Use with the application tag (to supply a default + banner for all application activities), or with the activity, tag to + supply a banner for a specific activity. + +

The given banner will be used to display to the user a graphical + representation of an activity in the Leanback application launcher. + Since banners are displayed only in the Leanback launcher, they should + only be used with activities (and applications) that support Leanback + mode. These are activities that handle Intents of category + {@link android.content.Intent#CATEGORY_LEANBACK_LAUNCHER + Intent.CATEGORY_LEANBACK_LAUNCHER}. +

This must be a reference to a Drawable resource containing the image definition. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int banner=0x010103f2; + /** The offset of the baseline within this view. See {see android.view.View#getBaseline} + for details +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int baseline=0x0101031c; + /** If true, the image view will be baseline aligned with based on its + bottom edge. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int baselineAlignBottom=0x01010122; + /** When set to false, prevents the layout from aligning its children's + baselines. This attribute is particularly useful when the children + use different values for gravity. The default value is true. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int baselineAligned=0x01010126; + /** When a linear layout is part of another layout that is baseline + aligned, it can specify which of its children to baseline align to + (that is, which child TextView). +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int baselineAlignedChildIndex=0x01010127; + /** Style for buttons without an explicit border, often used in groups. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x0101032b; + /** Amount of bottom padding inside the gradient shape. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int bottom=0x010101b0; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int bottomBright=0x010100cd; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int bottomDark=0x010100c9; + /** Radius of the bottom left corner. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int bottomLeftRadius=0x010101ab; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int bottomMedium=0x010100ce; + /** Extra offset for the handle at the bottom of the SlidingDrawer. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int bottomOffset=0x01010257; + /** Radius of the bottom right corner. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int bottomRightRadius=0x010101ac; + /** The short title for the bread crumb of this item. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int breadCrumbShortTitle=0x01010304; + /** The title for the bread crumb of this item. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int breadCrumbTitle=0x01010303; + /** Break strategy (control over paragraph layout). +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
simple0 Line breaking uses simple strategy.
high_quality1 Line breaking uses high-quality strategy, including hyphenation.
balanced2 Line breaking strategy balances line lengths.
+ */ + public static final int breakStrategy=0x010104dd; + /** Determines the minimum type that getText() will return. + The default is "normal". + Note that EditText and LogTextBox always return Editable, + even if you specify something less powerful here. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0 Can return any CharSequence, possibly a + Spanned one if the source text was Spanned.
spannable1 Can only return Spannable.
editable2 Can only return Spannable and Editable.
+ */ + public static final int bufferType=0x0101014e; + /** Drawable used for the button graphic (e.g. checkbox, radio button, etc). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int button=0x01010107; + /** Style for buttons within button bars +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x0101032f; + /** Style for the "negative" buttons within button bars +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x0101048b; + /** Style for the "neutral" buttons within button bars +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x0101048a; + /** Style for the "positive" buttons within button bars +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x01010489; + /** Style for button bars +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x0101032e; + /** Normal Button style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x01010048; + /** Button style to inset into an EditText. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleInset=0x0101004a; + /** Small Button style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x01010049; + /** ToggleButton style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleToggle=0x0101004b; + /** Tint to apply to the button graphic. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x0101046f; + /** Blending mode used to apply the button graphic tint. +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+ */ + public static final int buttonTintMode=0x01010470; + /** Indicates that this list will always be drawn on top of solid, single-color + opaque background. This allows the list to optimize drawing. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cacheColorHint=0x01010101; + /** The text color list of the calendar. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int calendarTextColor=0x0101049b; + /** Whether the calendar view is shown. Only valid for "spinner" mode. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int calendarViewShown=0x0101034c; + /** The CalendarView style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int calendarViewStyle=0x0101035d; + /** Attribute whether the accessibility service wants to be able to request enhanced + web accessibility enhancements. For example, installing scripts to make app + content more accessible. +

+ Required to allow setting the {@link android.accessibilityservice + #AccessibilityServiceInfo#FLAG_REQUEST_ENHANCED_WEB_ACCESSIBILITY} flag. +

+ +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int canRequestEnhancedWebAccessibility=0x010103d8; + /** Attribute whether the accessibility service wants to be able to request to + filter key events. +

+ Required to allow setting the {@link android.accessibilityservice + #AccessibilityServiceInfo#FLAG_REQUEST_FILTER_KEY_EVENTS} flag. +

+ +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int canRequestFilterKeyEvents=0x010103d9; + /** Attribute whether the accessibility service wants to be able to request touch + exploration mode in which touched items are spoken aloud and the UI can be + explored via gestures. +

+ Required to allow setting the {@link android.accessibilityservice + #AccessibilityServiceInfo#FLAG_REQUEST_TOUCH_EXPLORATION_MODE} flag. +

+ +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int canRequestTouchExplorationMode=0x010103d7; + /** Attribute whether the accessibility service wants to be able to retrieve the + active window content. This setting cannot be changed at runtime. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int canRetrieveWindowContent=0x01010385; + /** A styled string, specifying the style to be used for showing + inline candidate text when composing with an input method. The + text itself will be ignored, but the style spans will be applied + to the candidate text as it is edited. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + */ + public static final int candidatesTextStyleSpans=0x01010230; + /** If set, specifies that this TextView has a textual input method + and should automatically capitalize what the user types. + The default is "none". + {@deprecated Use inputType instead.} +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0 Don't automatically capitalize anything.
sentences1 Capitalize the first word of each sentence.
words2 Capitalize the first letter of every word.
characters3 Capitalize every character.
+ */ + @Deprecated + public static final int capitalize=0x01010169; + /** The category attribute will be used by the Android platform to present + multiple applications that register ISO 7816 Application IDs (AIDs) in the + same category uniformly. + Additionally, when a category is specified, Android will ensure that either + all AIDs in this group are routed to this application, or none at all. + This attribute is optional. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int category=0x010103e8; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int centerBright=0x010100cc; + /** Optional center color. For linear gradients, use centerX or centerY + to place the center color. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int centerColor=0x0101020b; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int centerDark=0x010100c8; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int centerMedium=0x010100cf; + /** X coordinate of the origin of the gradient within the shape. +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int centerX=0x010101a2; + /** Y coordinate of the origin of the gradient within the shape. +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int centerY=0x010101a3; + /** Default style for CheckBoxPreference. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkBoxPreferenceStyle=0x0101008f; + /** Drawable used for the check mark graphic. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkMark=0x01010108; + public static final int checkMarkGravity=0x01160047; + /** Tint to apply to the check mark. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int checkMarkTint=0x010104a7; + /** Blending mode used to apply the check mark tint. +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+ */ + public static final int checkMarkTintMode=0x010104a8; + /** Whether the item is capable of displaying a check mark. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int checkable=0x010101e5; + /** Whether the items are capable of displaying a check mark. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0 The items are not checkable.
all1 The items are all checkable.
single2 The items are checkable and there will only be a single checked item in + this group.
+ */ + public static final int checkableBehavior=0x010101e0; + /** Default Checkbox style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x0101006c; + /** Indicates the initial checked state of this button. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int checked=0x01010106; + /** The id of the child radio button that should be checked by default + within this radio group. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int checkedButton=0x01010148; + /** Default CheckedTextView style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x010103c8; + /** Drawable or color that is used as a divider for children. (It will drawn + below and above child items.) The height of this will be the same as + the height of the normal list item divider. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int childDivider=0x01010111; + /** Indicator shown beside the child View. This can be a stateful Drawable. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int childIndicator=0x0101010c; + /** The end bound for a child's indicator. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int childIndicatorEnd=0x010103d4; + /** The left bound for a child's indicator. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int childIndicatorLeft=0x0101010f; + /** The right bound for a child's indicator. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int childIndicatorRight=0x01010110; + /** The start bound for a child's indicator. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int childIndicatorStart=0x010103d3; + /** Defines the choice behavior for the view. By default, lists do not have + any choice behavior. By setting the choiceMode to singleChoice, the list + allows up to one item to be in a chosen state. By setting the choiceMode to + multipleChoice, the list allows any number of items to be chosen. + Finally, by setting the choiceMode to multipleChoiceModal the list allows + any number of items to be chosen in a special selection mode. + The application will supply a + {@link android.widget.AbsListView.MultiChoiceModeListener} using + {@link android.widget.AbsListView#setMultiChoiceModeListener} to control the + selection mode. This uses the {@link android.view.ActionMode} API. +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0 Normal list that does not indicate choices.
singleChoice1 The list allows up to one choice.
multipleChoice2 The list allows multiple choices.
multipleChoiceModal3 The list allows multiple choices in a custom selection mode.
+ */ + public static final int choiceMode=0x0101012b; + /** Specify whether an activity's task should be cleared when it + is re-launched from the home screen. As a result, every time the + user starts the task, they will be brought to its root activity, + regardless of whether they used BACK or HOME to last leave it. + This flag only applies to activities that + are used to start the root of a new task. + +

An example of the use of this flag would be for the case where + a user launches activity A from home, and from there goes to + activity B. They now press home, and then return to activity A. + Normally they would see activity B, since that is what they were + last doing in A's task. However, if A has set this flag to true, + then upon going to the background all of the tasks on top of it (B + in this case) are removed, so when the user next returns to A they + will restart at its original activity. + +

When this option is used in conjunction with + {@link android.R.attr#allowTaskReparenting}, the allowTaskReparenting trumps the + clear. That is, all activities above the root activity of the + task will be removed: those that have an affinity will be moved + to the task they are associated with, otherwise they will simply + be dropped as described here. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int clearTaskOnLaunch=0x01010015; + /** Defines whether this view reacts to click events. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int clickable=0x010100e5; + /** Defines whether a child is limited to draw inside of its bounds or not. + This is useful with animations that scale the size of the children to more + than 100% for instance. In such a case, this property should be set to false + to allow the children to draw outside of their bounds. The default value of + this property is true. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int clipChildren=0x010100ea; + /** The orientation for the clip. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
horizontal1 Clip the drawable horizontally.
vertical2 Clip the drawable vertically.
+ */ + public static final int clipOrientation=0x0101020a; + /** Defines whether the ViewGroup will clip its children and resize (but not clip) any + EdgeEffect to its padding, if padding is not zero. This property is set to true by + default. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int clipToPadding=0x010100eb; + /** Close button icon +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x01010481; + public static final int closeItemLayout=0x0116008a; + /** The unicode value or comma-separated values that this key outputs. +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int codes=0x01010242; + /** The zero-based index of the columns to collapse. The column indices + must be separated by a comma: 1, 2, 5. Illegal and duplicate + indices are ignored. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseColumns=0x0101014b; + /** Text to set as the content description for the collapse button. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x010104d0; + /** Solid color for the gradient shape. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x010101a5; + /** Bright complement to the primary branding color. By default, this is the color applied + to framework controls (via colorControlActivated). +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x01010435; + /** Default highlight color for items that are + activated. (Activated meaning persistent selection.) +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorActivatedHighlight=0x01010390; + /** Default color of background imagery, ex. full-screen windows. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorBackground=0x01010031; + /** This is a hint for a solid color that can be used for caching + rendered views. This should be the color of the background when + there is a solid background color; it should be null when the + background is a texture or translucent. When a device is able + to use accelerated drawing (thus setting state_accelerated), the + cache hint is ignored and always assumed to be transparent. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorBackgroundCacheHint=0x010102ab; + /** Default color of background imagery for floating components, ex. dialogs, popups, and cards. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorBackgroundFloating=0x010104e2; + /** The color applied to framework buttons in their normal state. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x0101042b; + /** The color applied to framework controls in their activated (ex. checked) state. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x0101042a; + /** The color applied to framework control highlights (ex. ripples, list selectors). +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x0101042c; + /** The color applied to framework controls in their normal state. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x01010429; + /** The color applied to the edge effect on scrolling containers. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorEdgeEffect=0x010104ce; + /** Default highlight color for items that are + focused. (Focused meaning cursor-based selection.) +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorFocusedHighlight=0x0101038f; + /** Default color of foreground imagery. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorForeground=0x01010030; + /** Default color of foreground imagery on an inverted background. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorForegroundInverse=0x01010206; + /** Default highlight color for items that are long-pressed. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorLongPressedHighlight=0x0101038e; + /** Default highlight color for items in multiple selection + mode. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorMultiSelectHighlight=0x01010391; + /** Default highlight color for items that are pressed. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPressedHighlight=0x0101038d; + /** The primary branding color for the app. By default, this is the color applied to the + action bar background. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x01010433; + /** Dark variant of the primary branding color. By default, this is the color applied to + the status bar (via statusBarColor) and navigation bar (via navigationBarColor). +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x01010434; + /** The maxmimum number of columns to create when automatically positioning children. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int columnCount=0x01010377; + /** Fraction of the animation duration used to delay the beginning of + the animation of each column. +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int columnDelay=0x010101cf; + /** When set to true, forces column boundaries to appear in the same order + as column indices. + The default is true. + See {@link android.widget.GridLayout#setColumnOrderPreserved(boolean)}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int columnOrderPreserved=0x01010378; + /** Specifies the fixed width for each column. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int columnWidth=0x01010117; + /** Commit icon shown in the query suggestion row +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x01010485; + /** Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}, + this is the new way to specify the largest screens an application is + compatible with. This attribute provides the maximum + "smallest screen width" (as per the -swNNNdp resource configuration) + that the application is designed for. If this value is smaller than + the "smallest screen width" of the device it is running on, the user + is offered to run it in a compatibility mode that emulates a + smaller screen and zooms it to fit the screen. Currently the compatibility mode only + emulates phone screens with a 320dp width, so compatibility mode is not applied if the + value for compatibleWidthLimitDp is larger than 320. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int compatibleWidthLimitDp=0x01010365; + /** Defines the hint displayed in the drop down menu. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int completionHint=0x01010172; + /** Defines the hint view displayed in the drop down menu. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int completionHintView=0x01010173; + /** Defines the number of characters that the user must type before + completion suggestions are displayed in a drop down menu. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int completionThreshold=0x01010174; + /** Specify one or more configuration changes that the activity will + handle itself. If not specified, the activity will be restarted + if any of these configuration changes happen in the system. Otherwise, + the activity will remain running and its + {@link android.app.Activity#onConfigurationChanged Activity.onConfigurationChanged} + method called with the new configuration. + +

Note that all of these configuration changes can impact the + resource values seen by the application, so you will generally need + to re-retrieve all resources (including view layouts, drawables, etc) + to correctly handle any configuration change. + +

These values must be kept in sync with those in + {@link android.content.pm.ActivityInfo} and + include/utils/ResourceTypes.h. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
mcc0x0001 The IMSI MCC has changed, that is a SIM has been detected and + updated the Mobile Country Code.
mnc0x0002 The IMSI MNC has changed, that is a SIM has been detected and + updated the Mobile Network Code.
locale0x0004 The locale has changed, that is the user has selected a new + language that text should be displayed in.
touchscreen0x0008 The touchscreen has changed. Should never normally happen.
keyboard0x0010 The keyboard type has changed, for example the user has plugged + in an external keyboard.
keyboardHidden0x0020 The keyboard or navigation accessibility has changed, for example + the user has slid the keyboard out to expose it. Note that + despite its name, this applied to any accessibility: keyboard + or navigation.
navigation0x0040 The navigation type has changed. Should never normally happen.
orientation0x0080 The screen orientation has changed, that is the user has + rotated the device.
screenLayout0x0100 The screen layout has changed. This might be caused by a + different display being activated.
uiMode0x0200 The global user interface mode has changed. For example, + going in or out of car mode, night mode changing, etc.
screenSize0x0400 The current available screen size has changed. If applications don't + target at least {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2} + then the activity will always handle this itself (the change + will not result in a restart). This represents a change in the + currently available size, so will change when the user switches + between landscape and portrait.
smallestScreenSize0x0800 The physical screen size has changed. If applications don't + target at least {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2} + then the activity will always handle this itself (the change + will not result in a restart). This represents a change in size + regardless of orientation, so will only change when the actual + physical screen size has changed such as switching to an external + display.
layoutDirection0x2000 The layout direction has changed. For example going from LTR to RTL.
fontScale0x40000000 The font scaling factor has changed, that is the user has + selected a new global font size.
+ */ + public static final int configChanges=0x0101001f; + /** A class name in the AppWidget's package to be launched to configure. + If not supplied, then no activity will be launched. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int configure=0x0101025d; + /** If true, the drawable's reported internal size will remain + constant as the state changes; the size is the maximum of all + of the states. If false, the size will vary based on the + current state. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int constantSize=0x01010196; + /** Identifier for the child that represents the drawer's content. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int content=0x0101025b; + /** The age associated with the content rating. The content of this rating is suitable for + people of this age or above. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentAgeHint=0x010104b9; + /** the authority of a content provider. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentAuthority=0x01010290; + /** Defines text that briefly describes content of the view. This property is used + primarily for accessibility. Since some views do not have textual + representation this attribute can be used for providing such. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentDescription=0x01010273; + /** Minimum inset for content views within a bar. Navigation buttons and + menu views are excepted. Only valid for some themes and configurations. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x01010454; + /** Minimum inset for content views within a bar. Navigation buttons and + menu views are excepted. Only valid for some themes and configurations. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x01010455; + /** Minimum inset for content views within a bar. Navigation buttons and + menu views are excepted. Only valid for some themes and configurations. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x01010456; + /** Minimum inset for content views within a bar. Navigation buttons and + menu views are excepted. Only valid for some themes and configurations. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x01010453; + /** Defines whether this view reacts to context click events. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contextClickable=0x010104e7; + /** The x coordinate of the first control point of the cubic Bezier +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int controlX1=0x010103fc; + /** The x coordinate of the second control point of the cubic Bezier +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int controlX2=0x010103fe; + /** The y coordinate of the first control point of the cubic Bezier +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int controlY1=0x010103fd; + /** The y coordinate of the second control point of the cubic Bezier +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int controlY2=0x010103ff; + /** The country code associated with the content rating system, which consists of two + uppercase letters that conform to the ISO 3166 standard. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int country=0x010104ba; + /** If true, the image will be cropped to fit within its padding. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cropToPadding=0x01010123; + /** Makes the cursor visible (the default) or invisible. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cursorVisible=0x01010152; + /** Specifies a layout for custom navigation. Overrides navigationMode. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x010102d2; + /** Account handles its own token storage and permissions. + Default to false + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int customTokens=0x0101033b; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cycles=0x010101d4; + /** Gap between dashes in the stroke. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dashGap=0x010101a7; + /** Length of a dash in the stroke. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dashWidth=0x010101a6; + /** The data URI to assign to the Intent, as per + {@link android.content.Intent#setData Intent.setData()}. +

Note: scheme and host name matching in the Android framework is + case-sensitive, unlike the formal RFC. As a result, + URIs here should always be normalized to use lower case letters + for these elements (as well as other proper Uri normalization).

+

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int data=0x0101002e; + /** The DatePicker dialog theme. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int datePickerDialogTheme=0x010104ac; + /** Defines the look of the widget. Prior to the L release, the only choice was + spinner. As of L, with the Material theme selected, the default layout is calendar, + but this attribute can be used to force spinner to be used instead. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
spinner1 Date picker with spinner controls to select the date.
calendar2 Date picker with calendar to select the date.
+ */ + public static final int datePickerMode=0x010104b3; + /** The DatePicker style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int datePickerStyle=0x0101035c; + /** The text appearance for the day numbers in the calendar grid. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dateTextAppearance=0x01010349; + /** The background color for the header's day of week. + {@deprecated No longer displayed.} +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @Deprecated + public static final int dayOfWeekBackground=0x01010494; + /** The text color for the header's day of week. + {@deprecated No longer displayed.} +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + @Deprecated + public static final int dayOfWeekTextAppearance=0x01010495; + /** Flag indicating whether the application can be debugged, even when + running on a device that is running in user mode. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int debuggable=0x0101000f; + /** The default value for the preference, which will be set either if persistence + is off or persistence is on and the preference is not found in the persistent + storage. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a boolean value, either "true" or "false". +

May be a floating point value, such as "1.2". + */ + public static final int defaultValue=0x010101ed; + /** Fraction of the animation duration used to delay the beginning of + the animation of each child. +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int delay=0x010101cc; + /** The key of another Preference that this Preference will depend on. If the other + Preference is not set or is off, this Preference will be disabled. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dependency=0x010101ec; + /** Defines the relationship between the ViewGroup and its descendants + when looking for a View to take focus. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
beforeDescendants0 The ViewGroup will get focus before any of its descendants.
afterDescendants1 The ViewGroup will get focus only if none of its descendants want it.
blocksDescendants2 The ViewGroup will block its descendants from receiving focus.
+ */ + public static final int descendantFocusability=0x010100f1; + /** Descriptive text for the associated data. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int description=0x01010020; + /** Special option for window animations: if this window is on top + of a wallpaper, don't animate the wallpaper with it. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int detachWallpaper=0x010102a6; + /** Column in data table that contains details for this data. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int detailColumn=0x010102a3; + /** Flag indicating that detail should be built from SocialProvider. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int detailSocialSummary=0x010102a4; + /** Background that can be used behind parts of a UI that provide + details on data the user is selecting. For example, this is + the background element of PreferenceActivity's embedded + preference fragment. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int detailsElementBackground=0x0101034e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dial=0x01010102; + public static final int dialogCustomTitleDecorLayout=0x0116002b; + /** The icon for the dialog. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogIcon=0x010101f4; + /** A layout to be used as the content View for the dialog. By default, this shouldn't + be needed. If a custom DialogPreference is required, this should be set. For example, + the EditTextPreference uses a layout with an EditText as this attribute. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogLayout=0x010101f7; + /** The message in the dialog. If a dialogLayout is provided and contains + a TextView with ID android:id/message, this message will be placed in there. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogMessage=0x010101f3; + /** Default style for DialogPreference. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogPreferenceStyle=0x01010091; + /** Preferred padding for dialog content. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x010104d3; + /** Theme to use for dialogs spawned from this theme. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x01010308; + /** The title in the dialog. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogTitle=0x010101f2; + public static final int dialogTitleDecorLayout=0x0116002c; + public static final int dialogTitleIconsDecorLayout=0x0116002a; + /** If set, specifies that this TextView has a numeric input method + and that these specific characters are the ones that it will + accept. + If this is set, numeric is implied to be true. + The default is false. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int digits=0x01010166; + /** Direction of the animation in the grid. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
left_to_right0x0 Animates columns from left to right.
right_to_left0x1 Animates columns from right to left.
top_to_bottom0x0 Animates rows from top to bottom.
bottom_to_top0x2 Animates rows from bottom to top.
+ */ + public static final int direction=0x010101d1; + /** @deprecated Removed. + Reference to an array resource that be used to announce the directions with targets around the circle. + {@deprecated Removed.} +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + @Deprecated + public static final int directionDescriptions=0x010103a1; + /** Priority of the rows and columns. When the priority is none, + both rows and columns have the same priority. When the priority is + column, the animations will be applied on the columns first. The same + goes for rows. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0 Rows and columns are animated at the same time.
column1 Columns are animated first.
row2 Rows are animated first.
+ */ + public static final int directionPriority=0x010101d2; + /** The state (true for on, or false for off) that causes dependents to be disabled. By default, + dependents will be disabled when this is unchecked, so the value of this preference is false. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int disableDependentsState=0x010101f1; + /** Default disabled alpha for widgets that set enabled/disabled alpha programmatically. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int disabledAlpha=0x01010033; + /** Options affecting how the action bar is displayed. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x010102d0; + /** Enables or disables dithering of the bitmap if the bitmap does not have the + same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with + an RGB 565 screen). +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dither=0x0101011c; + /** Drawable or color to draw between list items. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int divider=0x01010129; + /** Height of the divider. Will use the intrinsic height of the divider if this + is not specified. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerHeight=0x0101012a; + /** Drawable to use for generic horizontal dividers. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x0101032c; + /** Size of padding on either end of a divider. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x0101032a; + /** Drawable to use for generic vertical dividers. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x0101030a; + /** This attribute specifies that an activity shall become the root activity of a + new task each time it is launched. Using this attribute permits the user to + have multiple documents from the same applications appear in the recent tasks list. + +

Such a document is any kind of item for which an application may want to + maintain multiple simultaneous instances. Examples might be text files, web + pages, spreadsheets, or emails. Each such document will be in a separate + task in the recent taskss list. + +

This attribute is equivalent to adding the flag {@link + android.content.Intent#FLAG_ACTIVITY_NEW_DOCUMENT} to every Intent used to launch + the activity. + +

The documentLaunchMode attribute may be assigned one of four values, "none", + "intoExisting", "always" and "never", described in detail below. For values other than + none and never the activity must be defined with + {@link android.R.attr#launchMode} standard. + If this attribute is not specified, none will be used. + Note that none can be overridden at run time if the Intent used + to launch it contains the flag {@link android.content.Intent#FLAG_ACTIVITY_NEW_DOCUMENT + Intent.FLAG_ACTIVITY_NEW_DOCUMENT}. + Similarly intoExisting will be overridden by the flag + {@link android.content.Intent#FLAG_ACTIVITY_NEW_DOCUMENT + Intent.FLAG_ACTIVITY_NEW_DOCUMENT} combined with + {@link android.content.Intent#FLAG_ACTIVITY_MULTIPLE_TASK + Intent.FLAG_ACTIVITY_MULTIPLE_TASK}. If the value of + documentLaunchModes is never then any use of + {@link android.content.Intent#FLAG_ACTIVITY_NEW_DOCUMENT + Intent.FLAG_ACTIVITY_NEW_DOCUMENT} to launch this activity will be ignored. +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0 The default mode, which will create a new task only when + {@link android.content.Intent#FLAG_ACTIVITY_NEW_TASK + Intent.FLAG_ACTIVITY_NEW_TASK} is set.
intoExisting1 All tasks will be searched for one whose base Intent's ComponentName and + data URI match those of the launching Intent. If such a task is found + that task will be cleared and restarted with the root activity receiving a call + to {@link android.app.Activity#onNewIntent Activity.onNewIntent}. If no + such task is found a new task will be created. +

This is the equivalent of launching an activity with {@link + android.content.Intent#FLAG_ACTIVITY_NEW_DOCUMENT Intent.FLAG_ACTIVITY_NEW_DOCUMENT} + set and without {@link android.content.Intent#FLAG_ACTIVITY_MULTIPLE_TASK + Intent.FLAG_ACTIVITY_MULTIPLE_TASK} set.

always2 A new task rooted at this activity will be created. This will happen whether or + not there is an existing task whose ComponentName and data URI match + that of the launcing intent This is the equivalent of launching an activity + with {@link + android.content.Intent#FLAG_ACTIVITY_NEW_DOCUMENT Intent.FLAG_ACTIVITY_NEW_DOCUMENT} + and {@link android.content.Intent#FLAG_ACTIVITY_MULTIPLE_TASK + Intent.FLAG_ACTIVITY_MULTIPLE_TASK} both set.
never3 This activity will not be launched into a new document even if the Intent contains + {@link android.content.Intent#FLAG_ACTIVITY_NEW_DOCUMENT + Intent.FLAG_ACTIVITY_NEW_DOCUMENT}. This gives the activity writer ultimate + control over how their activity is used. Note that applications prior to api + 21 will default to documentLaunchMode="none" so only activities that explicitly + opt out with "never" may do so.
+ */ + public static final int documentLaunchMode=0x01010445; + /** When set to true, the selector will be drawn over the selected item. + Otherwise the selector is drawn behind the selected item. The default + value is false. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawSelectorOnTop=0x010100fc; + /** Reference to a drawable resource to use for the frame. If not + given, the drawable must be defined by the first child tag. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawable=0x01010199; + /** The drawable to be drawn below the text. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int drawableBottom=0x0101016e; + /** The drawable to be drawn to the end of the text. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int drawableEnd=0x01010393; + /** The drawable to be drawn to the left of the text. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int drawableLeft=0x0101016f; + /** The padding between the drawables and the text. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawablePadding=0x01010171; + /** The drawable to be drawn to the right of the text. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int drawableRight=0x01010170; + /** The drawable to be drawn to the start of the text. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int drawableStart=0x01010392; + /** Tint to apply to the compound (left, top, etc.) drawables. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableTint=0x010104d6; + /** Blending mode used to apply the compound (left, top, etc.) drawables tint. +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+ */ + public static final int drawableTintMode=0x010104d7; + /** The drawable to be drawn above the text. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int drawableTop=0x0101016d; + /** Defines the quality of translucent drawing caches. This property is used + only when the drawing cache is enabled and translucent. The default value is auto. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto0 Lets the framework decide what quality level should be used + for the drawing cache.
low1 Low quality. When set to low quality, the drawing cache uses a lower color + depth, thus losing precision in rendering gradients, but uses less memory.
high2 High quality. When set to high quality, the drawing cache uses a higher + color depth but uses more memory.
+ */ + public static final int drawingCacheQuality=0x010100e8; + /** View to anchor the auto-complete dropdown to. If not specified, the text view itself + is used. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownAnchor=0x01010263; + /** Specifies the basic height of the dropdown. Its value may + be a dimension (such as "12dip") for a constant height, + fill_parent or match_parent to fill the height of the + screen, or wrap_content to match the height of + the content of the drop down. +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
fill_parent-1 The dropdown should fit the height of the screen. + This constant is deprecated starting from API Level 8 and + is replaced by {@code match_parent}.
match_parent-1 The dropdown should fit the height of the screen. + Introduced in API Level 8.
wrap_content-2 The dropdown should fit the height of the content.
+ */ + public static final int dropDownHeight=0x01010283; + /** Default style for drop down hints. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownHintAppearance=0x01010088; + /** Amount of pixels by which the drop down should be offset horizontally. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropDownHorizontalOffset=0x010102ac; + /** Default style for drop down items. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownItemStyle=0x01010086; + /** Default ListView style for drop downs. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x0101006d; + /** Selector in a drop down list. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int dropDownSelector=0x01010175; + /** Default dropdown Spinner style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownSpinnerStyle=0x010102d6; + /** Amount of pixels by which the drop down should be offset vertically. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropDownVerticalOffset=0x010102ad; + /** Specifies the basic width of the dropdown. Its value may + be a dimension (such as "12dip") for a constant width, + fill_parent or match_parent to match the width of the + screen, or wrap_content to match the width of + the anchored view. +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
fill_parent-1 The dropdown should fill the width of the screen. + This constant is deprecated starting from API Level 8 and + is replaced by {@code match_parent}.
match_parent-1 The dropdown should fit the width of the screen. + Introduced in API Level 8.
wrap_content-2 The dropdown should fit the width of its anchor.
+ */ + public static final int dropDownWidth=0x01010262; + /** When this attribute is set to true, the view gets its drawable state + (focused, pressed, etc.) from its direct parent rather than from itself. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int duplicateParentState=0x010100e9; + /** Amount of time (in milliseconds) to display this frame. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int duration=0x01010198; + /** EditText background drawable. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x01010352; + /** EditText text foreground color. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x01010351; + /** Default style for EditTextPreference. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextPreferenceStyle=0x01010092; + /** Default EditText style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x0101006e; + /** If set, specifies that this TextView has an input method. + It will be a textual one unless it has otherwise been specified. + For TextView, this is false by default. For EditText, it is + true by default. + {@deprecated Use inputType instead.} +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @Deprecated + public static final int editable=0x0101016b; + /** Reference to an + {@link android.R.styleable#InputExtras <input-extras>} + XML resource containing additional data to + supply to an input method, which is private to the implementation + of the input method. This simply fills in + the {@link android.view.inputmethod.EditorInfo#extras + EditorInfo.extras} field when the input + method is connected. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editorExtras=0x01010224; + /** Elegant text height, especially for less compacted complex script text. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elegantTextHeight=0x0101045d; + /** base z depth of the view +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x01010440; + /** Where to ellipsize text. +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
start1
middle2
end3
marquee4
+ */ + public static final int ellipsize=0x010100ab; + /** Makes the TextView be exactly this many ems wide. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ems=0x01010158; + /** Specifies whether the widget is enabled. The interpretation of the enabled state varies by subclass. + For example, a non-enabled EditText prevents the user from editing the contained text, and + a non-enabled Button prevents the user from tapping the button. + The appearance of enabled and non-enabled widgets may differ, if the drawables referenced + from evaluating state_enabled differ. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int enabled=0x0101000e; + /** End inset to apply to the layer. Overrides {@code left} or + {@code right} depending on layout direction. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int end=0x010104dc; + /** End color of the gradient. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int endColor=0x0101019e; + /** {@deprecated Use maxDate instead.} + The last year (inclusive), for example "2010". + {@deprecated Use maxDate instead.} +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @Deprecated + public static final int endYear=0x0101017d; + /** Amount of time (in milliseconds) to fade in a new state drawable. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int enterFadeDuration=0x0101030c; + /** Reference to an array resource that will populate a list/adapter. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int entries=0x010100b2; + /** The array to find the value to save for a preference when an entry from + entries is selected. If a user clicks on the second item in entries, the + second item in this array will be saved to the preference. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int entryValues=0x010101f8; + /** Defines whether the overlay should intercept the motion events when a gesture + is recognized. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int eventsInterceptionEnabled=0x0101027d; + /** The fully-qualified name of the Class to exclude from this transition. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int excludeClass=0x01010442; + /** Indicates that an Activity should be excluded from the list of + recently launched activities. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int excludeFromRecents=0x01010017; + /** The id of a target to exclude from this transition. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int excludeId=0x01010441; + /** The transitionName of the target to exclude from this transition. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int excludeName=0x0101044e; + /** Amount of time (in milliseconds) to fade out an old state drawable. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int exitFadeDuration=0x0101030d; + /** The preferred left bound for an expandable list child's indicator. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandableListPreferredChildIndicatorLeft=0x01010052; + /** The preferred right bound for an expandable list child's indicator. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandableListPreferredChildIndicatorRight=0x01010053; + /** The preferred left padding for an expandable list item that is a child. + If this is not provided, it defaults to the expandableListPreferredItemPaddingLeft. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandableListPreferredChildPaddingLeft=0x0101004f; + /** The preferred left bound for an expandable list item's indicator. For a child-specific + indicator, use expandableListPreferredChildIndicatorLeft. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandableListPreferredItemIndicatorLeft=0x01010050; + /** The preferred right bound for an expandable list item's indicator. For a child-specific + indicator, use expandableListPreferredChildIndicatorRight. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandableListPreferredItemIndicatorRight=0x01010051; + /** The preferred left padding for an expandable list item (for child-specific layouts, + use expandableListPreferredChildPaddingLeft). This takes into account + the indicator that will be shown to next to the item. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandableListPreferredItemPaddingLeft=0x0101004e; + /** Default ExpandableListView style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandableListViewStyle=0x0101006f; + /** ExpandableListView with white background. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandableListViewWhiteStyle=0x010102b6; + /** Flag indicating whether the given application component is available + to other applications. If false, it can only be accessed by + applications with its same user id (which usually means only by + code in its own package). If true, it can be invoked by external + entities, though which ones can do so may be controlled through + permissions. The default value is false for activity, receiver, + and service components that do not specify any intent filters; it + is true for activity, receiver, and service components that do + have intent filters (implying they expect to be invoked by others + who do not know their particular component name) and for all + content providers. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int exported=0x01010010; + public static final int externalRouteEnabledDrawable=0x0116009d; + /** This is the amount by which to multiply the tension. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int extraTension=0x0101026b; + /** When set installer will extract native libraries. If set to false + libraries in the apk must be stored and page-aligned. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int extractNativeLibs=0x010104ea; + /** This is the amount of deceleration to add when easing in. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int factor=0x010101d3; + /** Duration, in milliseconds, of the fade out effect after the user is done + drawing a gesture. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fadeDuration=0x01010278; + /** Defines whether the gesture will automatically fade out after being recognized. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fadeEnabled=0x0101027e; + /** Time, in milliseconds, to wait before the gesture fades out after the user + is done drawing it. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fadeOffset=0x01010277; + /** Defines whether to fade out scrollbars when they are not in use. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fadeScrollbars=0x010102aa; + /** This attribute is deprecated and will be ignored as of + API level 14 ({@link android.os.Build.VERSION_CODES#ICE_CREAM_SANDWICH}). + Using fading edges may introduce noticeable performance + degradations and should be used only when required by the application's + visual design. To request fading edges with API level 14 and above, + use the android:requiresFadingEdge attribute instead. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0x00000000 No edge is faded.
horizontal0x00001000 Fades horizontal edges only.
vertical0x00002000 Fades vertical edges only.
+ */ + public static final int fadingEdge=0x010100df; + /** Defines the length of the fading edges. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fadingEdgeLength=0x010100e0; + /** Equivalent to transitionVisibilityMode, fadingMode works only + with the Fade transition. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
fade_in1 Fade will only fade appearing items in.
fade_out2 Fade will only fade disappearing items out.
fade_in_out3 Fade will fade appearing items in and disappearing items out.
+ */ + public static final int fadingMode=0x010103e1; + /** When set to true, the list will always show the fast scroll interface. + This setting implies fastScrollEnabled. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fastScrollAlwaysVisible=0x01010335; + /** Enables the fast scroll thumb that can be dragged to quickly scroll through + the list. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fastScrollEnabled=0x01010226; + /** Position of the fast scroll index overlay window. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
floating0
atThumb1
aboveThumb2
+ */ + public static final int fastScrollOverlayPosition=0x0101033a; + /** Drawable to use as the fast scroll index preview window background + when shown on the left. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollPreviewBackgroundLeft=0x01010337; + /** Drawable to use as the fast scroll index preview window background + when shown on the right. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollPreviewBackgroundRight=0x01010338; + /** Specifies the style of the fast scroll decorations. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollStyle=0x010103f7; + /** Text color for the fast scroll index overlay. Make sure it + plays nicely with fastScrollPreviewBackground[Left|Right]. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fastScrollTextColor=0x01010359; + /** Drawable to use as the fast scroll thumb. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollThumbDrawable=0x01010336; + /** Drawable to use as the track for the fast scroll thumb. + This may be null. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fastScrollTrackDrawable=0x01010339; + /** When set to true, the animation transformation is applied after the animation is + over. The default value is false. If fillEnabled is not set to true and the + animation is not set on a View, fillAfter is assumed to be true. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fillAfter=0x010101bd; + /** The alpha of the path fill, as a value between 0 (completely transparent) + and 1 (completely opaque) +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fillAlpha=0x010104cc; + /** When set to true or when fillEnabled is not set to true, the animation transformation + is applied before the animation has started. The default value is true. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fillBefore=0x010101bc; + /** The color to fill the path if not defined implies no fill +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fillColor=0x01010404; + /** When set to true, the value of fillBefore is taken into account. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fillEnabled=0x0101024f; + /** Defines whether the scrollview should stretch its content to fill the viewport. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fillViewport=0x0101017a; + /** Enables or disables bitmap filtering. Filtering is used when the bitmap is + shrunk or stretched to smooth its apperance. Default value is true. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int filter=0x0101011b; + /** Specifies whether to filter touches when the view's window is obscured by + another visible window. When set to true, the view will not receive touches + whenever a toast, dialog or other window appears above the view's window. + Refer to the {@link android.view.View} security documentation for more details. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int filterTouchesWhenObscured=0x010102c4; + /** Icon that should be used to indicate that an app is waiting for a fingerprint scan. + This should be used whenever an app is requesting the user to place a finger on the + fingerprint sensor. It can be combined with other drawables such as colored circles, so + the appearance matches the branding of the app requesting the fingerprint scan. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fingerprintAuthDrawable=0x010104e8; + /** Specify whether an activity should be finished when a "close system + windows" request has been made. This happens, for example, when + the home key is pressed, when the device is locked, when a system + dialog showing recent applications is displayed, etc. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int finishOnCloseSystemDialogs=0x010102a7; + /** Specify whether an activity should be finished when its task is + brought to the foreground by relaunching from the home screen. + +

If both this option and {@link android.R.attr#allowTaskReparenting} are + specified, the finish trumps the affinity: the affinity will be + ignored and the activity simply finished. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int finishOnTaskLaunch=0x01010014; + /** The first day of week according to {@link java.util.Calendar}. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int firstDayOfWeek=0x0101033d; + /** Boolean internal attribute to adjust view layout based on + system windows such as the status bar. + If true, adjusts the padding of this view to leave space for the system windows. + Will only take effect if this view is in a non-embedded activity. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fitsSystemWindows=0x010100dd; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int flipInterval=0x01010179; + /** Boolean that controls whether a view can take focus. By default the user can not + move focus to a view; by setting this attribute to true the view is + allowed to take focus. This value does not impact the behavior of + directly calling {@link android.view.View#requestFocus}, which will + always request focus regardless of this view. It only impacts where + focus navigation will try to move focus. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int focusable=0x010100da; + /** Boolean that controls whether a view can take focus while in touch mode. + If this is true for a view, that view can gain focus when clicked on, and can keep + focus if another view is clicked on that doesn't have this attribute set to true. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int focusableInTouchMode=0x010100db; + /** @deprecated The color for the dates of the focused month. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + @Deprecated + public static final int focusedMonthDateColor=0x01010343; + /** Default font family. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontFamily=0x010103ac; + /** Font feature settings. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fontFeatureSettings=0x010104b7; + /** When set to false, the ListView will not draw the divider before each footer view. + The default value is true. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int footerDividersEnabled=0x0101022f; + /** Defines the drawable to draw over the content. This can be used as an overlay. + The foreground drawable participates in the padding of the content if the gravity + is set to fill. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int foreground=0x01010109; + /** Defines the gravity to apply to the foreground drawable. The gravity defaults + to fill. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
+ */ + public static final int foregroundGravity=0x01010200; + /** Tint to apply to the foreground. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int foregroundTint=0x0101046d; + /** Blending mode used to apply the foreground tint. +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+ */ + public static final int foregroundTintMode=0x0101046e; + /** Format string: if specified, the Chronometer will display this + string, with the first "%s" replaced by the current timer value + in "MM:SS" or "H:MM:SS" form. + If no format string is specified, the Chronometer will simply display + "MM:SS" or "H:MM:SS". +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int format=0x01010105; + /** Specifies the formatting pattern used to show the time and/or date + in 12-hour mode. Please refer to {@link android.text.format.DateFormat} + for a complete description of accepted formatting patterns. + The default pattern is a locale-appropriate equivalent of "h:mm a". +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int format12Hour=0x010103ca; + /** Specifies the formatting pattern used to show the time and/or date + in 24-hour mode. Please refer to {@link android.text.format.DateFormat} + for a complete description of accepted formatting patterns. + The default pattern is a locale-appropriate equivalent of "H:mm". +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int format24Hour=0x010103cb; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fraction=0x010104d8; + /** The fragment that is displayed when the user selects this item. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fragment=0x010102e3; + /** Sets whether the enter and exit transitions should overlap when transitioning + forward. + Corresponds to {@link android.app.Fragment#setAllowEnterTransitionOverlap( + boolean)} +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fragmentAllowEnterTransitionOverlap=0x010104c8; + /** Sets whether the enter and exit transitions should overlap when transitioning + because of popping the back stack. + Corresponds to {@link android.app.Fragment#setAllowReturnTransitionOverlap( + boolean)} +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fragmentAllowReturnTransitionOverlap=0x010104c9; + public static final int fragmentBreadCrumbsStyle=0x0116001d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fragmentCloseEnterAnimation=0x010102e7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fragmentCloseExitAnimation=0x010102e8; + /** The Transition that will be used to move Views into the initial scene. + Corresponds to {@link android.app.Fragment#setEnterTransition( + android.transition.Transition)} +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fragmentEnterTransition=0x010104c3; + /** The Transition that will be used to move Views out of the scene when the + fragment is removed, hidden, or detached when not popping the back stack. + Corresponds to {@link android.app.Fragment#setExitTransition( + android.transition.Transition)} +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fragmentExitTransition=0x010104c2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fragmentFadeEnterAnimation=0x010102e9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fragmentFadeExitAnimation=0x010102ea; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fragmentOpenEnterAnimation=0x010102e5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fragmentOpenExitAnimation=0x010102e6; + /** The Transition that will be used to move Views in to the scene when returning due + to popping a back stack. + Corresponds to {@link android.app.Fragment#setReenterTransition( + android.transition.Transition)} +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fragmentReenterTransition=0x010104c7; + /** The Transition that will be used to move Views out of the scene when the Fragment is + preparing to be removed, hidden, or detached because of popping the back stack. + Corresponds to {@link android.app.Fragment#setReturnTransition( + android.transition.Transition)} +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fragmentReturnTransition=0x010104c5; + /** The Transition that will be used for shared elements transferred into the content + Scene. + Corresponds to {@link android.app.Fragment#setSharedElementEnterTransition( + android.transition.Transition)} +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fragmentSharedElementEnterTransition=0x010104c4; + /** The Transition that will be used for shared elements transferred back during a + pop of the back stack. This Transition acts in the leaving Fragment. + Corresponds to {@link android.app.Fragment#setSharedElementReturnTransition( + android.transition.Transition)} +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fragmentSharedElementReturnTransition=0x010104c6; + /** If set, the text view will include its current complete text + inside of its frozen icicle in addition to meta-data such as + the current cursor position. By default this is disabled; + it can be useful when the contents of a text view is not stored + in a persistent place such as a content provider. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int freezesText=0x0101016c; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fromAlpha=0x010101ca; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fromDegrees=0x010101b3; + /** Keyframe identifier for the starting state. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fromId=0x0101044a; + /** The originating scene in this scene change. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int fromScene=0x010103dd; + /**

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fromXDelta=0x010101c6; + /**

May be a floating point value, such as "1.2". +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fromXScale=0x010101c2; + /**

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fromYDelta=0x010101c8; + /**

May be a floating point value, such as "1.2". +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fromYScale=0x010101c4; + /** Applications will set this in their manifest to opt-in to or out of full app data back-up + and restore. Alternatively they can set it to an xml resource within their app that will + be parsed by the BackupAgent to selectively backup files indicated within that xml. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int fullBackupContent=0x010104eb; + /** Indicates that even though the application provides a BackupAgent, + only full-data streaming backup operations are to be performed to save the app's + data. This lets the app rely on full-data backups while still participating in + the backup and restore process via the BackupAgent's full-data backup APIs. + When this attribute is true the app's BackupAgent overrides of + the onBackup() and onRestore() callbacks can be empty stubs. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int fullBackupOnly=0x01010473; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int fullBright=0x010100ca; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int fullDark=0x010100c6; + /** Flag indicating that an Instrumentation class should be run as a + functional test. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int functionalTest=0x01010023; + /** The preferred background for gallery items. This should be set + as the background of any Views you provide from the Adapter. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int galleryItemBackground=0x0101004c; + /** Default Gallery style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int galleryStyle=0x01010070; + /** Color used to draw a gesture. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gestureColor=0x01010275; + public static final int gestureOverlayViewStyle=0x0116001b; + /** Minimum curve angle a stroke must contain before it is recognized as a gesture. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gestureStrokeAngleThreshold=0x0101027c; + /** Minimum length of a stroke before it is recognized as a gesture. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gestureStrokeLengthThreshold=0x0101027a; + /** Squareness threshold of a stroke before it is recognized as a gesture. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gestureStrokeSquarenessThreshold=0x0101027b; + /** Defines the type of strokes that define a gesture. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
single0 A gesture is made of only one stroke.
multiple1 A gesture is made of multiple strokes.
+ */ + public static final int gestureStrokeType=0x01010279; + /** Width of the stroke used to draw the gesture. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gestureStrokeWidth=0x01010274; + /** The GLES driver version number needed by an application. + The higher 16 bits represent the major number and the lower 16 bits + represent the minor number. For example for GL 1.2 referring to + 0x00000102, the actual value should be set as 0x00010002. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int glEsVersion=0x01010281; + /** Go button icon +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x01010482; + /** Radius of the gradient, used only with radial gradient. +

May be a floating point value, such as "1.2". +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gradientRadius=0x010101a4; + /** If true, the {@link android.content.Context#grantUriPermission + Context.grantUriPermission} or corresponding Intent flags can + be used to allow others to access specific URIs in the content + provider, even if they do not have an explicit read or write + permission. If you are supporting this feature, you must be + sure to call {@link android.content.Context#revokeUriPermission + Context.revokeUriPermission} when URIs are deleted from your + provider. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int grantUriPermissions=0x0101001b; + /** Specifies how an object should position its content, on both the X and Y axes, + within its own bounds. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+ */ + public static final int gravity=0x010100af; + /** Default GridView style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int gridViewStyle=0x01010071; + /** Indicator shown beside the group View. This can be a stateful Drawable. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int groupIndicator=0x0101010b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hand_hour=0x01010103; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hand_minute=0x01010104; + /** Identifier for the child that represents the drawer's handle. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int handle=0x0101025a; + /** Flag indicating that an Instrumentation class wants to take care + of starting/stopping profiling itself, rather than relying on + the default behavior of profiling the complete time it is running. + This allows it to target profiling data at a specific set of + operations. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int handleProfiling=0x01010022; + /** Boolean that controls whether a view should have haptic feedback + enabled for events such as long presses. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hapticFeedbackEnabled=0x0101025e; + /**

Flag indicating whether the application's rendering should be hardware + accelerated if possible. This flag is turned on by default for applications + that are targeting {@link android.os.Build.VERSION_CODES#ICE_CREAM_SANDWICH} + or later.

+

This flag can be set on the application and any activity declared + in the manifest. When enabled for the application, each activity is + automatically assumed to be hardware accelerated. This flag can be + overridden in the activity tags, either turning it off (if on for the + application) or on (if off for the application.)

+

When this flag is turned on for an activity (either directly or via + the application tag), every window created from the activity, including + the activity's own window, will be hardware accelerated, if possible.

+

Please refer to the documentation of + {@link android.view.WindowManager.LayoutParams#FLAG_HARDWARE_ACCELERATED} + for more information on how to control this flag programmatically.

+

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hardwareAccelerated=0x010102d3; + /** Indicate whether this application contains code. If set to false, + there is no code associated with it and thus the system will not + try to load its code when launching components. The default is true + for normal behavior. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hasCode=0x0101000c; + /** The text appearance for the AM/PM header. + @deprecated Use headerTextColor instead. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + @Deprecated + public static final int headerAmPmTextAppearance=0x010104a0; + /** Default background for the menu header. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int headerBackground=0x0101012f; + /** The text appearance for the day of month (ex. 28) in the selected date header. + {@deprecated Use headerTextColor instead.} +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + @Deprecated + public static final int headerDayOfMonthTextAppearance=0x01010497; + /** When set to false, the ListView will not draw the divider after each header view. + The default value is true. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int headerDividersEnabled=0x0101022e; + /** The text appearance for the month (ex. May) in the selected date header. + {@deprecated Use headerTextColor instead.} +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + @Deprecated + public static final int headerMonthTextAppearance=0x01010496; + /** The text appearance for the time header. + @deprecated Use headerTextColor instead. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + @Deprecated + public static final int headerTimeTextAppearance=0x0101049f; + /** The text appearance for the year (ex. 2014) in the selected date header. + {@deprecated Use headerTextColor instead.} +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + @Deprecated + public static final int headerYearTextAppearance=0x01010498; + /** Makes the TextView be exactly this many pixels tall. + You could get the same effect by specifying this number in the + layout parameters. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x01010155; + /** Set true to hide the action bar on a vertical nested scroll of content. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x01010443; + /** Hint text to display when the text is empty. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hint=0x01010150; + /** Specifies a drawable to use for the 'home as up' indicator. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x0101030b; + /** Specifies a layout to use for the "home" section of the action bar. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x0101031d; + /** Default horizontal divider between rows of menu items. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int horizontalDivider=0x0101012d; + /** Default horizontal gap between keys. +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int horizontalGap=0x0101023f; + /** Default HorizontalScrollView style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int horizontalScrollViewStyle=0x01010353; + /** Defines the default horizontal spacing between columns. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int horizontalSpacing=0x01010114; + /** Specify a URI authority host that is handled, as per + {@link android.content.IntentFilter#addDataAuthority + IntentFilter.addDataAuthority()}. +

Note: host name matching in the Android framework is + case-sensitive, unlike the formal RFC. As a result, + host names here should always use lower case letters.

+

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int host=0x01010028; + /** Frequency of automatic hyphenation. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0 No hyphenation.
normal1 Less frequent hyphenation, useful for informal use cases, such + as chat messages.
full2 Standard amount of hyphenation, useful for running text and for + screens with limited space for text.
+ */ + public static final int hyphenationFrequency=0x010104de; + /** A Drawable resource providing a graphical representation of its + associated item. Use with the + application tag (to supply a default icon for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific icon for that component). It may also be + used with the intent-filter tag to supply an icon to show to the + user when an activity is being selected based on a particular Intent. + +

The given icon will be used to display to the user a graphical + representation of its associated component; for example, as the icon + for main activity that is displayed in the launcher. This must be + a reference to a Drawable resource containing the image definition. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x01010002; + /** The icon to show in the popup preview. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int iconPreview=0x01010249; + /** The default state of the SearchView. If true, it will be iconified when not in + use and expanded when clicked. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x010102fa; + /** Supply an identifier name for this view, to later retrieve it + with {@link android.view.View#findViewById View.findViewById()} or + {@link android.app.Activity#findViewById Activity.findViewById()}. + This must be a + resource reference; typically you set this using the + @+ syntax to create a new ID resources. + For example: android:id="@+id/my_id" which + allows you to later retrieve the view + with findViewById(R.id.my_id). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int id=0x010100d0; + /** Indicates what view should not be affected by gravity. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ignoreGravity=0x010101ff; + /** The style resource to use for an ImageButton. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageButtonStyle=0x01010072; + /** The style resource to use for an ImageButton that is an image well. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageWellStyle=0x01010073; + /** Supply a value for + {@link android.view.inputmethod.EditorInfo#actionId EditorInfo.actionId} + used when an input method is connected to the text view. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int imeActionId=0x01010266; + /** Supply a value for + {@link android.view.inputmethod.EditorInfo#actionLabel EditorInfo.actionLabel} + used when an input method is connected to the text view. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int imeActionLabel=0x01010265; + /** Animation to use when showing the fullscreen extract UI after + it had previously been hidden. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imeExtractEnterAnimation=0x01010268; + /** Animation to use when hiding the fullscreen extract UI after + it had previously been shown. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imeExtractExitAnimation=0x01010269; + /** Background to use for entire input method when it is being + shown in fullscreen mode with the extract view, to ensure + that it completely covers the application. This allows, + for example, the candidate view to be hidden + while in fullscreen mode without having the application show through + behind it. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int imeFullscreenBackground=0x0101022c; + /** Additional features you can enable in an IME associated with an editor + to improve the integration with your application. The constants + here correspond to those defined by + {@link android.view.inputmethod.EditorInfo#imeOptions}. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + + + +
ConstantValueDescription
normal0x00000000 There are no special semantics associated with this editor.
actionUnspecified0x00000000 There is no specific action associated with this editor, let the + editor come up with its own if it can. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_NULL}.
actionNone0x00000001 This editor has no action associated with it. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_NONE}.
actionGo0x00000002 The action key performs a "go" + operation to take the user to the target of the text they typed. + Typically used, for example, when entering a URL. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_GO}.
actionSearch0x00000003 The action key performs a "search" + operation, taking the user to the results of searching for the text + the have typed (in whatever context is appropriate). + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEARCH}.
actionSend0x00000004 The action key performs a "send" + operation, delivering the text to its target. This is typically used + when composing a message. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEND}.
actionNext0x00000005 The action key performs a "next" + operation, taking the user to the next field that will accept text. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_NEXT}.
actionDone0x00000006 The action key performs a "done" + operation, closing the soft input method. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_DONE}.
actionPrevious0x00000007 The action key performs a "previous" + operation, taking the user to the previous field that will accept text. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_PREVIOUS}.
flagNoFullscreen0x2000000 Used to request that the IME never go + into fullscreen mode. Applications need to be aware that the flag is not + a guarantee, and not all IMEs will respect it. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}.

flagNavigatePrevious0x4000000 Like flagNavigateNext, but + specifies there is something interesting that a backward navigation + can focus on. If the user selects the IME's facility to backward + navigate, this will show up in the application as an actionPrevious + at {@link android.view.inputmethod.InputConnection#performEditorAction(int) + InputConnection.performEditorAction(int)}. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}.

flagNavigateNext0x8000000 Used to specify that there is something + interesting that a forward navigation can focus on. This is like using + actionNext, except allows the IME to be multiline (with + an enter key) as well as provide forward navigation. Note that some + IMEs may not be able to do this, especially when running on a small + screen where there is little space. In that case it does not need to + present a UI for this option. Like actionNext, if the + user selects the IME's facility to forward navigate, this will show up + in the application at + {@link android.view.inputmethod.InputConnection#performEditorAction(int) + InputConnection.performEditorAction(int)}. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NAVIGATE_NEXT}.

flagNoExtractUi0x10000000 Used to specify that the IME does not need + to show its extracted text UI. For input methods that may be fullscreen, + often when in landscape mode, this allows them to be smaller and let part + of the application be shown behind. Though there will likely be limited + access to the application available from the user, it can make the + experience of a (mostly) fullscreen IME less jarring. Note that when + this flag is specified the IME may not be set up to be able + to display text, so it should only be used in situations where this is + not needed. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_EXTRACT_UI}.

flagNoAccessoryAction0x20000000 Used in conjunction with a custom action, this indicates that the + action should not be available as an accessory button when the + input method is full-screen. + Note that by setting this flag, there can be cases where the action + is simply never available to the user. Setting this generally means + that you think showing text being edited is more important than the + action you have supplied. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ACCESSORY_ACTION}.

flagNoEnterAction0x40000000 Used in conjunction with a custom action, + this indicates that the action should not be available in-line as + a replacement for the "enter" key. Typically this is + because the action has such a significant impact or is not recoverable + enough that accidentally hitting it should be avoided, such as sending + a message. Note that {@link android.widget.TextView} will + automatically set this flag for you on multi-line text views. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ENTER_ACTION}.

flagForceAscii0x80000000 Used to request that the IME should be capable of inputting ASCII + characters. The intention of this flag is to ensure that the user + can type Roman alphabet characters in a {@link android.widget.TextView} + used for, typically, account ID or password input. It is expected that IMEs + normally are able to input ASCII even without being told so (such IMEs + already respect this flag in a sense), but there could be some cases they + aren't when, for instance, only non-ASCII input languagaes like Arabic, + Greek, Hebrew, Russian are enabled in the IME. Applications need to be + aware that the flag is not a guarantee, and not all IMEs will respect it. + However, it is strongly recommended for IME authors to respect this flag + especially when their IME could end up with a state that has only non-ASCII + input languages enabled. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_FORCE_ASCII}.

+ */ + public static final int imeOptions=0x01010264; + /** The extra value of the subtype. This string can be any string and will be passed to + the IME when the framework calls the IME with the subtype. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int imeSubtypeExtraValue=0x010102ee; + /** The locale of the subtype. This string should be a locale (e.g. en_US, fr_FR...) + and will be passed to the IME when the framework calls the IME + with the subtype. This is also used by the framework to know the supported locales + of the IME. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int imeSubtypeLocale=0x010102ec; + /** The mode of the subtype. This string can be a mode (e.g. voice, keyboard...) and this + string will be passed to the IME when the framework calls the IME with the + subtype. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int imeSubtypeMode=0x010102ed; + /** Flag declaring this activity to be 'immersive'; immersive activities + should not be interrupted with other activities or notifications. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int immersive=0x010102c0; + /** Controls how this View is important for accessibility which is if it fires + accessibility events and if it is reported to accessibility services that + query the screen. Note: While not recommended, an accessibility service may + decide to ignore this attribute and operate on all views in the view tree. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
auto0 The system determines whether the view is important for accessibility - default + (recommended).
yes1 The view is important for accessibility.
no2 The view is not important for accessibility.
noHideDescendants4 The view is not important for accessibility, nor are any of its descendant + views.
+ */ + public static final int importantForAccessibility=0x010103aa; + /** Identifier for the animation to use when a view is shown. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int inAnimation=0x01010177; + /** Leave enough room for ascenders and descenders instead of + using the font ascent and descent strictly. (Normally true). +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int includeFontPadding=0x0101015f; + /** If provided and true, this searchable activity will be + included in any global lists of search targets. + The default value is false. Optional attribute.. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int includeInGlobalSearch=0x0101026e; + /** Allows to enable the indeterminate mode. In this mode the progress + bar plays an infinite looping animation. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int indeterminate=0x01010139; + /** Defines how the indeterminate mode should behave when the progress + reaches max. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
repeat1 Progress starts over from 0.
cycle2 Progress keeps the current value and goes back to 0.
+ */ + public static final int indeterminateBehavior=0x0101013e; + /** Drawable used for the indeterminate mode. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateDrawable=0x0101013b; + /** Duration of the indeterminate animation. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int indeterminateDuration=0x0101013d; + /** Restricts to ONLY indeterminate mode (state-keeping progress mode will not work). +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int indeterminateOnly=0x0101013a; + /** Specifies a style resource to use for an indeterminate progress spinner. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x01010318; + /** Tint to apply to the indeterminate progress indicator. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int indeterminateTint=0x01010469; + /** Blending mode used to apply the indeterminate progress indicator tint. +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+ */ + public static final int indeterminateTintMode=0x0101046a; + /** The end bound for an item's indicator. To specify a right bound specific to children, + use childIndicatorEnd. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int indicatorEnd=0x010103d2; + /** The left bound for an item's indicator. To specify a left bound specific to children, + use childIndicatorLeft. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int indicatorLeft=0x0101010d; + /** The right bound for an item's indicator. To specify a right bound specific to children, + use childIndicatorRight. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int indicatorRight=0x0101010e; + /** The start bound for an item's indicator. To specify a start bound specific to children, + use childIndicatorStart. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int indicatorStart=0x010103d1; + /** Overrides the id of the inflated View with this value. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int inflatedId=0x010100f3; + /** Specify the order in which content providers hosted by a process + are instantiated when that process is created. Not needed unless + you have providers with dependencies between each other, to make + sure that they are created in the order needed by those dependencies. + The value is a simple integer, with higher numbers being + initialized first. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initOrder=0x0101001a; + /** A resource id of a layout. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int initialKeyguardLayout=0x010103c2; + /** A resource id of a layout. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int initialLayout=0x01010251; + /** Inner radius of the ring. When defined, innerRadiusRatio is ignored. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int innerRadius=0x0101025f; + /** Inner radius of the ring expressed as a ratio of the ring's width. For instance, + if innerRadiusRatio=9, then the inner radius equals the ring's width divided by 9. + This value is ignored if innerRadius is defined. Default value is 9. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int innerRadiusRatio=0x0101019b; + /** If set, specifies that this TextView should use the specified + input method (specified by fully-qualified class name). + {@deprecated Use inputType instead.} +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @Deprecated + public static final int inputMethod=0x01010168; + /** The type of data being placed in a text field, used to help an + input method decide how to let the user enter text. The constants + here correspond to those defined by + {@link android.text.InputType}. Generally you can select + a single value, though some can be combined together as + indicated. Setting this attribute to anything besides + none also implies that the text is editable. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ConstantValueDescription
none0x00000000 There is no content type. The text is not editable.
text0x00000001 Just plain old text. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_NORMAL}.
textCapCharacters0x00001001 Can be combined with text and its variations to + request capitalization of all characters. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_CHARACTERS}.
textCapWords0x00002001 Can be combined with text and its variations to + request capitalization of the first character of every word. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_WORDS}.
textCapSentences0x00004001 Can be combined with text and its variations to + request capitalization of the first character of every sentence. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_SENTENCES}.
textAutoCorrect0x00008001 Can be combined with text and its variations to + request auto-correction of text being input. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_CORRECT}.
textAutoComplete0x00010001 Can be combined with text and its variations to + specify that this field will be doing its own auto-completion and + talking with the input method appropriately. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_COMPLETE}.
textMultiLine0x00020001 Can be combined with text and its variations to + allow multiple lines of text in the field. If this flag is not set, + the text field will be constrained to a single line. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_MULTI_LINE}.
textImeMultiLine0x00040001 Can be combined with text and its variations to + indicate that though the regular text view should not be multiple + lines, the IME should provide multiple lines if it can. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_IME_MULTI_LINE}.
textNoSuggestions0x00080001 Can be combined with text and its variations to + indicate that the IME should not show any + dictionary-based word suggestions. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_NO_SUGGESTIONS}.
textUri0x00000011 Text that will be used as a URI. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_URI}.
textEmailAddress0x00000021 Text that will be used as an e-mail address. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_ADDRESS}.
textEmailSubject0x00000031 Text that is being supplied as the subject of an e-mail. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_SUBJECT}.
textShortMessage0x00000041 Text that is the content of a short message. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_SHORT_MESSAGE}.
textLongMessage0x00000051 Text that is the content of a long message. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_LONG_MESSAGE}.
textPersonName0x00000061 Text that is the name of a person. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_PERSON_NAME}.
textPostalAddress0x00000071 Text that is being supplied as a postal mailing address. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_POSTAL_ADDRESS}.
textPassword0x00000081 Text that is a password. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_PASSWORD}.
textVisiblePassword0x00000091 Text that is a password that should be visible. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_VISIBLE_PASSWORD}.
textWebEditText0x000000a1 Text that is being supplied as text in a web form. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EDIT_TEXT}.
textFilter0x000000b1 Text that is filtering some other data. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_FILTER}.
textPhonetic0x000000c1 Text that is for phonetic pronunciation, such as a phonetic name + field in a contact entry. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_PHONETIC}.
textWebEmailAddress0x000000d1 Text that will be used as an e-mail address on a web form. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS}.
textWebPassword0x000000e1 Text that will be used as a password on a web form. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_PASSWORD}.
number0x00000002 A numeric only field. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_VARIATION_NORMAL}.
numberSigned0x00001002 Can be combined with number and its other options to + allow a signed number. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_FLAG_SIGNED}.
numberDecimal0x00002002 Can be combined with number and its other options to + allow a decimal (fractional) number. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_FLAG_DECIMAL}.
numberPassword0x00000012 A numeric password field. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_VARIATION_PASSWORD}.
phone0x00000003 For entering a phone number. Corresponds to + {@link android.text.InputType#TYPE_CLASS_PHONE}.
datetime0x00000004 For entering a date and time. Corresponds to + {@link android.text.InputType#TYPE_CLASS_DATETIME} | + {@link android.text.InputType#TYPE_DATETIME_VARIATION_NORMAL}.
date0x00000014 For entering a date. Corresponds to + {@link android.text.InputType#TYPE_CLASS_DATETIME} | + {@link android.text.InputType#TYPE_DATETIME_VARIATION_DATE}.
time0x00000024 For entering a time. Corresponds to + {@link android.text.InputType#TYPE_CLASS_DATETIME} | + {@link android.text.InputType#TYPE_DATETIME_VARIATION_TIME}.
+ */ + public static final int inputType=0x01010220; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int inset=0x010104b5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int insetBottom=0x010101ba; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int insetLeft=0x010101b7; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int insetRight=0x010101b8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int insetTop=0x010101b9; + /** The default install location defined by an application. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto0 Let the system decide ideal install location
internalOnly1 Explicitly request to be installed on internal phone storage + only.
preferExternal2 Prefer to be installed on SD card. There is no guarantee that + the system will honor this request. The application might end + up being installed on internal storage if external media + is unavailable or too full.
+ */ + public static final int installLocation=0x010102b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int interpolator=0x01010141; + /** Set to true to tell the SyncManager to automatically call setIsSyncable(..., ..., 1) + for the SyncAdapter instead of issuaing an initialization sync to the SyncAdapter. + Defaults to false. + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isAlwaysSyncable=0x01010333; + /** Set to true if this subtype is ASCII capable. If the subtype is ASCII + capable, it should guarantee that the user can input ASCII characters with + this subtype. This is important because many password fields only allow + ASCII-characters. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isAsciiCapable=0x010103e9; + /** Set true if the subtype is auxiliary. An auxiliary subtype won't be shown in the + input method selection list in the settings app. + InputMethodManager#switchToLastInputMethod will ignore auxiliary subtypes when it + chooses a target subtype. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isAuxiliary=0x0101037f; + /** Set to true in all of the configurations for which this input + method should be considered an option as the default. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isDefault=0x01010221; + /** A boolean flag used to indicate if an application is a Game or not. +

This information can be used by the system to group together + applications that are classified as games, and display them separately + from the other applications. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isGame=0x010103f4; + /** Whether this rating bar is an indicator (and non-changeable by the user). +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isIndicator=0x01010147; + public static final int isLightTheme=0x01160000; + /** Whether this is a modifier key such as Alt or Shift. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isModifier=0x01010246; + /** Whether long-pressing on this key will make it repeat. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isRepeatable=0x01010248; + /** Set this if the view will serve as a scrolling container, meaning + that it can be resized to shrink its overall window so that there + will be space for an input method. If not set, the default + value will be true if "scrollbars" has the vertical scrollbar + set, else it will be false. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isScrollContainer=0x0101024e; + /** Whether this is a toggle key. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isSticky=0x01010247; + /** If set to true, this service will run under a special process + that is isolated from the rest of the system. The only communication + with it is through the Service API (binding and starting). +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isolatedProcess=0x010103a9; + /** Default background for each menu item. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int itemBackground=0x01010130; + /** Default disabled icon alpha for each menu item that shows an icon. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemIconDisabledAlpha=0x01010131; + /** Specifies padding that should be applied to the left and right sides of + system-provided items in the bar. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x0101032d; + /** Default appearance of menu item text. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemTextAppearance=0x0101012c; + /** Controls whether the view's window should keep the screen on + while visible. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int keepScreenOn=0x01010216; + /** The key to store the Preference value. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int key=0x010101e8; + /** Image for the key. This image needs to be a StateListDrawable, with the following + possible states: normal, pressed, checkable, checkable+pressed, checkable+checked, + checkable+checked+pressed. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keyBackground=0x01010233; + /** Key edge flags. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
left1 Key is anchored to the left of the keyboard.
right2 Key is anchored to the right of the keyboard.
+ */ + public static final int keyEdgeFlags=0x01010245; + /** Default height of a key, in pixels or percentage of display width. +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int keyHeight=0x0101023e; + /** The icon to display on the key instead of the label. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keyIcon=0x0101024c; + /** The label to display on the key. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int keyLabel=0x0101024b; + /** The string of characters to output when this key is pressed. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int keyOutputText=0x0101024a; + /** Height of the key press feedback popup. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int keyPreviewHeight=0x01010239; + /** Layout resource for key press feedback. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keyPreviewLayout=0x01010237; + /** Vertical offset of the key press feedback from the key. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int keyPreviewOffset=0x01010238; + /** Groups signing keys into a {@code KeySet} for easier reference in + other APIs. However, currently no APIs use this. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a boolean value, either "true" or "false". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

May be a floating point value, such as "1.2". +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. + */ + public static final int keySet=0x010103db; + /** Color to use for the label in a key. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int keyTextColor=0x01010236; + /** Size of the text for character keys. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int keyTextSize=0x01010234; + /** Default width of a key, in pixels or percentage of display width. +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int keyWidth=0x0101023d; + /** The key character map file resource. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keyboardLayout=0x010103ab; + /** Mode of the keyboard. If the mode doesn't match the + requested keyboard mode, the row will be skipped. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keyboardMode=0x0101024d; + public static final int keyboardViewStyle=0x01160084; + /** This enum provides the same keycode values as can be found in + {@link android.view.KeyEvent}. +

Must be one of the following constant values.

+ ++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ConstantValueDescription
KEYCODE_UNKNOWN0
KEYCODE_SOFT_LEFT1
KEYCODE_SOFT_RIGHT2
KEYCODE_HOME3
KEYCODE_BACK4
KEYCODE_CALL5
KEYCODE_ENDCALL6
KEYCODE_07
KEYCODE_18
KEYCODE_29
KEYCODE_310
KEYCODE_411
KEYCODE_512
KEYCODE_613
KEYCODE_714
KEYCODE_815
KEYCODE_916
KEYCODE_STAR17
KEYCODE_POUND18
KEYCODE_DPAD_UP19
KEYCODE_DPAD_DOWN20
KEYCODE_DPAD_LEFT21
KEYCODE_DPAD_RIGHT22
KEYCODE_DPAD_CENTER23
KEYCODE_VOLUME_UP24
KEYCODE_VOLUME_DOWN25
KEYCODE_POWER26
KEYCODE_CAMERA27
KEYCODE_CLEAR28
KEYCODE_A29
KEYCODE_B30
KEYCODE_C31
KEYCODE_D32
KEYCODE_E33
KEYCODE_F34
KEYCODE_G35
KEYCODE_H36
KEYCODE_I37
KEYCODE_J38
KEYCODE_K39
KEYCODE_L40
KEYCODE_M41
KEYCODE_N42
KEYCODE_O43
KEYCODE_P44
KEYCODE_Q45
KEYCODE_R46
KEYCODE_S47
KEYCODE_T48
KEYCODE_U49
KEYCODE_V50
KEYCODE_W51
KEYCODE_X52
KEYCODE_Y53
KEYCODE_Z54
KEYCODE_COMMA55
KEYCODE_PERIOD56
KEYCODE_ALT_LEFT57
KEYCODE_ALT_RIGHT58
KEYCODE_SHIFT_LEFT59
KEYCODE_SHIFT_RIGHT60
KEYCODE_TAB61
KEYCODE_SPACE62
KEYCODE_SYM63
KEYCODE_EXPLORER64
KEYCODE_ENVELOPE65
KEYCODE_ENTER66
KEYCODE_DEL67
KEYCODE_GRAVE68
KEYCODE_MINUS69
KEYCODE_EQUALS70
KEYCODE_LEFT_BRACKET71
KEYCODE_RIGHT_BRACKET72
KEYCODE_BACKSLASH73
KEYCODE_SEMICOLON74
KEYCODE_APOSTROPHE75
KEYCODE_SLASH76
KEYCODE_AT77
KEYCODE_NUM78
KEYCODE_HEADSETHOOK79
KEYCODE_FOCUS80
KEYCODE_PLUS81
KEYCODE_MENU82
KEYCODE_NOTIFICATION83
KEYCODE_SEARCH84
KEYCODE_MEDIA_PLAY_PAUSE85
KEYCODE_MEDIA_STOP86
KEYCODE_MEDIA_NEXT87
KEYCODE_MEDIA_PREVIOUS88
KEYCODE_MEDIA_REWIND89
KEYCODE_MEDIA_FAST_FORWARD90
KEYCODE_MUTE91
KEYCODE_PAGE_UP92
KEYCODE_PAGE_DOWN93
KEYCODE_PICTSYMBOLS94
KEYCODE_SWITCH_CHARSET95
KEYCODE_BUTTON_A96
KEYCODE_BUTTON_B97
KEYCODE_BUTTON_C98
KEYCODE_BUTTON_X99
KEYCODE_BUTTON_Y100
KEYCODE_BUTTON_Z101
KEYCODE_BUTTON_L1102
KEYCODE_BUTTON_R1103
KEYCODE_BUTTON_L2104
KEYCODE_BUTTON_R2105
KEYCODE_BUTTON_THUMBL106
KEYCODE_BUTTON_THUMBR107
KEYCODE_BUTTON_START108
KEYCODE_BUTTON_SELECT109
KEYCODE_BUTTON_MODE110
KEYCODE_ESCAPE111
KEYCODE_FORWARD_DEL112
KEYCODE_CTRL_LEFT113
KEYCODE_CTRL_RIGHT114
KEYCODE_CAPS_LOCK115
KEYCODE_SCROLL_LOCK116
KEYCODE_META_LEFT117
KEYCODE_META_RIGHT118
KEYCODE_FUNCTION119
KEYCODE_SYSRQ120
KEYCODE_BREAK121
KEYCODE_MOVE_HOME122
KEYCODE_MOVE_END123
KEYCODE_INSERT124
KEYCODE_FORWARD125
KEYCODE_MEDIA_PLAY126
KEYCODE_MEDIA_PAUSE127
KEYCODE_MEDIA_CLOSE128
KEYCODE_MEDIA_EJECT129
KEYCODE_MEDIA_RECORD130
KEYCODE_F1131
KEYCODE_F2132
KEYCODE_F3133
KEYCODE_F4134
KEYCODE_F5135
KEYCODE_F6136
KEYCODE_F7137
KEYCODE_F8138
KEYCODE_F9139
KEYCODE_F10140
KEYCODE_F11141
KEYCODE_F12142
KEYCODE_NUM_LOCK143
KEYCODE_NUMPAD_0144
KEYCODE_NUMPAD_1145
KEYCODE_NUMPAD_2146
KEYCODE_NUMPAD_3147
KEYCODE_NUMPAD_4148
KEYCODE_NUMPAD_5149
KEYCODE_NUMPAD_6150
KEYCODE_NUMPAD_7151
KEYCODE_NUMPAD_8152
KEYCODE_NUMPAD_9153
KEYCODE_NUMPAD_DIVIDE154
KEYCODE_NUMPAD_MULTIPLY155
KEYCODE_NUMPAD_SUBTRACT156
KEYCODE_NUMPAD_ADD157
KEYCODE_NUMPAD_DOT158
KEYCODE_NUMPAD_COMMA159
KEYCODE_NUMPAD_ENTER160
KEYCODE_NUMPAD_EQUALS161
KEYCODE_NUMPAD_LEFT_PAREN162
KEYCODE_NUMPAD_RIGHT_PAREN163
KEYCODE_VOLUME_MUTE164
KEYCODE_INFO165
KEYCODE_CHANNEL_UP166
KEYCODE_CHANNEL_DOWN167
KEYCODE_ZOOM_IN168
KEYCODE_ZOOM_OUT169
KEYCODE_TV170
KEYCODE_WINDOW171
KEYCODE_GUIDE172
KEYCODE_DVR173
KEYCODE_BOOKMARK174
KEYCODE_CAPTIONS175
KEYCODE_SETTINGS176
KEYCODE_TV_POWER177
KEYCODE_TV_INPUT178
KEYCODE_STB_POWER179
KEYCODE_STB_INPUT180
KEYCODE_AVR_POWER181
KEYCODE_AVR_INPUT182
KEYCODE_PROG_GRED183
KEYCODE_PROG_GREEN184
KEYCODE_PROG_YELLOW185
KEYCODE_PROG_BLUE186
KEYCODE_APP_SWITCH187
KEYCODE_BUTTON_1188
KEYCODE_BUTTON_2189
KEYCODE_BUTTON_3190
KEYCODE_BUTTON_4191
KEYCODE_BUTTON_5192
KEYCODE_BUTTON_6193
KEYCODE_BUTTON_7194
KEYCODE_BUTTON_8195
KEYCODE_BUTTON_9196
KEYCODE_BUTTON_10197
KEYCODE_BUTTON_11198
KEYCODE_BUTTON_12199
KEYCODE_BUTTON_13200
KEYCODE_BUTTON_14201
KEYCODE_BUTTON_15202
KEYCODE_BUTTON_16203
KEYCODE_LANGUAGE_SWITCH204
KEYCODE_MANNER_MODE205
KEYCODE_3D_MODE206
KEYCODE_CONTACTS207
KEYCODE_CALENDAR208
KEYCODE_MUSIC209
KEYCODE_CALCULATOR210
KEYCODE_ZENKAKU_HANKAKU211
KEYCODE_EISU212
KEYCODE_MUHENKAN213
KEYCODE_HENKAN214
KEYCODE_KATAKANA_HIRAGANA215
KEYCODE_YEN216
KEYCODE_RO217
KEYCODE_KANA218
KEYCODE_ASSIST219
KEYCODE_BRIGHTNESS_DOWN220
KEYCODE_BRIGHTNESS_UP221
KEYCODE_MEDIA_AUDIO_TRACK222
KEYCODE_MEDIA_SLEEP223
KEYCODE_MEDIA_WAKEUP224
KEYCODE_PAIRING225
KEYCODE_MEDIA_TOP_MENU226
KEYCODE_11227
KEYCODE_12228
KEYCODE_LAST_CHANNEL229
KEYCODE_TV_DATA_SERVICE230
KEYCODE_VOICE_ASSIST231
KEYCODE_TV_RADIO_SERVICE232
KEYCODE_TV_TELETEXT233
KEYCODE_TV_NUMBER_ENTRY234
KEYCODE_TV_TERRESTRIAL_ANALOG235
KEYCODE_TV_TERRESTRIAL_DIGITAL236
KEYCODE_TV_SATELLITE237
KEYCODE_TV_SATELLITE_BS238
KEYCODE_TV_SATELLITE_CS239
KEYCODE_TV_SATELLITE_SERVICE240
KEYCODE_TV_NETWORK241
KEYCODE_TV_ANTENNA_CABLE242
KEYCODE_TV_INPUT_HDMI_1243
KEYCODE_TV_INPUT_HDMI_2244
KEYCODE_TV_INPUT_HDMI_3245
KEYCODE_TV_INPUT_HDMI_4246
KEYCODE_TV_INPUT_COMPOSITE_1247
KEYCODE_TV_INPUT_COMPOSITE_2248
KEYCODE_TV_INPUT_COMPONENT_1249
KEYCODE_TV_INPUT_COMPONENT_2250
KEYCODE_TV_INPUT_VGA_1251
KEYCODE_TV_AUDIO_DESCRIPTION252
KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP253
KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN254
KEYCODE_TV_ZOOM_MODE255
KEYCODE_TV_CONTENTS_MENU256
KEYCODE_TV_MEDIA_CONTEXT_MENU257
KEYCODE_TV_TIMER_PROGRAMMING258
KEYCODE_HELP259
KEYCODE_NAVIGATE_PREVIOUS260
KEYCODE_NAVIGATE_NEXT261
KEYCODE_NAVIGATE_IN262
KEYCODE_NAVIGATE_OUT263
KEYCODE_MEDIA_SKIP_FORWARD272
KEYCODE_MEDIA_SKIP_BACKWARD273
KEYCODE_MEDIA_STEP_FORWARD274
KEYCODE_MEDIA_STEP_BACKWARD275
+ */ + public static final int keycode=0x010100c5; + /** Whether the application in question should be terminated after its + settings have been restored during a full-system restore operation. + Single-package restore operations will never cause the application to + be shut down. Full-system restore operations typically only occur once, + when the phone is first set up. Third-party applications will not usually + need to use this attribute. + +

The default is true, which means that after the application + has finished processing its data during a full-system restore, it will be + terminated. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int killAfterRestore=0x0101029c; + /** A user-legible name for the given item. Use with the + application tag (to supply a default label for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific label for that component). It may also be + used with the intent-filter tag to supply a label to show to the + user when an activity is being selected based on a particular Intent. + +

The given label will be used wherever the user sees information + about its associated component; for example, as the name of a + main activity that is displayed in the launcher. You should + generally set this to a reference to a string resource, so that + it can be localized, however it is also allowed to supply a plain + string for quick and dirty programming. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + */ + public static final int label=0x01010001; + /** Specifies the id of a view for which this view serves as a label for + accessibility purposes. For example, a TextView before an EditText in + the UI usually specifies what infomation is contained in the EditText. + Hence, the TextView is a label for the EditText. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int labelFor=0x010103c6; + /** Size of the text for custom keys with some text and no icon. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int labelTextSize=0x01010235; + /** Request that your application's processes be created with + a large Dalvik heap. This applies to all processes + created for the application. It only applies to the first + application loaded into a process; if using a sharedUserId + to allow multiple applications to use a process, they all must + use this option consistently or will get unpredictable results. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int largeHeap=0x0101035a; + /** Indicates whether the application supports larger screen form-factors. + A large screen is defined as a screen that is significantly larger + than a normal phone screen, and thus may require some special care + on the application's part to make good use of it. An example would + be a VGA normal density screen, though even larger screens + are certainly possible. An application that does not support + large screens will be placed as a postage stamp on such a + screen, so that it retains the dimensions it was originally + designed for. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int largeScreens=0x01010286; + /** Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}, + this is the new way to specify the screens an application is + compatible with. This attribute provides the maximum + "smallest screen width" (as per the -swNNNdp resource configuration) + that the application can work well on. If this value is smaller than + the "smallest screen width" of the device it is running on, the + application will be forced in to screen compatibility mode with + no way for the user to turn it off. Currently the compatibility mode only + emulates phone screens with a 320dp width, so compatibility mode is not applied if the + value for largestWidthLimitDp is larger than 320. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int largestWidthLimitDp=0x01010366; + /** Specify how an activity should be launched. See the + Tasks and Back + Stack document for important information on how these options impact + the behavior of your application. + +

If this attribute is not specified, standard launch + mode will be used. Note that the particular launch behavior can + be changed in some ways at runtime through the + {@link android.content.Intent} flags + {@link android.content.Intent#FLAG_ACTIVITY_SINGLE_TOP}, + {@link android.content.Intent#FLAG_ACTIVITY_NEW_TASK}, and + {@link android.content.Intent#FLAG_ACTIVITY_MULTIPLE_TASK}. +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
standard0 The default mode, which will usually create a new instance of + the activity when it is started, though this behavior may change + with the introduction of other options such as + {@link android.content.Intent#FLAG_ACTIVITY_NEW_TASK + Intent.FLAG_ACTIVITY_NEW_TASK}.
singleTop1 If, when starting the activity, there is already an + instance of the same activity class in the foreground that is + interacting with the user, then + re-use that instance. This existing instance will receive a call to + {@link android.app.Activity#onNewIntent Activity.onNewIntent()} with + the new Intent that is being started.
singleTask2 If, when starting the activity, there is already a task running + that starts with this activity, then instead of starting a new + instance the current task is brought to the front. The existing + instance will receive a call to {@link android.app.Activity#onNewIntent + Activity.onNewIntent()} + with the new Intent that is being started, and with the + {@link android.content.Intent#FLAG_ACTIVITY_BROUGHT_TO_FRONT + Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT} flag set. This is a superset + of the singleTop mode, where if there is already an instance + of the activity being started at the top of the stack, it will + receive the Intent as described there (without the + FLAG_ACTIVITY_BROUGHT_TO_FRONT flag set). See the + Tasks and Back + Stack document for more details about tasks.
singleInstance3 Only allow one instance of this activity to ever be + running. This activity gets a unique task with only itself running + in it; if it is ever launched again with the same Intent, then that + task will be brought forward and its + {@link android.app.Activity#onNewIntent Activity.onNewIntent()} + method called. If this + activity tries to start a new activity, that new activity will be + launched in a separate task. See the + Tasks and Back + Stack document for more details about tasks.
+ */ + public static final int launchMode=0x0101001d; + /** When opening an activity in a new task using Intent.FLAG_ACTIVITY_LAUNCH_BEHIND, + this is the animation that is run on the activity of the old task (which is + already on the screen and then stays on). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int launchTaskBehindSourceAnimation=0x01010492; + /** When opening an activity in a new task using Intent/FLAG_ACTIVITY_LAUNCH_BEHIND, + this is the animation that is run on the activity of the new task (which is + entering the screen and then leaving). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int launchTaskBehindTargetAnimation=0x01010491; + /** Specifies the type of layer backing this view. The default value is none. + Refer to {@link android.view.View#setLayerType(int, android.graphics.Paint)} + for more information. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0 Don't use a layer.
software1 Use a software layer. Refer to + {@link android.view.View#setLayerType(int, android.graphics.Paint)} for + more information.
hardware2 Use a hardware layer. Refer to + {@link android.view.View#setLayerType(int, android.graphics.Paint)} for + more information.
+ */ + public static final int layerType=0x01010354; + /** Supply an identifier for the layout resource to inflate when the ViewStub + becomes visible or when forced to do so. The layout resource must be a + valid reference to a layout. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x010100f2; + /** Defines the layout animation to use the first time the ViewGroup is laid out. + Layout animations can also be started manually after the first layout. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layoutAnimation=0x010100ec; + /** Defines the direction of layout drawing. This typically is associated with writing + direction of the language script used. The possible values are "ltr" for Left-to-Right, + "rtl" for Right-to-Left, "locale" and "inherit" from parent view. If there is nothing + to inherit, "locale" is used. "locale" falls back to "en-US". "ltr" is the direction + used in "en-US". The default for this attribute is "inherit". +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
ltr0 Left-to-Right
rtl1 Right-to-Left
inherit2 Inherit from parent
locale3 Locale
+ */ + public static final int layoutDirection=0x010103b2; + /** Defines the layout mode of this ViewGroup. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
clipBounds0 Use the children's clip bounds when laying out this container.
opticalBounds1 Use the children's optical bounds when laying out this container.
+ */ + public static final int layoutMode=0x010103da; + /** Positions the bottom edge of this view above the given anchor view ID. + Accommodates bottom margin of this view and top margin of anchor view. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_above=0x01010184; + /** Positions the baseline of this view on the baseline of the given anchor view ID. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_alignBaseline=0x01010186; + /** Makes the bottom edge of this view match the bottom edge of the given anchor view ID. + Accommodates bottom margin. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_alignBottom=0x0101018a; + /** Makes the end edge of this view match the end edge of the given anchor view ID. + Accommodates end margin. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_alignEnd=0x010103ba; + /** Makes the left edge of this view match the left edge of the given anchor view ID. + Accommodates left margin. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_alignLeft=0x01010187; + /** If true, makes the bottom edge of this view match the bottom edge of the parent. + Accommodates bottom margin. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_alignParentBottom=0x0101018e; + /** If true, makes the end edge of this view match the end edge of the parent. + Accommodates end margin. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_alignParentEnd=0x010103bc; + /** If true, makes the left edge of this view match the left edge of the parent. + Accommodates left margin. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_alignParentLeft=0x0101018b; + /** If true, makes the right edge of this view match the right edge of the parent. + Accommodates right margin. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_alignParentRight=0x0101018d; + /** If true, makes the start edge of this view match the start edge of the parent. + Accommodates start margin. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_alignParentStart=0x010103bb; + /** If true, makes the top edge of this view match the top edge of the parent. + Accommodates top margin. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_alignParentTop=0x0101018c; + /** Makes the right edge of this view match the right edge of the given anchor view ID. + Accommodates right margin. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_alignRight=0x01010189; + /** Makes the start edge of this view match the start edge of the given anchor view ID. + Accommodates start margin. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_alignStart=0x010103b9; + /** Makes the top edge of this view match the top edge of the given anchor view ID. + Accommodates top margin. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_alignTop=0x01010188; + /** If set to true, the parent will be used as the anchor when the anchor cannot be + be found for layout_toLeftOf, layout_toRightOf, etc. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_alignWithParentIfMissing=0x01010192; + /** Positions the top edge of this view below the given anchor view ID. + Accommodates top margin of this view and bottom margin of anchor view. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_below=0x01010185; + /** If true, centers this child horizontally within its parent. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_centerHorizontal=0x01010190; + /** If true, centers this child horizontally and vertically within its parent. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_centerInParent=0x0101018f; + /** If true, centers this child vertically within its parent. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_centerVertical=0x01010191; + /** The index of the column in which this child should be. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_column=0x0101014c; + /** The column span: the difference between the right and left + boundaries delimiting the group of cells occupied by this view. + The default is one. + See {@link android.widget.GridLayout.Spec}. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_columnSpan=0x0101037d; + /** The relative proportion of horizontal space that should be allocated to this view + during excess space distribution. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_columnWeight=0x01010459; + /** Standard gravity constant that a child supplies to its parent. + Defines how the child view should be positioned, on both the X and Y axes, within its enclosing layout. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+ */ + public static final int layout_gravity=0x010100b3; + /** Specifies the basic height of the view. This is a required attribute + for any view inside of a containing layout manager. Its value may + be a dimension (such as "12dip") for a constant height or one of + the special constants. +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
fill_parent-1 The view should be as big as its parent (minus padding). + This constant is deprecated starting from API Level 8 and + is replaced by {@code match_parent}.
match_parent-1 The view should be as big as its parent (minus padding). + Introduced in API Level 8.
wrap_content-2 The view should be only big enough to enclose its content (plus padding).
+ */ + public static final int layout_height=0x010100f5; + /** Specifies extra space on the left, top, right and bottom + sides of this view. This space is outside this view's bounds. + Margin values should be positive. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_margin=0x010100f6; + /** Specifies extra space on the bottom side of this view. + This space is outside this view's bounds. + Margin values should be positive. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_marginBottom=0x010100fa; + /** Specifies extra space on the end side of this view. + This space is outside this view's bounds. + Margin values should be positive. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_marginEnd=0x010103b6; + /** Specifies extra space on the left side of this view. + This space is outside this view's bounds. + Margin values should be positive. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_marginLeft=0x010100f7; + /** Specifies extra space on the right side of this view. + This space is outside this view's bounds. + Margin values should be positive. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_marginRight=0x010100f9; + /** Specifies extra space on the start side of this view. + This space is outside this view's bounds. + Margin values should be positive. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_marginStart=0x010103b5; + /** Specifies extra space on the top side of this view. + This space is outside this view's bounds. + Margin values should be positive. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_marginTop=0x010100f8; + /** The row boundary delimiting the top of the group of cells + occupied by this view. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_row=0x0101037b; + /** The row span: the difference between the top and bottom + boundaries delimiting the group of cells occupied by this view. + The default is one. + See {@link android.widget.GridLayout.Spec}. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_rowSpan=0x0101037c; + /** The relative proportion of vertical space that should be allocated to this view + during excess space distribution. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_rowWeight=0x01010458; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_scale=0x01010193; + /** Defines how many columns this child should span. Must be >= 1. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_span=0x0101014d; + /** Positions the start edge of this view to the end of the given anchor view ID. + Accommodates start margin of this view and end margin of anchor view. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_toEndOf=0x010103b8; + /** Positions the right edge of this view to the left of the given anchor view ID. + Accommodates right margin of this view and left margin of anchor view. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_toLeftOf=0x01010182; + /** Positions the left edge of this view to the right of the given anchor view ID. + Accommodates left margin of this view and right margin of anchor view. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_toRightOf=0x01010183; + /** Positions the end edge of this view to the start of the given anchor view ID. + Accommodates end margin of this view and start margin of anchor view. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_toStartOf=0x010103b7; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_weight=0x01010181; + /** Specifies the basic width of the view. This is a required attribute + for any view inside of a containing layout manager. Its value may + be a dimension (such as "12dip") for a constant width or one of + the special constants. +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
fill_parent-1 The view should be as big as its parent (minus padding). + This constant is deprecated starting from API Level 8 and + is replaced by {@code match_parent}.
match_parent-1 The view should be as big as its parent (minus padding). + Introduced in API Level 8.
wrap_content-2 The view should be only big enough to enclose its content (plus padding).
+ */ + public static final int layout_width=0x010100f4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_x=0x0101017f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_y=0x01010180; + /** Amount of left padding inside the gradient shape. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int left=0x010101ad; + /** Text letter-spacing. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int letterSpacing=0x010104b6; + public static final int lightRadius=0x01160037; + public static final int lightY=0x01160035; + public static final int lightZ=0x01160036; + /** Extra spacing between lines of text. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int lineSpacingExtra=0x01010217; + /** Extra spacing between lines of text, as a multiplier. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int lineSpacingMultiplier=0x01010218; + /** Makes the TextView be exactly this many lines tall. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int lines=0x01010154; + /** If set to false, keeps the movement method from being set + to the link movement method even if autoLink causes links + to be found. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int linksClickable=0x010100b1; + /** Drawable used as a background for selected list items. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x010102f0; + /** Drawable to use for multiple choice indicators. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceIndicatorMultiple=0x0101021a; + /** Drawable to use for single choice indicators. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceIndicatorSingle=0x01010219; + /** The drawable for the list divider. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDivider=0x01010214; + /** The list divider used in alert dialogs. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x01010305; + /** Default ListPopupWindow style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x010102ff; + /** The preferred list item height. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x0101004d; + /** A larger, more robust list item height. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x01010386; + /** A smaller, sleeker list item height. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x01010387; + /** The preferred padding along the end edge of list items. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingEnd=0x010103be; + /** The preferred padding along the left edge of list items. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x010103a3; + /** The preferred padding along the right edge of list items. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x010103a4; + /** The preferred padding along the start edge of list items. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingStart=0x010103bd; + /** Drawable used to indicate the currently selected item in the list. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int listSelector=0x010100fb; + /** TextView style for list separators. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listSeparatorTextViewStyle=0x01010208; + /** Default ListView style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listViewStyle=0x01010074; + /** ListView with white background. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listViewWhiteStyle=0x01010075; + /** This value indicates how tasks rooted at this activity will behave in lockTask mode. + While in lockTask mode the system will not launch non-permitted tasks until + lockTask mode is disabled. +

While in lockTask mode with multiple permitted tasks running, each launched task is + permitted to finish, transitioning to the previous locked task, until there is only one + task remaining. At that point the last task running is not permitted to finish, unless it + uses the value always. +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
normal0 This is the default value. Tasks will not launch into lockTask mode but can be + placed there by calling {@link android.app.Activity#startLockTask}. If a task with + this mode has been whitelisted using {@link + android.app.admin.DevicePolicyManager#setLockTaskPackages} then calling + {@link android.app.Activity#startLockTask} will enter lockTask mode immediately, + otherwise the user will be presented with a dialog to approve entering pinned mode. +

If the system is already in lockTask mode when a new task rooted at this activity + is launched that task will or will not start depending on whether the package of this + activity has been whitelisted. +

Tasks rooted at this activity can only exit lockTask mode using + {@link android.app.Activity#stopLockTask}.

never1 Tasks will not launch into lockTask mode and cannot be placed there using + {@link android.app.Activity#startLockTask} or be pinned from the Overview screen. + If the system is already in lockTask mode when a new task rooted at this activity is + launched that task will not be started. +

Note: This mode is only available to system and privileged applications. + Non-privileged apps with this value will be treated as normal. +

always2 Tasks rooted at this activity will always launch into lockTask mode. If the system is + already in lockTask mode when this task is launched then the new task will be launched + on top of the current task. Tasks launched in this mode are capable of exiting + lockTask mode using {@link android.app.Activity#finish()}. +

Note: This mode is only available to system and privileged applications. + Non-privileged apps with this value will be treated as normal. +

if_whitelisted3 If the DevicePolicyManager (DPM) authorizes this package ({@link + android.app.admin.DevicePolicyManager#setLockTaskPackages}) then this mode is + identical to always, except that the activity needs to call + {@link android.app.Activity#stopLockTask} before being able to finish if it is the last + locked task. + If the DPM does not authorize this package then this mode is identical to normal.
+ */ + public static final int lockTaskMode=0x010104ed; + /** A Drawable resource providing an extended graphical logo for its + associated item. Use with the application tag (to supply a default + logo for all application components), or with the activity, receiver, + service, or instrumentation tag (to supply a specific logo for that + component). It may also be used with the intent-filter tag to supply + a logo to show to the user when an activity is being selected based + on a particular Intent. + +

The given logo will be used to display to the user a graphical + representation of its associated component; for example as the + header in the Action Bar. The primary differences between an icon + and a logo are that logos are often wider and more detailed, and are + used without an accompanying text caption. This must be a reference + to a Drawable resource containing the image definition. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x010102be; + /** A content description string to describe the appearance of the + associated logo image. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x010104e9; + /** Defines whether this view reacts to long click events. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int longClickable=0x010100e6; + /** Defines whether the animator loops to the first view once it + has reached the end of the list. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int loopViews=0x01010307; + /** Name of the activity to be launched to manage application's space on + device. The specified activity gets automatically launched when the + application's space needs to be managed and is usually invoked + through user actions. Applications can thus provide their own custom + behavior for managing space for various scenarios like out of memory + conditions. This is an optional attribute and + applications can choose not to specify a default activity to + manage space. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int manageSpaceActivity=0x01010004; + /** Default MapView style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int mapViewStyle=0x0101008a; + /** The number of times to repeat the marquee animation. Only applied if the + TextView has marquee enabled. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
marquee_forever-1 Indicates that marquee should repeat indefinitely.
+ */ + public static final int marqueeRepeatLimit=0x0101021d; + /** The match order to use for the transition. This is a comma-separated + list of values, containing one or more of the following: + id, itemId, name, instance. These correspond to + {@link android.transition.Transition#MATCH_ID}, + {@link android.transition.Transition#MATCH_ITEM_ID}, + {@link android.transition.Transition#MATCH_NAME}, and + {@link android.transition.Transition#MATCH_INSTANCE}, respectively. + This corresponds to {@link android.transition.Transition#setMatchOrder(int...)}. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int matchOrder=0x0101044f; + /** Defines the maximum value the progress can take. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int max=0x01010136; + /** The maximal date shown by this calendar view in mm/dd/yyyy format. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxDate=0x01010340; + /** Makes the TextView be at most this many ems wide. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxEms=0x01010157; + /** An optional argument to supply a maximum height for this view. + See {see android.widget.ImageView#setMaxHeight} for details. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxHeight=0x01010120; + /** Defines the maximum number of items per row. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxItemsPerRow=0x01010134; + /** Set an input filter to constrain the text length to the + specified number. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxLength=0x01010160; + /** The maximum level allowed for this item. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxLevel=0x010101b2; + /** Makes the TextView be at most this many lines tall. + + When used on an editable text, the inputType attribute's value must be + combined with the textMultiLine flag for the maxLines attribute to apply. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxLines=0x01010153; + /** The maximum number of entries of tasks rooted at this activity in the recent task list. + When this number of entries is reached the least recently used instance of this activity + will be removed from recents. The value will be clamped between 1 and 100 inclusive. + The default value for this if it is not specified is 15. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxRecents=0x01010446; + /** Defines the maximum number of rows displayed. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxRows=0x01010133; + /** Optional: specify the maximum version of the Android OS for which the + application wishes to request the permission. When running on a version + of Android higher than the number given here, the permission will not + be requested. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxSdkVersion=0x01010271; + /** An optional argument to supply a maximum width for this view. + See {see android.widget.ImageView#setMaxWidth} for details. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxWidth=0x0101011f; + /** The maximum arc angle in degrees between the start and end points. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maximumAngle=0x0101047f; + /** Determines whether to measure all children or just those in + the VISIBLE or INVISIBLE state when measuring. Defaults to false. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureAllChildren=0x0101010a; + /** When set to true, all children with a weight will be considered having + the minimum size of the largest child. If false, all children are + measured normally. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x010102d4; + /** Default style for the MediaRouteButton widget. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int mediaRouteButtonStyle=0x010103ad; + /** The types of media routes the button and its resulting + chooser will filter by. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
liveAudio0x1 Allow selection of live audio routes.
user0x800000 Allow selection of user (app-specified) routes.
+ */ + public static final int mediaRouteTypes=0x010103ae; + /** The category applied to all items within this group. + (This will be or'ed with the orderInCategory attribute.) +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
container0x00010000 Items are part of a container.
system0x00020000 Items are provided by the system.
secondary0x00030000 Items are user-supplied secondary (infrequently used).
alternative0x00040000 Items are alternative actions.
+ */ + public static final int menuCategory=0x010101de; + /** Specify a MIME type that is handled, as per + {@link android.content.IntentFilter#addDataType + IntentFilter.addDataType()}. +

Note: MIME type matching in the Android framework is + case-sensitive, unlike formal RFC MIME types. As a result, + MIME types here should always use lower case letters.

+

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int mimeType=0x01010026; + /** The minimal date shown by this calendar view in mm/dd/yyyy format. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int minDate=0x0101033f; + /** Makes the TextView be at least this many ems wide. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int minEms=0x0101015a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int minHeight=0x01010140; + /** The minimum level allowed for this item. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int minLevel=0x010101b1; + /** Makes the TextView be at least this many lines tall. + + When used on an editable text, the inputType attribute's value must be + combined with the textMultiLine flag for the minLines attribute to apply. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int minLines=0x01010156; + /** Minimum height that the AppWidget can be resized to. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int minResizeHeight=0x01010396; + /** Minimum width that the AppWidget can be resized to. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int minResizeWidth=0x01010395; + /** This is the minimum SDK version number that the application + requires. This number is an abstract integer, from the list + in {@link android.os.Build.VERSION_CODES} If + not supplied, the application will work on any SDK. This + may also be string (such as "Donut") if the application was built + against a development branch, in which case it will only work against + the development builds. +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int minSdkVersion=0x0101020c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int minWidth=0x0101013f; + /** The minimum arc angle in degrees between the start and end points when + they are close to horizontal. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int minimumHorizontalAngle=0x0101047d; + /** The minimum arc angle in degrees between the start and end points when + they are close to vertical. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int minimumVerticalAngle=0x0101047e; + /** Enables or disables the mipmap hint. See + {@link android.graphics.Bitmap#setHasMipMap(boolean)} for more information. + Default value is false. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int mipMap=0x010103cd; + /** Defines if the associated drawables need to be mirrored when in RTL mode. + Default is false +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int mirrorForRtl=0x010103ce; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
oneLine1 Always show only the first line.
collapsing2 When selected show both lines, otherwise show only the first line. + This is the default mode.
twoLine3 Always show both lines.
+ */ + public static final int mode=0x0101017e; + /** 'More' icon. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int moreIcon=0x01010135; + /** Declare that code from this application will need to be loaded into other + applications' processes. On devices that support multiple instruction sets, + this implies the code might be loaded into a process that's using any of the devices + supported instruction sets. + +

The system might treat such applications specially, for eg., by + extracting the application's native libraries for all supported instruction + sets or by compiling the application's dex code for all supported instruction + sets. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int multiArch=0x0101048e; + /** Specify whether a component is allowed to have multiple instances + of itself running in different processes. Use with the activity + and provider tags. + +

Normally the system will ensure that all instances of a particular + component are only running in a single process. You can use this + attribute to disable that behavior, allowing the system to create + instances wherever they are used (provided permissions allow it). + This is most often used with content providers, so that instances + of a provider can be created in each client process, allowing them + to be used without performing IPC. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int multiprocess=0x01010013; + /** A unique name for the given item. This must use a Java-style naming + convention to ensure the name is unique, for example + "com.mycompany.MyName". +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int name=0x01010003; + /** The color for the navigation bar. If the color is not opaque, consider setting + {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_STABLE} and + {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION}. + For this to take effect, the window must be drawing the system bar backgrounds with + {@link android.R.attr#windowDrawsSystemBarBackgrounds} and the navigation bar must not + have been requested to be translucent with + {@link android.R.attr#windowTranslucentNavigation}. + Corresponds to {@link android.view.Window#setNavigationBarColor(int)}. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationBarColor=0x01010452; + /** Text to set as the content description for the navigation button + located at the start of the toolbar. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x010104c1; + /** Icon drawable to use for the navigation button located at + the start of the toolbar. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x010104c0; + /** The type of navigation to use. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0 Normal static title text
listMode1 The action bar will use a selection list for navigation.
tabMode2 The action bar will use a series of horizontal tabs for navigation.
+ */ + public static final int navigationMode=0x010102cf; + /** The negative button text for the dialog. Set to @null to hide the negative button. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int negativeButtonText=0x010101f6; + /** Specifies that this view should permit nested scrolling within a compatible + ancestor view. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int nestedScrollingEnabled=0x01010436; + /** Defines the next view to give focus to when the next focus is + {@link android.view.View#FOCUS_DOWN} + + If the reference refers to a view that does not exist or is part + of a hierarchy that is invisible, a {@link java.lang.RuntimeException} + will result when the reference is accessed. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int nextFocusDown=0x010100e4; + /** Defines the next view to give focus to when the next focus is + {@link android.view.View#FOCUS_FORWARD} + + If the reference refers to a view that does not exist or is part + of a hierarchy that is invisible, a {@link java.lang.RuntimeException} + will result when the reference is accessed. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int nextFocusForward=0x0101033c; + /** Defines the next view to give focus to when the next focus is + {@link android.view.View#FOCUS_LEFT}. + + If the reference refers to a view that does not exist or is part + of a hierarchy that is invisible, a {@link java.lang.RuntimeException} + will result when the reference is accessed. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int nextFocusLeft=0x010100e1; + /** Defines the next view to give focus to when the next focus is + {@link android.view.View#FOCUS_RIGHT} + + If the reference refers to a view that does not exist or is part + of a hierarchy that is invisible, a {@link java.lang.RuntimeException} + will result when the reference is accessed. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int nextFocusRight=0x010100e2; + /** Defines the next view to give focus to when the next focus is + {@link android.view.View#FOCUS_UP} + + If the reference refers to a view that does not exist or is part + of a hierarchy that is invisible, a {@link java.lang.RuntimeException} + will result when the reference is accessed. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int nextFocusUp=0x010100e3; + /** Specify whether an activity should be kept in its history stack. + If this attribute is set, then as soon as the user navigates away + from the activity it will be finished and they will no longer be + able to return to it. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int noHistory=0x0101022d; + /** Indicates whether an application supports the normal screen + form-factors. Traditionally this is an HVGA normal density + screen, but WQVGA low density and WVGA high density are also + considered to be normal. This attribute is true by default, + and applications currently should leave it that way. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int normalScreens=0x01010285; + /** The minimal period in milliseconds between two accessibility events of the same type + are sent to this serivce. This setting can be changed at runtime by calling + {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) + android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int notificationTimeout=0x01010383; + /** Defines how many columns to show. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto_fit-1 Display as many columns as possible to fill the available space.
+ */ + public static final int numColumns=0x01010118; + /** The number of stars (or rating items) to show. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int numStars=0x01010144; + public static final int numberPickerStyle=0x0116001e; + /** The background color for the hours/minutes numbers. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int numbersBackgroundColor=0x010104a2; + /** The color for the inner hours numbers used in 24-hour mode. This + should be a color state list where the activated state will be + used when the number is active. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int numbersInnerTextColor=0x010104e1; + /** The color for the hours/minutes selector. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int numbersSelectorColor=0x010104a3; + /** The color for the hours/minutes numbers. This should be a color + state list where the activated state will be used when the number + is active. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int numbersTextColor=0x010104a1; + /** If set, specifies that this TextView has a numeric input method. + The default is false. + {@deprecated Use inputType instead.} +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
integer0x01 Input is numeric.
signed0x03 Input is numeric, with sign allowed.
decimal0x05 Input is numeric, with decimals allowed.
+ */ + @Deprecated + public static final int numeric=0x01010165; + /** The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key) + keyboard. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int numericShortcut=0x010101e4; + /** Name of the method in this View's context to invoke when the view is + clicked. This name must correspond to a public method that takes + exactly one parameter of type View. For instance, if you specify + android:onClick="sayHello", you must declare a + public void sayHello(View v) method of your context + (typically, your Activity). +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int onClick=0x0101026f; + /** If true, the animation will only run a single time and then + stop. If false (the default), it will continually run, + restarting at the first frame after the last has finished. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int oneshot=0x01010197; + /** Indicates the opacity of the layer. This can be useful to allow the + system to enable drawing optimizations. The default value is + translucent. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
opaque-1 Indicates that the layer is opaque and contains no transparent + nor translucent pixels.
transparent-2 The layer is completely transparent (no pixel will be drawn.)
translucent-3 The layer has translucent pixels.
+ */ + public static final int opacity=0x0101031e; + /** The order for the Preference (lower values are to be ordered first). If this is not + specified, the default ordering will be alphabetic. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int order=0x010101ea; + /** The order within the category applied to all items within this group. + (This will be or'ed with the category attribute.) +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int orderInCategory=0x010101df; + /** Name of the property being animated. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
together0 child animations should be played together.
sequentially1 child animations should be played sequentially, in the same order as the xml.
+ */ + public static final int ordering=0x010102e2; + /** Whether to order the Preference under this group as they appear in the XML file. + If this is false, the ordering will follow the Preference order attribute and + default to alphabetic for those without the order attribute. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int orderingFromXml=0x010101e7; + /** Standard orientation constant. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
horizontal0 Defines an horizontal widget.
vertical1 Defines a vertical widget.
+ */ + public static final int orientation=0x010100c4; + /** Identifier for the animation to use when a view is hidden. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int outAnimation=0x01010178; + /** ViewOutlineProvider used to determine the View's Outline. +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
background0 Default, background drawable-driven outline.
none1 No outline provider.
bounds2 Generates an opaque outline for the bounds of the view.
paddedBounds3 Generates an opaque outline for the padded bounds of the view.
+ */ + public static final int outlineProvider=0x010104b8; + /** Drawable to draw below list content. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int overScrollFooter=0x010102c3; + /** Drawable to draw above list content. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int overScrollHeader=0x010102c2; + /** Defines over-scrolling behavior. This property is used only if the + View is scrollable. Over-scrolling is the ability for the user to + receive feedback when attempting to scroll beyond meaningful content. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
always0 Always show over-scroll effects, even if the content fits entirely + within the available space.
ifContentScrolls1 Only show over-scroll effects if the content is large + enough to meaningfully scroll.
never2 Never show over-scroll effects.
+ */ + public static final int overScrollMode=0x010102c1; + /** Whether the popup window should overlap its anchor view. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x01010462; + /** Set true when this subtype should be selected by default if no other subtypes are + selected explicitly. Note that a subtype with this parameter being true will + not be shown in the subtypes list. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overridesImplicitlyEnabledSubtype=0x010103a2; + /** Comma separated package names from which this serivce would like to receive events (leave out for all packages). + {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) + android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int packageNames=0x01010381; + /** Sets the padding, in pixels, of all four edges. Padding is defined as + space between the edges of the view and the view's content. A views size + will include it's padding. If a {@link android.R.attr#background} + is provided, the padding will initially be set to that (0 if the + drawable does not have padding). Explicitly setting a padding value + will override the corresponding padding found in the background. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int padding=0x010100d5; + /** Sets the padding, in pixels, of the bottom edge; see {@link android.R.attr#padding}. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingBottom=0x010100d9; + /** Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x010103b4; + /** Sets the padding, in pixels, of the left edge; see {@link android.R.attr#padding}. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingLeft=0x010100d6; + /** Indicates how layer padding should affect the bounds of subsequent layers. + The default padding mode value is nest. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
nest0 Nest each layer inside the padding of the previous layer.
stack1 Stack each layer directly atop the previous layer.
+ */ + public static final int paddingMode=0x01010457; + /** Sets the padding, in pixels, of the right edge; see {@link android.R.attr#padding}. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingRight=0x010100d8; + /** Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x010103b3; + /** Sets the padding, in pixels, of the top edge; see {@link android.R.attr#padding}. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingTop=0x010100d7; + /** The background of a panel when it is inset from the left and right edges of the screen. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int panelBackground=0x0101005e; + /** Color that matches (as closely as possible) the panel background. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int panelColorBackground=0x01010061; + /** Default color of foreground panel imagery. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int panelColorForeground=0x01010060; + /** The background of a panel when it extends to the left and right edges of the screen. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int panelFullBackground=0x0101005f; + /** Default appearance of panel text. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelTextAppearance=0x01010062; + /** The name of the logical parent of the activity as it appears in the manifest. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int parentActivityName=0x010103a7; + /** Whether the characters of the field are displayed as + password dots instead of themselves. + {@deprecated Use inputType instead.} +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @Deprecated + public static final int password=0x0101015c; + /** Specify a URI path that must exactly match, as per + {@link android.os.PatternMatcher} with + {@link android.os.PatternMatcher#PATTERN_LITERAL}. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int path=0x0101002a; + /** The specification of the operations that define the path +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pathData=0x01010405; + /** Specify a URI path that matches a simple pattern, as per + {@link android.os.PatternMatcher} with + {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}. + Note that because '\' is used as an escape character when + reading the string from XML (before it is parsed as a pattern), + you will need to double-escape: for example a literal "*" would + be written as "\\*" and a literal "\" would be written as + "\\\\". This is basically the same as what you would need to + write if constructing the string in Java code. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pathPattern=0x0101002c; + /** Specify a URI path that must be a prefix to match, as per + {@link android.os.PatternMatcher} with + {@link android.os.PatternMatcher#PATTERN_PREFIX}. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pathPrefix=0x0101002b; + /** The path string describing the pattern to use for the PathPathMotion. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int patternPathData=0x010104ca; + /** Specify a permission that a client is required to have in order to + use the associated object. If the client does not hold the named + permission, its request will fail. See the + Security and Permissions + document for more information on permissions. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int permission=0x01010006; + /** Flags indicating more context for a permission. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
costsMoney0x0001 Set to indicate that this permission allows an operation that + may cost the user money. Such permissions may be highlighted + when shown to the user with this additional information.
hidden0x2 Additional flag from base permission type: this permission is hidden + and should not show in the UI.
+ */ + public static final int permissionFlags=0x010103c7; + /** Specified the name of a group that this permission is associated + with. The group must have been defined with the + {@link android.R.styleable#AndroidManifestPermissionGroup permission-group} tag. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int permissionGroup=0x0101000a; + /** Flags indicating more context for a permission group. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + +
ConstantValueDescription
personalInfo0x0001 Set to indicate that this permission group contains permissions + protecting access to some information that is considered + personal to the user (such as contacts, e-mails, etc).
+ */ + public static final int permissionGroupFlags=0x010103c5; + /** Define how an activity persist across reboots. Activities defined as "never" will not + be persisted. Those defined as "always" will be persisted. Those defined as "taskOnly" + will persist the root activity of the task only. See below for more detail as to + what gets persisted. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
persistRootOnly0 The default. If this activity forms the root of a task then that task will be + persisted across reboots but only the launching intent will be used. If the task + relinquishes its identity then the intent used is that of the topmost inherited + identity. All activities above this activity in the task will not be persisted. + In addition this activity will not be passed a PersistableBundle into which it + could have stored its state.
persistNever1 If this activity forms the root of a task then that task will not be persisted + across reboots
persistAcrossReboots2 If this activity forms the root of a task then the task and this activity will + be persisted across reboots. If the activity above this activity is also + tagged with the attribute "persist" then it will be persisted as well. + And so on up the task stack until either an activity without the + persistableMode="persistAcrossReboots" attribute or one that was launched + with the flag Intent.FLAG_CLEAR_TASK_WHEN_RESET is encountered. + +

Activities that are declared with the persistAcrossReboots attribute will be + provided with a PersistableBundle in onSavedInstanceState(), These activities may + use this PeristableBundle to save their state. Then, following a reboot, that + PersistableBundle will be provided back to the activity in its onCreate() method.

+ */ + public static final int persistableMode=0x0101042d; + /** Flag to control special persistent mode of an application. This should + not normally be used by applications; it requires that the system keep + your application running at all times. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int persistent=0x0101000d; + /** Defines the persistence of the drawing cache. The drawing cache might be + enabled by a ViewGroup for all its children in specific situations (for + instance during a scrolling.) This property lets you persist the cache + in memory after its initial usage. Persisting the cache consumes more + memory but may prevent frequent garbage collection is the cache is created + over and over again. By default the persistence is set to scrolling. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0x0 The drawing cache is not persisted after use.
animation0x1 The drawing cache is persisted after a layout animation.
scrolling0x2 The drawing cache is persisted after a scroll.
all0x3 The drawing cache is always persisted.
+ */ + public static final int persistentDrawingCache=0x010100ee; + /** If set, specifies that this TextView has a phone number input + method. The default is false. + {@deprecated Use inputType instead.} +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @Deprecated + public static final int phoneNumber=0x01010167; + /**

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pivotX=0x010101b5; + /**

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pivotY=0x010101b6; + public static final int pointerStyle=0x01160030; + /** The animation style to use for the popup window. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupAnimationStyle=0x010102c9; + /** The background to use for the popup window. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int popupBackground=0x01010176; + /** The characters to display in the popup keyboard. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int popupCharacters=0x01010244; + /** Window elevation to use for the popup window. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int popupElevation=0x0101048c; + /** The XML keyboard layout of any popup keyboard. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupKeyboard=0x01010243; + /** Layout resource for popup keyboards. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupLayout=0x0101023b; + /** Default PopupMenu style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x01010300; + /** Reference to a theme that should be used to inflate popups + shown by widgets in the toolbar. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x010104a9; + /** Default PopupWindow style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x01010076; + /** Specify a URI authority port that is handled, as per + {@link android.content.IntentFilter#addDataAuthority + IntentFilter.addDataAuthority()}. If a host is supplied + but not a port, any port is matched. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int port=0x01010029; + /** The positive button text for the dialog. Set to @null to hide the positive button. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int positiveButtonText=0x010101f5; + public static final int preferenceActivityStyle=0x01160021; + /** Default style for PreferenceCategory. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceCategoryStyle=0x0101008c; + public static final int preferenceFragmentStyle=0x01160022; + public static final int preferenceFrameLayoutStyle=0x0116002f; + /** Default style for informational Preference. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceInformationStyle=0x0101008d; + /** The preference layout that has the child/tabbed effect. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceLayoutChild=0x01010094; + /** Default style for PreferenceScreen. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceScreenStyle=0x0101008b; + /** Default style for Preference. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int preferenceStyle=0x0101008e; + /** Theme to use for presentations spawned from this theme. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int presentationTheme=0x010103c0; + /** A preview of what the AppWidget will look like after it's configured. + If not supplied, the AppWidget's icon will be used. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int previewImage=0x010102da; + /** Specify the relative importance or ability in handling a particular + Intent. For receivers, this controls the order in which they are + executed to receive a broadcast (note that for + asynchronous broadcasts, this order is ignored). For activities, + this provides information about how good an activity is handling an + Intent; when multiple activities match an intent and have different + priorities, only those with the higher priority value will be + considered a match. + +

Only use if you really need to impose some specific + order in which the broadcasts are received, or want to forcibly + place an activity to always be preferred over others. The value is a + single integer, with higher numbers considered to be better. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int priority=0x0101001c; + /** An addition content type description to supply to the input + method attached to the text view, which is private to the + implementation of the input method. This simply fills in + the {@link android.view.inputmethod.EditorInfo#privateImeOptions + EditorInfo.privateImeOptions} field when the input + method is connected. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int privateImeOptions=0x01010223; + /** Specify a specific process that the associated code is to run in. + Use with the application tag (to supply a default process for all + application components), or with the activity, receiver, service, + or provider tag (to supply a specific icon for that component). + +

Application components are normally run in a single process that + is created for the entire application. You can use this tag to modify + where they run. If the process name begins with a ':' character, + a new process private to that application will be created when needed + to run that component (allowing you to spread your application across + multiple processes). If the process name begins with a lower-case + character, the component will be run in a global process of that name, + provided that you have permission to do so, allowing multiple + applications to share one process to reduce resource usage. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int process=0x01010011; + /** Defines the default progress value, between 0 and max. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progress=0x01010137; + /** Tint to apply to the progress indicator background. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBackgroundTint=0x01010465; + /** Blending mode used to apply the progress indicator background tint. +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+ */ + public static final int progressBackgroundTintMode=0x01010466; + /** Specifies the horizontal padding on either end for an embedded progress bar. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x01010319; + /** Default ProgressBar style. This is a medium circular progress bar. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x01010077; + /** Horizontal ProgressBar style. This is a horizontal progress bar. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyleHorizontal=0x01010078; + /** Inverse ProgressBar style. This is a medium circular progress bar. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyleInverse=0x01010287; + /** Large ProgressBar style. This is a large circular progress bar. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyleLarge=0x0101007a; + /** Large inverse ProgressBar style. This is a large circular progress bar. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyleLargeInverse=0x01010289; + /** Small ProgressBar style. This is a small circular progress bar. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyleSmall=0x01010079; + /** Small inverse ProgressBar style. This is a small circular progress bar. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyleSmallInverse=0x01010288; + /** Small ProgressBar in title style. This is a small circular progress bar that will be placed in title bars. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyleSmallTitle=0x0101020f; + /** Drawable used for the progress mode. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressDrawable=0x0101013c; + /** Tint to apply to the progress indicator. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressTint=0x01010463; + /** Blending mode used to apply the progress indicator tint. +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+ */ + public static final int progressTintMode=0x01010464; + /** The prompt to display when the spinner's dialog is shown. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int prompt=0x0101017b; + /** Name of the property being animated. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int propertyName=0x010102e1; + /** Name of the property being animated as the X coordinate of the pathData. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int propertyXName=0x01010474; + /** Name of the property being animated as the Y coordinate of the pathData. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int propertyYName=0x01010475; + /** Characterizes the potential risk implied in a permission and + indicates the procedure the system should follow when determining + whether to grant the permission to an application requesting it. {@link + android.Manifest.permission Standard permissions} have a predefined and + permanent protectionLevel. If you are creating a custom permission in an + application, you can define a protectionLevel attribute with one of the + values listed below. If no protectionLevel is defined for a custom + permission, the system assigns the default ("normal"). +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + +
ConstantValueDescription
normal0 A lower-risk permission that gives an application access to isolated + application-level features, with minimal risk to other applications, + the system, or the user. The system automatically grants this type + of permission to a requesting application at installation, without + asking for the user's explicit approval (though the user always + has the option to review these permissions before installing).
dangerous1 A higher-risk permission that would give a requesting application + access to private user data or control over the device that can + negatively impact the user. Because this type of permission + introduces potential risk, the system may not automatically + grant it to the requesting application. For example, any dangerous + permissions requested by an application may be displayed to the + user and require confirmation before proceeding, or some other + approach may be taken to avoid the user automatically allowing + the use of such facilities.
signature2 A permission that the system is to grant only if the requesting + application is signed with the same certificate as the application + that declared the permission. If the certificates match, the system + automatically grants the permission without notifying the user or + asking for the user's explicit approval.
signatureOrSystem3 A permission that the system is to grant only to packages in the + Android system image or that are signed with the same + certificates. Please avoid using this option, as the + signature protection level should be sufficient for most needs and + works regardless of exactly where applications are installed. This + permission is used for certain special situations where multiple + vendors have applications built in to a system image which need + to share specific features explicitly because they are being built + together.
privileged0x10 Additional flag from base permission type: this permission can also + be granted to any applications installed as privileged apps on the system image. + Please avoid using this option, as the + signature protection level should be sufficient for most needs and + works regardless of exactly where applications are installed. This + permission flag is used for certain special situations where multiple + vendors have applications built in to a system image which need + to share specific features explicitly because they are being built + together.
system0x10 Old synonym for "privileged".
development0x20 Additional flag from base permission type: this permission can also + (optionally) be granted to development applications.
appop0x40 Additional flag from base permission type: this permission is closely + associated with an app op for controlling access.
pre230x80 Additional flag from base permission type: this permission can be automatically + granted to apps that target API levels below + {@link android.os.Build.VERSION_CODES#M} (before runtime permissions + were introduced).
installer0x100 Additional flag from base permission type: this permission can be automatically + granted to system apps that install packages.
verifier0x200 Additional flag from base permission type: this permission can be automatically + granted to system apps that verify packages.
preinstalled0x400 Additional flag from base permission type: this permission can be automatically + granted any application pre-installed on the system image (not just privileged + apps).
+ */ + public static final int protectionLevel=0x01010009; + /** The attribute that holds a Base64-encoded public key. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int publicKey=0x010103a6; + /** If you wish to handle an action key during normal search query entry, you + must define an action string here. This will be added to the + {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to your + searchable activity. To examine the string, use + {@link android.content.Intent#getStringExtra getStringExtra(SearchManager.ACTION_MSG)}. + Optional attribute. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryActionMsg=0x010101db; + /** If provided and true, this searchable activity will be invoked for all + queries in a particular session. If set to false and the activity + returned zero results for a query, it will not be invoked again in that session for + supersets of that zero-results query. For example, if the activity returned zero + results for "bo", it would not be queried again for "bob". + The default value is false. Optional attribute.. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryAfterZeroResults=0x01010282; + /** Background for the section containing the search query +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x01010487; + /** An optional query hint string to be displayed in the empty query field. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x01010358; + /** Default quickcontact badge style with large quickcontact window. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int quickContactBadgeStyleSmallWindowLarge=0x010102b3; + /** Default quickcontact badge style with medium quickcontact window. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int quickContactBadgeStyleSmallWindowMedium=0x010102b2; + /** Default quickcontact badge style with small quickcontact window. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int quickContactBadgeStyleSmallWindowSmall=0x010102b1; + /** Default quickcontact badge style with large quickcontact window. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int quickContactBadgeStyleWindowLarge=0x010102b0; + /** Default quickcontact badge style with medium quickcontact window. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int quickContactBadgeStyleWindowMedium=0x010102af; + /** Default quickcontact badge style with small quickcontact window. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int quickContactBadgeStyleWindowSmall=0x010102ae; + /** Default RadioButton style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x0101007e; + /** Defines the radius of the four corners. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int radius=0x010101a8; + /** The rating to set by default. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rating=0x01010145; + /** Default RatingBar style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x0101007c; + /** Indicator RatingBar style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleIndicator=0x01010210; + /** Small indicator RatingBar style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleSmall=0x0101007d; + /** A specific {@link android.R.attr#permission} name for read-only + access to a {@link android.content.ContentProvider}. See the + Security and Permissions + document for more information on permissions. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int readPermission=0x01010007; + /** The service that provides voice recognition. This is required. When the user + selects this voice interaction service, they will also be implicitly selecting + the component here for their recognition service. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int recognitionService=0x0101049c; + /** Tasks whose root has this attribute set to true will replace baseIntent with that of the + next activity in the task. If the next activity also has this attribute set to true then + it will yield the baseIntent to any activity that it launches in the same task. This + continues until an activity is encountered which has this attribute set to false. False + is the default. This attribute set to true also permits activity's use of the + TaskDescription to change labels, colors and icons in the recent task list. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int relinquishTaskIdentity=0x01010476; + /** Tells ChangeTransform to track parent changes. Default is true. Corresponds to + {@link android.transition.ChangeTransform#setReparent(boolean)}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reparent=0x010104bc; + /** A parent change should use an overlay or affect the transform of the + transitionining View. Default is true. Corresponds to + {@link android.transition.ChangeTransform#setReparentWithOverlay(boolean)}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reparentWithOverlay=0x010104bd; + /** Defines how many times the animation should repeat. The default value is 0. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
infinite-1
+ */ + public static final int repeatCount=0x010101bf; + /** Defines the animation behavior when it reaches the end and the repeat count is + greater than 0 or infinite. The default value is restart. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
restart1 The animation starts again from the beginning.
reverse2 The animation plays backward.
+ */ + public static final int repeatMode=0x010101c0; + /** Application's requirement for five way navigation +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reqFiveWayNav=0x01010232; + /** Application's requirement for a hard keyboard +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reqHardKeyboard=0x01010229; + /** The input method preferred by an application. +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
undefined0
nokeys1
qwerty2
twelvekey3
+ */ + public static final int reqKeyboardType=0x01010228; + /** The navigation device preferred by an application. +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
undefined0
nonav1
dpad2
trackball3
wheel4
+ */ + public static final int reqNavigation=0x0101022a; + /** The touch screen type used by an application. +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
undefined0
notouch1
stylus2
finger3
+ */ + public static final int reqTouchScreen=0x01010227; + /** Whether the device must be unlocked before routing data to this service. + The default is false. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int requireDeviceUnlock=0x010103ec; + /** Specify whether this feature is required for the application. + The default is true, meaning the application requires the + feature, and does not want to be installed on devices that + don't support it. If you set this to false, then this will + not impose a restriction on where the application can be + installed. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int required=0x0101028e; + /** Declare that this application requires an account of a certain + type. The default value is null and indicates that the application can work without + any accounts. The type should correspond to the account authenticator type, such as + "com.google". +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int requiredAccountType=0x010103d6; + /** Flag to specify if this application needs to be present for all users. Only pre-installed + applications can request this feature. Default value is false. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int requiredForAllUsers=0x010103d0; + /** Defines which edges should be faded on scrolling. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0x00000000 No edge is faded.
horizontal0x00001000 Fades horizontal edges only.
vertical0x00002000 Fades vertical edges only.
+ */ + public static final int requiresFadingEdge=0x010103a5; + /** Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}, + this is the new way to specify the minimum screen size an application is + compatible with. This attribute provides the required minimum + "smallest screen width" (as per the -swNNNdp resource configuration) + that the application can run on. For example, a typical phone + screen is 320, a 7" tablet 600, and a 10" tablet 720. If the + smallest screen width of the device is below the value supplied here, + then the application is considered incompatible with that device. + If not supplied, then any old smallScreens, normalScreens, largeScreens, + or xlargeScreens attributes will be used instead. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int requiresSmallestWidthDp=0x01010364; + /** Resize the view by adjusting the clipBounds rather than changing the + dimensions of the view itself. The default value is false. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int resizeClip=0x010104cf; + /** Optional parameter which indicates if and how this widget can be + resized. Supports combined values using | operator. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0x0
horizontal0x1
vertical0x2
+ */ + public static final int resizeMode=0x01010363; + /** Indicates whether the application can resize itself to newer + screen sizes. This is mostly used to distinguish between old + applications that may not be compatible with newly introduced + screen sizes and newer applications that should be; it will be + set for you automatically based on whether you are targeting + a newer platform that supports more screens. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int resizeable=0x0101028d; + /** Resource identifier to assign to this piece of named meta-data. + The resource identifier can later be retrieved from the meta data + Bundle through {@link android.os.Bundle#getInt Bundle.getInt}. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int resource=0x01010025; + /** Indicate that the application is prepared to attempt a restore of any + backed-up dataset, even if the backup is apparently from a newer version + of the application than is currently installed on the device. Setting + this attribute to true will permit the Backup Manager to + attempt restore even when a version mismatch suggests that the data are + incompatible. Use with caution! + +

The default value of this attribute is false. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int restoreAnyVersion=0x010102ba; + /** @deprecated This attribute is not used by the Android operating system. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @Deprecated + public static final int restoreNeedsApplication=0x0101029d; + /** Declare that this application requires access to restricted accounts of a certain + type. The default value is null and restricted accounts won\'t be visible to this + application. The type should correspond to the account authenticator type, such as + "com.google". +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int restrictedAccountType=0x010103d5; + /**

Must be one of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
hidden0
bool1
choice2
multi-select4
integer5
string6
bundle7
bundle_array8
+ */ + public static final int restrictionType=0x01010493; + /** Indicate that it is okay for this activity be resumed while the previous + activity is in the process of pausing, without waiting for the previous pause + to complete. Use this with caution: your activity can not acquire any exclusive + resources (such as opening the camera or recording audio) when it launches, or it + may conflict with the previous activity and fail. + +

The default value of this attribute is false. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int resumeWhilePausing=0x010104b2; + /** Whether this transition is reversible. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reversible=0x0101044b; + /** Internal revision code. This number is the number used to determine + whether one APK is more recent than another: it has no other meaning + than that higher numbers are more recent. This value is only meaningful + when the two {@link android.R.attr#versionCode} values are already + identical. When an app is delivered as multiple split APKs, each + APK may have a different revisionCode value. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int revisionCode=0x010104d5; + /** Amount of right padding inside the gradient shape. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int right=0x010101af; + /** Default style for RingtonePreference. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ringtonePreferenceStyle=0x01010093; + /** Which ringtone type(s) to show in the picker. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
ringtone1 Ringtones.
notification2 Notification sounds.
alarm4 Alarm sounds.
all7 All available ringtone sounds.
+ */ + public static final int ringtoneType=0x010101f9; + /** rotation of the view, in degrees. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rotation=0x01010326; + /** rotation of the view around the x axis, in degrees. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rotationX=0x01010327; + /** rotation of the view around the y axis, in degrees. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rotationY=0x01010328; + /** The maxmimum number of rows to create when automatically positioning children. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rowCount=0x01010375; + /** Fraction of the animation duration used to delay the beginning of + the animation of each row. +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rowDelay=0x010101d0; + /** Row edge flags. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top4 Row is anchored to the top of the keyboard.
bottom8 Row is anchored to the bottom of the keyboard.
+ */ + public static final int rowEdgeFlags=0x01010241; + /** Defines the height of each row. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rowHeight=0x01010132; + /** When set to true, forces row boundaries to appear in the same order + as row indices. + The default is true. + See {@link android.widget.GridLayout#setRowOrderPreserved(boolean)}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rowOrderPreserved=0x01010376; + /** If false, no state will be saved for this view when it is being + frozen. The default is true, allowing the view to be saved + (however it also must have an ID assigned to it for its + state to be saved). Setting this to false only disables the + state for this view, not for its children which may still + be saved. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int saveEnabled=0x010100e7; + /** Specifies where the drawable is positioned after scaling. The default value is + left. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+ */ + public static final int scaleGravity=0x010101fe; + /** Scale height, expressed as a percentage of the drawable's bound. The value's + format is XX%. For instance: 100%, 12.5%, etc. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scaleHeight=0x010101fd; + /** Controls how the image should be resized or moved to match the size + of this ImageView. See {@link android.widget.ImageView.ScaleType} +

Must be one of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
matrix0 Scale using the image matrix when drawing. See + {@link android.widget.ImageView#setImageMatrix(Matrix)}.
fitXY1 Scale the image using {@link android.graphics.Matrix.ScaleToFit#FILL}.
fitStart2 Scale the image using {@link android.graphics.Matrix.ScaleToFit#START}.
fitCenter3 Scale the image using {@link android.graphics.Matrix.ScaleToFit#CENTER}.
fitEnd4 Scale the image using {@link android.graphics.Matrix.ScaleToFit#END}.
center5 Center the image in the view, but perform no scaling.
centerCrop6 Scale the image uniformly (maintain the image's aspect ratio) so both dimensions + (width and height) of the image will be equal to or larger than the corresponding + dimension of the view (minus padding). The image is then centered in the view.
centerInside7 Scale the image uniformly (maintain the image's aspect ratio) so that both + dimensions (width and height) of the image will be equal to or less than the + corresponding dimension of the view (minus padding). The image is then centered in + the view.
+ */ + public static final int scaleType=0x0101011d; + /** Scale width, expressed as a percentage of the drawable's bound. The value's + format is XX%. For instance: 100%, 12.5%, etc. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scaleWidth=0x010101fc; + /** scale of the view in the x direction. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scaleX=0x01010324; + /** scale of the view in the y direction. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scaleY=0x01010325; + /** Specify a URI scheme that is handled, as per + {@link android.content.IntentFilter#addDataScheme + IntentFilter.addDataScheme()}. +

Note: scheme matching in the Android framework is + case-sensitive, unlike the formal RFC. As a result, + schemes here should always use lower case letters.

+

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scheme=0x01010027; + /** Specifies a compatible screen density, as per the device + configuration screen density bins. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
ldpi120 A low density screen, approximately 120dpi.
mdpi160 A medium density screen, approximately 160dpi.
hdpi240 A high density screen, approximately 240dpi.
xhdpi320 An extra high density screen, approximately 320dpi.
xxhdpi480 An extra extra high density screen, approximately 480dpi.
xxxhdpi640 An extra extra extra high density screen, approximately 640dpi.
+ */ + public static final int screenDensity=0x010102cb; + /** Specify the orientation an activity should be run in. If not + specified, it will run in the current preferred orientation + of the screen. +

This attribute is supported by the {@code <activity>} + element. +

Must be one of the following constant values.

+ ++++ + + + + + + + + + + + + + + + + +
ConstantValueDescription
unspecified-1 No preference specified: let the system decide the best + orientation. This will either be the orientation selected + by the activity below, or the user's preferred orientation + if this activity is the bottom of a task. If the user + explicitly turned off sensor based orientation through settings + sensor based device rotation will be ignored. If not by default + sensor based orientation will be taken into account and the + orientation will changed based on how the user rotates the device. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_UNSPECIFIED}.
landscape0 Would like to have the screen in a landscape orientation: that + is, with the display wider than it is tall, ignoring sensor data. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_LANDSCAPE}.
portrait1 Would like to have the screen in a portrait orientation: that + is, with the display taller than it is wide, ignoring sensor data. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_PORTRAIT}.
user2 Use the user's current preferred orientation of the handset. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_USER}.
behind3 Keep the screen in the same orientation as whatever is behind + this activity. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_BEHIND}.
sensor4 Orientation is determined by a physical orientation sensor: + the display will rotate based on how the user moves the device. + Ignores user's setting to turn off sensor-based rotation. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_SENSOR}.
nosensor5 Always ignore orientation determined by orientation sensor: + the display will not rotate when the user moves the device. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_NOSENSOR}.
sensorLandscape6 Would like to have the screen in landscape orientation, but can + use the sensor to change which direction the screen is facing. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_SENSOR_LANDSCAPE}.
sensorPortrait7 Would like to have the screen in portrait orientation, but can + use the sensor to change which direction the screen is facing. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_SENSOR_PORTRAIT}.
reverseLandscape8 Would like to have the screen in landscape orientation, turned in + the opposite direction from normal landscape. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_REVERSE_LANDSCAPE}.
reversePortrait9 Would like to have the screen in portrait orientation, turned in + the opposite direction from normal portrait. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_REVERSE_PORTRAIT}.
fullSensor10 Orientation is determined by a physical orientation sensor: + the display will rotate based on how the user moves the device. + This allows any of the 4 possible rotations, regardless of what + the device will normally do (for example some devices won't + normally use 180 degree rotation). + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_FULL_SENSOR}.
userLandscape11 Would like to have the screen in landscape orientation, but if + the user has enabled sensor-based rotation then we can use the + sensor to change which direction the screen is facing. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_USER_LANDSCAPE}.
userPortrait12 Would like to have the screen in portrait orientation, but if + the user has enabled sensor-based rotation then we can use the + sensor to change which direction the screen is facing. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_USER_PORTRAIT}.
fullUser13 Respect the user's sensor-based rotation preference, but if + sensor-based rotation is enabled then allow the screen to rotate + in all 4 possible directions regardless of what + the device will normally do (for example some devices won't + normally use 180 degree rotation). + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_FULL_USER}.
locked14 Screen is locked to its current rotation, whatever that is. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_LOCKED}.
+ */ + public static final int screenOrientation=0x0101001e; + /** Specifies a compatible screen size, as per the device + configuration screen size bins. +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
small200 A small screen configuration, at least 240x320dp.
normal300 A normal screen configuration, at least 320x480dp.
large400 A large screen configuration, at least 400x530dp.
xlarge500 An extra large screen configuration, at least 600x800dp.
+ */ + public static final int screenSize=0x010102ca; + /** Whether the text is allowed to be wider than the view (and + therefore can be scrolled horizontally). +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrollHorizontally=0x0101015b; + /** Defines which scroll indicators should be displayed when the view + can be scrolled. Multiple values may be combined using logical OR, + for example "top|bottom". +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x00 No scroll indicators are displayed.
top0x01 Displays top scroll indicator when view can be scrolled up.
bottom0x02 Displays bottom scroll indicator when vew can be scrolled down.
left0x04 Displays left scroll indicator when vew can be scrolled left.
right0x08 Displays right scroll indicator when vew can be scrolled right.
start0x10 Displays right scroll indicator when vew can be scrolled in the + start direction.
end0x20 Displays right scroll indicator when vew can be scrolled in the + end direction.
+ */ + public static final int scrollIndicators=0x010104e6; + /** Default ScrollView style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int scrollViewStyle=0x01010080; + /** The initial horizontal scroll offset, in pixels. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrollX=0x010100d2; + /** The initial vertical scroll offset, in pixels. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrollY=0x010100d3; + /** Defines whether the horizontal scrollbar track should always be drawn. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrollbarAlwaysDrawHorizontalTrack=0x01010068; + /** Defines whether the vertical scrollbar track should always be drawn. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrollbarAlwaysDrawVerticalTrack=0x01010069; + /** Defines the delay in milliseconds that a scrollbar waits before fade out. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrollbarDefaultDelayBeforeFade=0x010102a9; + /** Defines the delay in milliseconds that a scrollbar takes to fade out. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrollbarFadeDuration=0x010102a8; + /** Sets the width of vertical scrollbars and height of horizontal scrollbars. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrollbarSize=0x01010063; + /** Controls the scrollbar style and position. The scrollbars can be overlaid or + inset. When inset, they add to the padding of the view. And the + scrollbars can be drawn inside the padding area or on the edge of + the view. For example, if a view has a background drawable and you + want to draw the scrollbars inside the padding specified by the + drawable, you can use insideOverlay or insideInset. If you want them + to appear at the edge of the view, ignoring the padding, then you can + use outsideOverlay or outsideInset. +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
insideOverlay0x0 Inside the padding and overlaid
insideInset0x01000000 Inside the padding and inset
outsideOverlay0x02000000 Edge of the view and overlaid
outsideInset0x03000000 Edge of the view and inset
+ */ + public static final int scrollbarStyle=0x0101007f; + /** Defines the horizontal scrollbar thumb drawable. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int scrollbarThumbHorizontal=0x01010064; + /** Defines the vertical scrollbar thumb drawable. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int scrollbarThumbVertical=0x01010065; + /** Defines the horizontal scrollbar track drawable. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int scrollbarTrackHorizontal=0x01010066; + /** Defines the vertical scrollbar track drawable. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int scrollbarTrackVertical=0x01010067; + /** Defines which scrollbars should be displayed on scrolling or not. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0x00000000 No scrollbar is displayed.
horizontal0x00000100 Displays horizontal scrollbar only.
vertical0x00000200 Displays vertical scrollbar only.
+ */ + public static final int scrollbars=0x010100de; + /** When set to true, the list uses a drawing cache during scrolling. + This makes the rendering faster but uses more memory. The default + value is true. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int scrollingCache=0x010100fe; + /** If supplied, this string will be displayed as the text of the "Search" button. + Optional attribute. + {@deprecated This will create a non-standard UI appearance, because the search bar UI is + changing to use only icons for its buttons.} +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @Deprecated + public static final int searchButtonText=0x01010205; + public static final int searchDialogTheme=0x0116002e; + /** Search icon displayed as a text field hint +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x010104d4; + /** Search icon +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x01010483; + /** The actual keyphrase/hint text, or empty if not keyphrase dependent. @hide +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @android.annotation.SystemApi + public static final int searchKeyphrase=0x0101045f; + /** A globally unique ID for the keyphrase. @hide +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @android.annotation.SystemApi + public static final int searchKeyphraseId=0x0101045e; + /** Flags for supported recognition modes. @hide +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
voiceTrigger0x1
userIdentification0x2
+ */ + @android.annotation.SystemApi + public static final int searchKeyphraseRecognitionFlags=0x010104a6; + /** A comma separated list of BCP-47 language tag for locales that are supported + for this keyphrase, or empty if not locale dependent. @hide +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @android.annotation.SystemApi + public static final int searchKeyphraseSupportedLocales=0x01010460; + /** Additional features are controlled by mode bits in this field. Omitting + this field, or setting to zero, provides default behavior. Optional attribute. + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
showSearchLabelAsBadge0x04 If set, this flag enables the display of the search target (label) within the + search bar. If neither bad mode is selected, no badge will be shown.
showSearchIconAsBadge0x08This is deprecated.
The default + application icon is now always used, so this option is + obsolete.
queryRewriteFromData0x10 If set, this flag causes the suggestion column SUGGEST_COLUMN_INTENT_DATA to + be considered as the text for suggestion query rewriting. This should only + be used when the values in SUGGEST_COLUMN_INTENT_DATA are suitable for user + inspection and editing - typically, HTTP/HTTPS Uri's.
queryRewriteFromText0x20 If set, this flag causes the suggestion column SUGGEST_COLUMN_TEXT_1 to + be considered as the text for suggestion query rewriting. This should be used + for suggestions in which no query text is provided and the SUGGEST_COLUMN_INTENT_DATA + values are not suitable for user inspection and editing.
+ */ + public static final int searchMode=0x010101d5; + /** If provided, this string will be used to describe the searchable item in the + searchable items settings within system search settings. Optional + attribute. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int searchSettingsDescription=0x0101028a; + /** If provided, this is the trigger indicating that the searchable activity + provides suggestions as well. The value must be a fully-qualified content provider + authority (e.g. "com.example.android.apis.SuggestionProvider") and should match the + "android:authorities" tag in your content provider's manifest entry. Optional + attribute. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int searchSuggestAuthority=0x010101d6; + /** If provided, and not overridden by an action in the selected suggestion, this + string will be placed in the action field of the {@link android.content.Intent Intent} + when the user clicks a suggestion. Optional attribute. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int searchSuggestIntentAction=0x010101d9; + /** If provided, and not overridden by an action in the selected suggestion, this + string will be placed in the data field of the {@link android.content.Intent Intent} + when the user clicks a suggestion. Optional attribute. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int searchSuggestIntentData=0x010101da; + /** If provided, this will be inserted in the suggestions query Uri, after the authority + you have provide but before the standard suggestions path. Optional attribute. + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int searchSuggestPath=0x010101d7; + /** If provided, suggestion queries will be passed into your query function + as the selection parameter. Typically this will be a WHERE clause for your + database, and will contain a single question mark, which represents the actual query + string that has been typed by the user. If not provided, then the user query text + will be appended to the query Uri (after an additional "/".) Optional + attribute. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int searchSuggestSelection=0x010101d8; + /** If provided, this is the minimum number of characters needed to trigger + search suggestions. The default value is 0. Optional attribute. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int searchSuggestThreshold=0x0101026d; + /** Style for the search query widget. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x01010480; + /** Defines the secondary progress value, between 0 and max. This progress is drawn between + the primary progress and the background. It can be ideal for media scenarios such as + showing the buffering progress while the default progress shows the play progress. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int secondaryProgress=0x01010138; + /** Tint to apply to the secondary progress indicator. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int secondaryProgressTint=0x01010467; + /** Blending mode used to apply the secondary progress indicator tint. +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+ */ + public static final int secondaryProgressTintMode=0x01010468; + public static final int seekBarDialogPreferenceStyle=0x01160023; + public static final int seekBarPreferenceStyle=0x01160029; + /** Default SeekBar style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarStyle=0x0101007b; + /** Style for segmented buttons - a container that houses several buttons + with the appearance of a singel button broken into segments. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int segmentedButtonStyle=0x01010330; + /** If the text is selectable, select it all when the view takes + focus. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int selectAllOnFocus=0x0101015e; + /** Whether the Preference is selectable. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int selectable=0x010101e6; + /** Background drawable for bordered standalone items that need focus/pressed states. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x0101030e; + /** Background drawable for borderless standalone items that need focus/pressed states. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x0101045c; + /** @deprecated Drawable for the vertical bar shown at the beginning and at the end of the selected date. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + @Deprecated + public static final int selectedDateVerticalBar=0x01010347; + /** @deprecated The background color for the selected week. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + @Deprecated + public static final int selectedWeekBackgroundColor=0x01010342; + /** The service that hosts active voice interaction sessions. This is required. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int sessionService=0x0101043d; + /** Component name of an activity that allows the user to modify + the settings for this service. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int settingsActivity=0x01010225; + /** Component name of an activity for setup of this service. + The setup includes scanning channels and registering EPG data. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int setupActivity=0x010103f6; + /** Place a blurred shadow of text underneath the text, drawn with the + specified color. The text shadow produced does not interact with + properties on View that are responsible for real time shadows, + {@link android.R.styleable#View_elevation elevation} and + {@link android.R.styleable#View_translationZ translationZ}. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int shadowColor=0x01010161; + /** Horizontal offset of the text shadow. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int shadowDx=0x01010162; + /** Vertical offset of the text shadow. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int shadowDy=0x01010163; + /** Blur radius of the text shadow. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int shadowRadius=0x01010164; + /** Indicates what shape to fill with a gradient. +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
rectangle0 Rectangle shape, with optional rounder corners.
oval1 Oval shape.
line2 Line shape.
ring3 Ring shape.
+ */ + public static final int shape=0x0101019a; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int shareInterpolator=0x010101bb; + /** Specify the name of a user ID that will be shared between multiple + packages. By default, each package gets its own unique user-id. + By setting this value on two or more packages, each of these packages + will be given a single shared user ID, so they can for example run + in the same process. Note that for them to actually get the same + user ID, they must also be signed with the same signature. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int sharedUserId=0x0101000b; + /** Specify a label for the shared user UID of this package. This is + only used if you have also used android:sharedUserId. This must + be a reference to a string resource; it can not be an explicit + string. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int sharedUserLabel=0x01010261; + /** Whether the view of this Preference should be disabled when + this Preference is disabled. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int shouldDisableView=0x010101ee; + /** How this item should display in the Action Bar, if present. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0 Never show this item in an action bar, show it in the overflow menu instead. + Mutually exclusive with "ifRoom" and "always".
ifRoom1 Show this item in an action bar if there is room for it as determined + by the system. Favor this option over "always" where possible. + Mutually exclusive with "never" and "always".
always2 Always show this item in an actionbar, even if it would override + the system's limits of how much stuff to put there. This may make + your action bar look bad on some screens. In most cases you should + use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".
withText4 When this item is shown as an action in the action bar, show a text + label with it even if it has an icon representation.
collapseActionView8 This item's action view collapses to a normal menu + item. When expanded, the action view takes over a + larger segment of its container.
+ */ + public static final int showAsAction=0x010102d9; + /** Whether to show an item for a default sound. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showDefault=0x010101fa; + /** Setting for which dividers to show. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x01010329; + /** Specify that an Activity should be shown even if the current/foreground user + is different from the user of the Activity. This will also force the + android.view.LayoutParams.FLAG_SHOW_WHEN_LOCKED flag + to be set for all windows of this activity +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showForAllUsers=0x010104ef; + /** Specify that an Activity should be shown over the lock screen and, + in a multiuser environment, across all users' windows. + @deprecated use {@link android.R.attr#showForAllUsers} instead. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @Deprecated + public static final int showOnLockScreen=0x010103c9; + /** Whether to show an item for 'Silent'. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showSilent=0x010101fb; + /** Whether to draw on/off text. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x010104ad; + /** @deprecated Whether do show week numbers. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @Deprecated + public static final int showWeekNumber=0x0101033e; + /** @deprecated The number of weeks to be shown. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @Deprecated + public static final int shownWeekCount=0x01010341; + /** The zero-based index of the columns to shrink. The column indices + must be separated by a comma: 1, 2, 5. Illegal and duplicate + indices are ignored. You can shrink all columns by using the + value "*" instead. Note that a column can be marked stretchable + and shrinkable at the same time. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int shrinkColumns=0x0101014a; + /** Constrains the text to a single horizontally scrolling line + instead of letting it wrap onto multiple lines, and advances + focus instead of inserting a newline when you press the + enter key. + + The default value is false (multi-line wrapped text mode) for non-editable text, but if + you specify any value for inputType, the default is true (single-line input field mode). + + {@deprecated This attribute is deprecated. Use maxLines instead to change + the layout of a static text, and use the textMultiLine flag in the + inputType attribute instead for editable text views (if both singleLine and inputType + are supplied, the inputType flags will override the value of singleLine). } +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @Deprecated + public static final int singleLine=0x0101015d; + /** If set to true, a single instance of this component will run for + all users. That instance will run as user 0, the default/primary + user. When the app running is in processes for other users and interacts + with this component (by binding to a service for example) those processes will + always interact with the instance running for user 0. Enabling + single user mode forces "exported" of the component to be false, to + help avoid introducing multi-user security bugs. This feature is only + available to applications built in to the system image; you must hold the + permission INTERACT_ACROSS_USERS in order + to use this feature. This flag can only be used with services, + receivers, and providers; it can not be used with activities. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int singleUser=0x010103bf; + /**

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
left0x03 Slide to and from the left edge of the Scene.
top0x30 Slide to and from the top edge of the Scene.
right0x05 Slide to and from the right edge of the Scene.
bottom0x50 Slide to and from the bottom edge of the Scene.
start0x00800003 Slide to and from the x-axis position at the start of the Scene root.
end0x00800005 Slide to and from the x-axis position at the end of the Scene root.
+ */ + public static final int slideEdge=0x01010430; + /** Smaller icon of the authenticator. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int smallIcon=0x0101029e; + /** Indicates whether the application supports smaller screen form-factors. + A small screen is defined as one with a smaller aspect ratio than + the traditional HVGA screen; that is, for a portrait screen, less + tall than an HVGA screen. In practice, this means a QVGA low + density or VGA high density screen. An application that does + not support small screens will not be available for + small screen devices, since there is little the platform can do + to make such an application work on a smaller screen. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int smallScreens=0x01010284; + /** When set to true, the list will use a more refined calculation + method based on the pixels height of the items visible on screen. This + property is set to true by default but should be set to false if your adapter + will display items of varying heights. When this property is set to true and + your adapter displays items of varying heights, the scrollbar thumb will + change size as the user scrolls through the list. When set to fale, the list + will use only the number of items in the adapter and the number of items visible + on screen to determine the scrollbar's properties. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int smoothScrollbar=0x01010231; + /** @hide Color for the solid color background if such for optimized rendering. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int solidColor=0x0101034a; + /** Boolean that controls whether a view should have sound effects + enabled for events such as clicking and touching. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int soundEffectsEnabled=0x01010215; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spacing=0x01010113; + /** Default style for spinner drop down items. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x01010087; + /** Default spinner item style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerItemStyle=0x01010089; + /** Display mode for spinner options. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
dialog0 Spinner options will be presented to the user as a dialog window.
dropdown1 Spinner options will be presented to the user as an inline dropdown + anchored to the spinner widget itself.
+ */ + public static final int spinnerMode=0x010102f1; + /** Default Spinner style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x01010081; + /** Whether the spinners are shown. Only valid for "spinner" mode. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinnersShown=0x0101034b; + /** Sets whether this ViewGroup should split MotionEvents + to separate child views during touch event dispatch. + If false (default), touch events will be dispatched to + the child view where the first pointer went down until + the last pointer goes up. + If true, touch events may be dispatched to multiple children. + MotionEvents for each pointer will be dispatched to the child + view where the initial ACTION_DOWN event happened. + See {@link android.view.ViewGroup#setMotionEventSplittingEnabled(boolean)} + for more information. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitMotionEvents=0x010102ef; + /** Whether to split the track and leave a gap for the thumb drawable. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x0101044c; + /** Alpha value of the spot shadow projected by elevated views, between 0 and 1. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spotShadowAlpha=0x010104bf; + /** Sets a drawable as the content of this ImageView. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int src=0x01010119; + /** Specify a URI scheme specific part that must exactly match, as per + {@link android.content.IntentFilter#addDataSchemeSpecificPart + IntentFilter.addDataSchemeSpecificPart()} with + {@link android.os.PatternMatcher#PATTERN_LITERAL}. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int ssp=0x010103e3; + /** Specify a URI scheme specific part that matches a simple pattern, as per + {@link android.content.IntentFilter#addDataSchemeSpecificPart + IntentFilter.addDataSchemeSpecificPart()} with + {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}. + Note that because '\' is used as an escape character when + reading the string from XML (before it is parsed as a pattern), + you will need to double-escape: for example a literal "*" would + be written as "\\*" and a literal "\" would be written as + "\\\\". This is basically the same as what you would need to + write if constructing the string in Java code. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int sspPattern=0x010103e5; + /** Specify a URI scheme specific part that must be a prefix to match, as per + {@link android.content.IntentFilter#addDataSchemeSpecificPart + IntentFilter.addDataSchemeSpecificPart()} with + {@link android.os.PatternMatcher#PATTERN_PREFIX}. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int sspPrefix=0x010103e4; + /** Used by ListView and GridView to stack their content from the bottom. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stackFromBottom=0x010100fd; + /** Default StackView style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int stackViewStyle=0x0101043e; + /** Default Star style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int starStyle=0x01010082; + /** Start inset to apply to the layer. Overrides {@code left} or + {@code right} depending on layout direction. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int start=0x010104db; + /** Start color of the gradient. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int startColor=0x0101019d; + /** Delay in milliseconds before the transition starts. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int startDelay=0x010103e2; + /** Delay in milliseconds before the animation runs, once start time is reached. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int startOffset=0x010101be; + /** {@deprecated Use minDate instead.} + The first year (inclusive), for example "1940". + {@deprecated Use minDate instead.} +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @Deprecated + public static final int startYear=0x0101017c; + /** Sets the state-based animator for the View. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int stateListAnimator=0x01010448; + /** Indicates that an Activity does not need to have its freeze state + (as returned by {@link android.app.Activity#onSaveInstanceState} + retained in order to be restarted. Generally you use this for activities + that do not store any state. When this flag is set, if for some reason + the activity is killed before it has a chance to save its state, + then the system will not remove it from the activity stack like + it normally would. Instead, the next time the user navigates to + it its {@link android.app.Activity#onCreate} method will be called + with a null icicle, just like it was starting for the first time. + +

This is used by the Home activity to make sure it does not get + removed if it crashes for some reason. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stateNotNeeded=0x01010016; + /** State identifier indicating the popup will be above the anchor. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x010100aa; + /** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + indicating that the Drawable is in a view that is hardware accelerated. + This means that the device can at least render a full-screen scaled + bitmap with one layer of text and bitmaps composited on top of it + at 60fps. When this is set, the colorBackgroundCacheHint will be + ignored even if it specifies a solid color, since that optimization + is not needed. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_accelerated=0x0101031b; + /** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view or its parent has been "activated" meaning the user has currently + marked it as being of interest. This is an alternative representation of + state_checked for when the state should be propagated down the view hierarchy. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_activated=0x010102fe; + /** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_active=0x010100a2; + /** State identifier indicating that the object may display a check mark. + See {@link android.R.attr#state_checked} for the identifier that indicates whether it is + actually checked. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_checkable=0x0101009f; + /** State identifier indicating that the object is currently checked. See + {@link android.R.attr#state_checkable} for an additional identifier that can indicate if + any object may ever display a check, regardless of whether state_checked is + currently set. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_checked=0x010100a0; + /** State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} + indicating that the Drawable is in a view that is capable of accepting a drop of + the content currently being manipulated in a drag-and-drop operation. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_drag_can_accept=0x01010368; + /** State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} + indicating that a drag operation (for which the Drawable's view is a valid recipient) + is currently positioned over the Drawable. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_drag_hovered=0x01010369; + /** State identifier indicating the group is empty (has no children). +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_empty=0x010100a9; + /** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view is enabled. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_enabled=0x0101009e; + /** State identifier indicating the group is expanded. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_expanded=0x010100a8; + /** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_first=0x010100a4; + /** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view has input focus. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_focused=0x0101009c; + /** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a pointer is hovering over the view. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_hovered=0x01010367; + /** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_last=0x010100a6; + /** State for {@link android.inputmethodservice.KeyboardView KeyboardView} + key preview background. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_long_pressable=0x0101023c; + /** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_middle=0x010100a5; + /** State identifier indicating a TextView has a multi-line layout. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_multiline=0x0101034d; + /** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when the user is pressing down in a view. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_pressed=0x010100a7; + /** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view (or one of its parents) is currently selected. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_selected=0x010100a1; + /** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_single=0x010100a3; + /** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view's window has input focus. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_window_focused=0x0101009d; + /** A resource id of a static drawable. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int staticWallpaperPreview=0x01010331; + /** The color for the status bar. If the color is not opaque, consider setting + {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_STABLE} and + {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN}. + For this to take effect, the window must be drawing the system bar backgrounds with + {@link android.R.attr#windowDrawsSystemBarBackgrounds} and the status bar must not + have been requested to be translucent with + {@link android.R.attr#windowTranslucentStatus}. + Corresponds to {@link android.view.Window#setStatusBarColor(int)}. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int statusBarColor=0x01010451; + /** The step size of the rating. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stepSize=0x01010146; + /** If set to true, this service with be automatically stopped + when the user remove a task rooted in an activity owned by + the application. The default is false. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stopWithTask=0x0101036a; + /** Different audio stream types. +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
voice0
system1
ring2
music3
alarm4
+ */ + public static final int streamType=0x01010209; + /** The zero-based index of the columns to stretch. The column indices + must be separated by a comma: 1, 2, 5. Illegal and duplicate + indices are ignored. You can stretch all columns by using the + value "*" instead. Note that a column can be marked stretchable + and shrinkable at the same time. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stretchColumns=0x01010149; + /** Defines how columns should stretch to fill the available empty space, if any. +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0 Stretching is disabled.
spacingWidth1 The spacing between each column is stretched.
columnWidth2 Each column is stretched equally.
spacingWidthUniform3 The spacing between each column is uniformly stretched..
+ */ + public static final int stretchMode=0x01010116; + /** The opacity of a path stroke, as a value between 0 (completely transparent) + and 1 (completely opaque) +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int strokeAlpha=0x010104cb; + /** The color to stroke the path if not defined implies no stroke +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int strokeColor=0x01010406; + /** sets the linecap for a stroked path +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
butt0
round1
square2
+ */ + public static final int strokeLineCap=0x0101040b; + /** sets the lineJoin for a stroked path +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
miter0
round1
bevel2
+ */ + public static final int strokeLineJoin=0x0101040c; + /** sets the Miter limit for a stroked path +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int strokeMiterLimit=0x0101040d; + /** The width a path stroke +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int strokeWidth=0x01010407; + /** Background for the section containing the action (e.g. voice search) +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x01010488; + /** Specifies subtitle text used for navigationMode="normal" +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x010102d1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x0101042f; + /** A color to apply to the subtitle string. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x010104e4; + /** Specifies a style to use for subtitle text. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x010102f9; + /** The extra value of the subtype. This string can be any string and will be passed to + the SpellChecker. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtypeExtraValue=0x0101039a; + /** The unique id for the subtype. The input method framework keeps track of enabled + subtypes by ID. When the IME package gets upgraded, enabled IDs will stay enabled even + if other attributes are different. If the ID is unspecified (by calling the other + constructor or 0. Arrays.hashCode(new Object[] {locale, mode, extraValue, + isAuxiliary, overridesImplicitlyEnabledSubtype}) will be used instead. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtypeId=0x010103c1; + /** The locale of the subtype. This string should be a locale (e.g. en_US, fr_FR...) + This is also used by the framework to know the supported locales + of the spell checker. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtypeLocale=0x01010399; + /** If you wish to handle an action key while a suggestion is being displayed and + selected, there are two ways to handle this. If all of your suggestions + can handle the action key, you can simply define the action message using this + attribute. This will be added to the + {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to your + searchable activity. To examine the string, use + {@link android.content.Intent#getStringExtra getStringExtra(SearchManager.ACTION_MSG)}. + Optional attribute. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int suggestActionMsg=0x010101dc; + /** If you wish to handle an action key while a suggestion is being displayed and + selected, but you do not wish to enable this action key for every suggestion, + then you can use this attribute to control it on a suggestion-by-suggestion basis. + First, you must define a column (and name it here) where your suggestions will include + the action string. Then, in your content provider, you must provide this column, and + when desired, provide data in this column. + The search manager will look at your suggestion cursor, using the string + provided here in order to select a column, and will use that to select a string from + the cursor. That string will be added to the + {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to + your searchable activity. To examine the string, use + {@link android.content.Intent#getStringExtra + getStringExtra(SearchManager.ACTION_MSG)}. If the data does not exist for the + selection suggestion, the action key will be ignored.Optional attribute. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int suggestActionMsgColumn=0x010101dd; + /** Layout for query suggestion rows +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x01010486; + /** The summary for the item. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int summary=0x010101e9; + /** Column in data table that summarizes this data. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int summaryColumn=0x010102a2; + /** The summary for the Preference in a PreferenceActivity screen when the + CheckBoxPreference is unchecked. If separate on/off summaries are not + needed, the summary attribute can be used instead. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int summaryOff=0x010101f0; + /** The summary for the Preference in a PreferenceActivity screen when the + CheckBoxPreference is checked. If separate on/off summaries are not + needed, the summary attribute can be used instead. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int summaryOn=0x010101ef; + /** Flag indicating whether this voice interaction service is capable of handling the + assist action. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int supportsAssist=0x010104f0; + /** Flag indicating whether this voice interaction service is capable of being launched + from the keyguard. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int supportsLaunchVoiceAssistFromKeyguard=0x010104f1; + /** Declare that your application will be able to deal with RTL (right to left) layouts. + If set to false (default value), your application will not care about RTL layouts. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int supportsRtl=0x010103af; + /** Set to true if this input method supports ways to switch to + a next input method (e.g. a globe key.). When this is true and + InputMethodManager#shouldOfferSwitchingToNextInputMethod() returns true, + the IME has to offer ways to invoke InputMethodManager#switchToNextInputMethod() + accordingly. +

Note that the system determines the most appropriate next input method + and subtype in order to provide the consistent user experience in switching + between IMEs and subtypes. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int supportsSwitchingToNextInputMethod=0x010103eb; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int supportsUploading=0x0101029b; + /** Minimum width for the switch component +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x01010370; + /** Minimum space between the switch and caption text +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x01010371; + /** Default style for switch preferences. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchPreferenceStyle=0x0101036d; + /** Default style for the Switch widget. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x0101043f; + /** TextAppearance style for text displayed on the switch thumb. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x0101036e; + /** The text used on the switch itself when in the "off" state. + This should be a very SHORT string, as it appears in a small space. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchTextOff=0x0101036c; + /** The text used on the switch itself when in the "on" state. + This should be a very SHORT string, as it appears in a small space. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchTextOn=0x0101036b; + /** Flag indicating whether this content provider would like to + participate in data synchronization. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int syncable=0x01010019; + /** Determines whether the strip under the tab indicators is drawn or not. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabStripEnabled=0x010102bd; + /** Drawable used to draw the left part of the strip underneath the tabs. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabStripLeft=0x010102bb; + /** Drawable used to draw the right part of the strip underneath the tabs. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabStripRight=0x010102bc; + /** Default TabWidget style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabWidgetStyle=0x01010083; + /** Supply a tag for this view containing a String, to be retrieved + later with {@link android.view.View#getTag View.getTag()} or + searched for with {@link android.view.View#findViewWithTag + View.findViewWithTag()}. It is generally preferable to use + IDs (through the android:id attribute) instead of tags because + they are faster and allow for compile-time type checking. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tag=0x010100d1; + /** The name of the activity this alias should launch. The activity + must be in the same manifest as the alias, and have been defined + in that manifest before the alias here. This must use a Java-style + naming convention to ensure the name is unique, for example + "com.mycompany.MyName". +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int targetActivity=0x01010202; + /** The class part of the ComponentName to assign to the Intent, as per + {@link android.content.Intent#setComponent Intent.setComponent()}. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int targetClass=0x0101002f; + /** @deprecated Removed. + Reference to an array resource that be used as description for the targets around the circle. + {@deprecated Removed.} +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + @Deprecated + public static final int targetDescriptions=0x010103a0; + /** The id of a target on which this transition will animate changes. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int targetId=0x010103dc; + /** The transitionName of the target on which this transition will animation changes. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int targetName=0x0101044d; + /** The name of the application package that an Instrumentation object + will run against. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int targetPackage=0x01010021; + /** This is the SDK version number that the application is targeting. + It is able to run on older versions (down to minSdkVersion), but + was explicitly tested to work with the version specified here. + Specifying this version allows the platform to disable compatibility + code that are not required or enable newer features that are not + available to older applications. This may also be a string + (such as "Donut") if this is built against a development + branch, in which case minSdkVersion is also forced to be that + string. +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int targetSdkVersion=0x01010270; + /** Specify a task name that activities have an "affinity" to. + Use with the application tag (to supply a default affinity for all + activities in the application), or with the activity tag (to supply + a specific affinity for that component). + +

The default value for this attribute is the same as the package + name, indicating that all activities in the manifest should generally + be considered a single "application" to the user. You can use this + attribute to modify that behavior: either giving them an affinity + for another task, if the activities are intended to be part of that + task from the user's perspective, or using an empty string for + activities that have no affinity to a task. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int taskAffinity=0x01010012; + /** When closing the last activity of a task, this is the animation that is + run on the activity of the next task (which is entering the screen). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int taskCloseEnterAnimation=0x010100be; + /** When opening an activity in a new task, this is the animation that is + run on the activity of the old task (which is exiting the screen). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int taskCloseExitAnimation=0x010100bf; + /** When opening an activity in a new task, this is the animation that is + run on the activity of the new task (which is entering the screen). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int taskOpenEnterAnimation=0x010100bc; + /** When opening an activity in a new task, this is the animation that is + run on the activity of the old task (which is exiting the screen). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int taskOpenExitAnimation=0x010100bd; + /** When sending the current task to the background, this is the + animation that is run on the top activity of the task behind + it (which is entering the screen). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int taskToBackEnterAnimation=0x010100c2; + /** When sending the current task to the background, this is the + animation that is run on the top activity of the current task + (which is exiting the screen). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int taskToBackExitAnimation=0x010100c3; + /** When bringing an existing task to the foreground, this is the + animation that is run on the top activity of the task being brought + to the foreground (which is entering the screen). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int taskToFrontEnterAnimation=0x010100c0; + /** When bringing an existing task to the foreground, this is the + animation that is run on the current foreground activity + (which is exiting the screen). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int taskToFrontExitAnimation=0x010100c1; + /** This is the amount of tension. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tension=0x0101026a; + /** Option to indicate this application is only for testing purposes. + For example, it may expose functionality or data outside of itself + that would cause a security hole, but is useful for testing. This + kind of application can not be installed without the + INSTALL_ALLOW_TEST flag, which means only through adb install. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int testOnly=0x01010272; + /** Text to display. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int text=0x0101014f; + /** Defines the alignment of the text. A heuristic is used to determine the resolved + text alignment. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
inherit0 Default
gravity1 Default for the root view. The gravity determines the alignment, ALIGN_NORMAL, + ALIGN_CENTER, or ALIGN_OPPOSITE, which are relative to each paragraph’s + text direction
textStart2 Align to the start of the paragraph, e.g. ALIGN_NORMAL.
textEnd3 Align to the end of the paragraph, e.g. ALIGN_OPPOSITE.
center4 Center the paragraph, e.g. ALIGN_CENTER.
viewStart5 Align to the start of the view, which is ALIGN_LEFT if the view’s resolved + layoutDirection is LTR, and ALIGN_RIGHT otherwise.
viewEnd6 Align to the end of the view, which is ALIGN_RIGHT if the view’s resolved + layoutDirection is LTR, and ALIGN_LEFT otherwise
+ */ + public static final int textAlignment=0x010103b1; + /** Present the text in ALL CAPS. This may use a small-caps form when available. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int textAllCaps=0x0101038c; + /** Default appearance of text: color, typeface, size, and style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearance=0x01010034; + public static final int textAppearanceAutoCorrectionSuggestion=0x01160007; + /** Text color, typeface, size, and style for the text inside of a button. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceButton=0x01010207; + public static final int textAppearanceEasyCorrectSuggestion=0x01160005; + /** Default appearance of text against an inverted background: + color, typeface, size, and style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceInverse=0x01010035; + /** Text color, typeface, size, and style for "large" text. Defaults to primary text color. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLarge=0x01010040; + /** Text color, typeface, size, and style for "large" inverse text. Defaults to primary inverse text color. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargeInverse=0x01010043; + /** Text color, typeface, size, and style for the text inside of a popup menu. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x01010301; + /** The preferred TextAppearance for the primary text of list items. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x0101039e; + /** The preferred TextAppearance for the secondary text of list items. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSecondary=0x01010432; + /** The preferred TextAppearance for the primary text of small list items. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x0101039f; + /** Text color, typeface, size, and style for "medium" text. Defaults to primary text color. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceMedium=0x01010041; + /** Text color, typeface, size, and style for "medium" inverse text. Defaults to primary inverse text color. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceMediumInverse=0x01010044; + public static final int textAppearanceMisspelledSuggestion=0x01160006; + /** Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x010102a0; + /** Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x010102a1; + /** Text color, typeface, size, and style for "small" text. Defaults to secondary text color. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmall=0x01010042; + /** Text color, typeface, size, and style for "small" inverse text. Defaults to secondary inverse text color. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallInverse=0x01010045; + /** Text color, typeface, size, and style for small text inside of a popup menu. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x01010302; + /** Drawable to use for check marks. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textCheckMark=0x01010046; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textCheckMarkInverse=0x01010047; + /** Color of text (usually same as colorForeground). +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColor=0x01010098; + /** Color of list item text in alert dialogs. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x01010306; + /** Color of highlighted text. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorHighlight=0x01010099; + /** Color of highlighted text, when used in a light theme. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorHighlightInverse=0x0101034f; + /** Color of hint text (displayed when the field is empty). +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorHint=0x0101009a; + /** Inverse hint text color. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorHintInverse=0x0101003f; + /** Color of link text (URLs). +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorLink=0x0101009b; + /** Color of link text (URLs), when used in a light theme. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorLinkInverse=0x01010350; + /** The most prominent text color. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorPrimary=0x01010036; + /** Bright text color. Only differentiates based on the disabled state. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorPrimaryDisableOnly=0x01010037; + /** Primary inverse text color, useful for inverted backgrounds. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorPrimaryInverse=0x01010039; + /** Bright inverse text color. Only differentiates based on the disabled state. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorPrimaryInverseDisableOnly=0x0101028b; + /** Bright inverse text color. This does not differentiate the disabled state. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorPrimaryInverseNoDisable=0x0101003d; + /** Bright text color. This does not differentiate the disabled state. As an example, + buttons use this since they display the disabled state via the background and not the + foreground text color. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorPrimaryNoDisable=0x0101003b; + public static final int textColorSearchUrl=0x01160003; + /** Secondary text color. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSecondary=0x01010038; + /** Secondary inverse text color, useful for inverted backgrounds. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSecondaryInverse=0x0101003a; + /** Dim inverse text color. This does not differentiate the disabled state. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSecondaryInverseNoDisable=0x0101003e; + /** Dim text color. This does not differentiate the disabled state. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSecondaryNoDisable=0x0101003c; + /** Tertiary text color. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorTertiary=0x01010212; + /** Tertiary inverse text color, useful for inverted backgrounds. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorTertiaryInverse=0x01010213; + /** Reference to a drawable that will be drawn under the insertion cursor. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textCursorDrawable=0x01010362; + /** Defines the direction of the text. A heuristic is used to determine the resolved text + direction of paragraphs. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
inherit0 Default
firstStrong1 Default for the root view. The first strong directional character determines the + paragraph direction. If there is no strong directional character, the paragraph + direction is the view’s resolved layout direction.
anyRtl2 The paragraph direction is RTL if it contains any strong RTL character, otherwise + it is LTR if it contains any strong LTR characters. If there are neither, the + paragraph direction is the view’s resolved layout direction.
ltr3 The paragraph direction is left to right.
rtl4 The paragraph direction is right to left.
locale5 The paragraph direction is coming from the system Locale.
firstStrongLtr6 The first strong directional character determines the paragraph direction. If + there is no strong directional character, the paragraph direction is LTR.
firstStrongRtl7 The first strong directional character determines the paragraph direction. If + there is no strong directional character, the paragraph direction is RTL.
+ */ + public static final int textDirection=0x010103b0; + /** Variation of textEditPasteWindowLayout displayed when the clipboard is empty. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textEditNoPasteWindowLayout=0x01010315; + /** The layout of the view that is displayed on top of the cursor to paste inside a + TextEdit field. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textEditPasteWindowLayout=0x01010314; + /** Variation of textEditSidePasteWindowLayout displayed when the clipboard is empty. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textEditSideNoPasteWindowLayout=0x0101035f; + /** Used instead of textEditPasteWindowLayout when the window is moved on the side of the + insertion cursor because it would be clipped if it were positioned on top. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textEditSidePasteWindowLayout=0x0101035e; + /** Layout of the TextView item that will populate the suggestion popup window. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textEditSuggestionItemLayout=0x01010374; + /** When set to true, the list will filter results as the user types. The + List's adapter must support the Filterable interface for this to work. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int textFilterEnabled=0x010100ff; + /** Indicates that the content of a non-editable TextView can be selected. + Default value is false. EditText content is always selectable. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int textIsSelectable=0x01010316; + /** The text for the button when it is not checked. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int textOff=0x01010125; + /** The text for the button when it is checked. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int textOn=0x01010124; + /** Sets the horizontal scaling factor for the text. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int textScaleX=0x01010151; + /** Reference to a drawable that will be used to display a text selection + anchor for positioning the cursor within text. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textSelectHandle=0x010102c7; + /** Reference to a drawable that will be used to display a text selection + anchor on the left side of a selection region. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textSelectHandleLeft=0x010102c5; + /** Reference to a drawable that will be used to display a text selection + anchor on the right side of a selection region. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textSelectHandleRight=0x010102c6; + /** Reference to a style that will be used for the window containing a text + selection anchor. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textSelectHandleWindowStyle=0x010102c8; + /** Size of text. Recommended dimension type for text is "sp" for scaled-pixels (example: 15sp). + Supported values include the following:

+

    +
  • px Pixels
  • +
  • sp Scaled pixels (scaled to relative pixel size on screen). See {@link android.util.DisplayMetrics} for more information.
  • +
  • pt Points
  • +
  • dip Device independent pixels. See {@link android.util.DisplayMetrics} for more information.
  • +
+ +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int textSize=0x01010095; + /** Default text typeface style. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
bold1
italic2
+ */ + public static final int textStyle=0x01010097; + /** Reference to a style that will be used for the window containing a list of possible + text suggestions in an EditText. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textSuggestionsWindowStyle=0x01010373; + /** Default TextView style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textViewStyle=0x01010084; + /** The overall theme to use for an activity. Use with either the + application tag (to supply a default theme for all activities) or + the activity tag (to supply a specific theme for that activity). + +

This automatically sets + your activity's Context to use this theme, and may also be used + for "starting" animations prior to the activity being launched (to + better match what the activity actually looks like). It is a reference + to a style resource defining the theme. If not set, the default + system theme will be used. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x01010000; + /** Thickness of the ring. When defined, thicknessRatio is ignored. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x01010260; + /** Thickness of the ring expressed as a ratio of the ring's width. For instance, + if thicknessRatio=3, then the thickness equals the ring's width divided by 3. + This value is ignored if innerRadius is defined. Default value is 3. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thicknessRatio=0x0101019c; + /** Draws the thumb on a seekbar. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int thumb=0x01010142; + /** An offset for the thumb that allows it to extend out of the range of the track. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbOffset=0x01010143; + /** Position of thumb in relation to the track. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
midpoint0 The thumb's midpoint is anchored to the track. At its + extremes, the thumb will extend half-way outside the + track.
inside1 The thumb is entirely inside the track. At its extremes, + the thumb will be contained entirely within the track.
+ */ + public static final int thumbPosition=0x010104e5; + /** Amount of padding on either side of text within the switch thumb. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x01010372; + /** Tint to apply to the button graphic. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTint=0x01010471; + /** Blending mode used to apply the button graphic tint. +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+ */ + public static final int thumbTintMode=0x01010472; + /** Reference to a the wallpaper's thumbnail bitmap. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int thumbnail=0x010102a5; + /** Defines the tile mode. When the tile mode is enabled, the bitmap is repeated. + Gravity is ignored when the tile mode is enabled. Default value is "disabled". +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
disabled-1 Do not tile the bitmap. This is the default value.
clamp0 Replicates the edge color.
repeat1 Repeats the bitmap in both direction.
mirror2 Repeats the shader's image horizontally and vertically, alternating + mirror images so that adjacent images always seam.
+ */ + public static final int tileMode=0x01010201; + /** Defines the horizontal tile mode. When the tile mode is enabled, the bitmap is repeated. + Gravity is ignored when the tile mode is enabled. Default value is "disabled". +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
disabled-1 Do not tile the bitmap. This is the default value.
clamp0 Replicates the edge color.
repeat1 Repeats the bitmap horizontally.
mirror2 Repeats the shader's image horizontally, alternating + mirror images so that adjacent images always seam.
+ */ + public static final int tileModeX=0x01010477; + /** Defines the vertical tile mode. When the tile mode is enabled, the bitmap is repeated. + Gravity is ignored when the tile mode is enabled. Default value is "disabled". +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
disabled-1 Do not tile the bitmap. This is the default value.
clamp0 Replicates the edge color.
repeat1 Repeats the bitmap vertically.
mirror2 Repeats the shader's image vertically, alternating + mirror images so that adjacent images always seam.
+ */ + public static final int tileModeY=0x01010478; + /** The TimePicker dialog theme. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int timePickerDialogTheme=0x0101049e; + /** Defines the look of the widget. Prior to the L release, the only choice was + spinner. As of L, with the Material theme selected, the default layout is clock, + but this attribute can be used to force spinner to be used instead. +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
spinner1 Time picker with spinner controls to select the time.
clock2 Time picker with clock face to select the time.
+ */ + public static final int timePickerMode=0x010104b4; + /** The TimePicker style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int timePickerStyle=0x0101049d; + /** Specifies the time zone to use. When this attribute is specified, the + TextClock will ignore the time zone of the system. To use the user's + time zone, do not specify this attribute. The default value is the + user's time zone. Please refer to {@link java.util.TimeZone} for more + information about time zone ids. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int timeZone=0x010103cc; + /** Set a tinting color for the image. By default, the tint will blend using SRC_ATOP mode. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tint=0x01010121; + /** When a tint color is set, specifies its Porter-Duff blending mode. The + default value is src_in, which treats the drawable as an alpha mask. +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+ */ + public static final int tintMode=0x010103fb; + /** The title associated with the item. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x010101e1; + /** The condensed title associated with the item. This is used in situations where the + normal title may be too long to be displayed. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleCondensed=0x010101e2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x0101042e; + /** A color to apply to the title string. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x010104e3; + /** Specifies a style to use for title text. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x010102f8; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int toAlpha=0x010101cb; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int toDegrees=0x010101b4; + /** Keyframe identifier for the ending state. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toId=0x01010449; + /** The destination scene in this scene change. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toScene=0x010103de; + /**

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int toXDelta=0x010101c7; + /**

May be a floating point value, such as "1.2". +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int toXScale=0x010101c3; + /**

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int toYDelta=0x010101c9; + /**

May be a floating point value, such as "1.2". +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int toYScale=0x010101c5; + /** Default Toolbar style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x010104aa; + /** Amount of top padding inside the gradient shape. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int top=0x010101ae; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int topBright=0x010100cb; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int topDark=0x010100c7; + /** Radius of the top left corner. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int topLeftRadius=0x010101a9; + /** Extra offset for the handle at the top of the SlidingDrawer. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int topOffset=0x01010258; + /** Radius of the top right corner. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int topRightRadius=0x010101aa; + /** Set to true if this ViewGroup blocks focus in the presence of a touchscreen. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int touchscreenBlocksFocus=0x0101048f; + /** Drawable to use as the "track" that the switch thumb slides within. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x0101036f; + /** Tint to apply to the track. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trackTint=0x010104d9; + /** Blending mode used to apply the track tint. +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+ */ + public static final int trackTintMode=0x010104da; + /** Sets the transcript mode for the list. In transcript mode, the list + scrolls to the bottom to make new items visible when they are added. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
disabled0 Disables transcript mode. This is the default value.
normal1 The list will automatically scroll to the bottom when + a data set change notification is received and only if the last item is + already visible on screen.
alwaysScroll2 The list will automatically scroll to the bottom, no matter what items + are currently visible.
+ */ + public static final int transcriptMode=0x01010100; + /** x location of the pivot point around which the view will rotate and scale. + This xml attribute sets the pivotX property of the View. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int transformPivotX=0x01010320; + /** y location of the pivot point around which the view will rotate and scale. + This xml attribute sets the pivotY property of the View. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int transformPivotY=0x01010321; + /** The id of a transition to be used in a particular scene change. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int transition=0x010103df; + /** Sets whether or not this ViewGroup should be treated as a single entity + when doing an Activity transition. Typically, the elements inside a + ViewGroup are each transitioned from the scene individually. The default + for a ViewGroup is false unless it has a background. See + {@link android.app.ActivityOptions#makeSceneTransitionAnimation(android.app.Activity, + android.view.View, String)} for more information. Corresponds to + {@link android.view.ViewGroup#setTransitionGroup(boolean)}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int transitionGroup=0x01010401; + /** Names a View such that it can be identified for Transitions. Names should be + unique in the View hierarchy. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int transitionName=0x01010400; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
together0 child transitions should be played together.
sequential1 child transitions should be played sequentially, in the same order + as the xml.
+ */ + public static final int transitionOrdering=0x010103e0; + /** Changes whether the transition supports appearing and/or disappearing Views. + Corresponds to {@link android.transition.Visibility#setMode(int)}. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
mode_in1 Only appearing Views will be supported.
mode_out2 Only disappearing Views will be supported.
+ */ + public static final int transitionVisibilityMode=0x0101047c; + /** The amount to translate the group on X coordinate +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int translateX=0x0101045a; + /** The amount to translate the group on Y coordinate +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int translateY=0x0101045b; + /** translation in x of the view. This value is added post-layout to the left + property of the view, which is set by its layout. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int translationX=0x01010322; + /** translation in y of the view. This value is added post-layout to the top + property of the view, which is set by its layout. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int translationY=0x01010323; + /** translation in z of the view. This value is added to its elevation. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int translationZ=0x010103fa; + /** The fraction of the path to trim from the end from 0 to 1 +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trimPathEnd=0x01010409; + /** Shift trim region (allows visible region to include the start and end) from 0 to 1 +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trimPathOffset=0x0101040a; + /** The fraction of the path to trim from the start from 0 to 1 +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int trimPathStart=0x01010408; + /** Type of gradient. The default type is linear. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
linear0 Linear gradient.
radial1 Radial, or circular, gradient.
sweep2 Sweep, or angled or diamond, gradient.
+ */ + public static final int type=0x010101a1; + /** Default text typeface. +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
normal0
sans1
serif2
monospace3
+ */ + public static final int typeface=0x01010096; + /** Extra options for an activity's UI. Applies to either the {@code <activity>} or + {@code <application>} tag. If specified on the {@code <application>} + tag these will be considered defaults for all activities in the + application. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0 No extra UI options. This is the default.
splitActionBarWhenNarrow1 Split the options menu into a separate bar at the bottom of + the screen when severely constrained for horizontal space. + (e.g. portrait mode on a phone.) Instead of a small number + of action buttons appearing in the action bar at the top + of the screen, the action bar will split into the top navigation + section and the bottom menu section. Menu items will not be + split across the two bars; they will always appear together.
+ */ + public static final int uiOptions=0x01010398; + /** Color used to draw the user's strokes until we are sure it's a gesture. +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uncertainGestureColor=0x01010276; + /** @deprecated The color for the dates of an unfocused month. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + @Deprecated + public static final int unfocusedMonthDateColor=0x01010344; + /** Sets the alpha on the items that are not selected. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int unselectedAlpha=0x0101020e; + /** Update period in milliseconds, or 0 if the AppWidget will update itself. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int updatePeriodMillis=0x01010250; + /** When set to true, tells GridLayout to use default margins when none are specified + in a view's layout parameters. + The default value is false. + See {@link android.widget.GridLayout#setUseDefaultMargins(boolean)}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useDefaultMargins=0x01010379; + /** Use the drawable's intrinsic width and height as minimum size values. + Useful if the target drawable is a 9-patch or otherwise should not be scaled + down beyond a minimum size. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useIntrinsicSizeAsMinimum=0x01010310; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useLevel=0x0101019f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int userVisible=0x01010291; + /** Declare that this application may use cleartext traffic, such as HTTP rather than HTTPS; + WebSockets rather than WebSockets Secure; XMPP, IMAP, STMP without STARTTLS or TLS. + Defaults to true. If set to false {@code false}, the application declares that it does not + intend to use cleartext network traffic, in which case platform components (e.g. HTTP + stacks, {@code DownloadManager}, {@code MediaPlayer}) will refuse applications's requests + to use cleartext traffic. Third-party libraries are encouraged to honor this flag as well. + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int usesCleartextTraffic=0x010104ec; + /** Concrete value to assign to this piece of named meta-data. + The data can later be retrieved from the meta data Bundle + through {@link android.os.Bundle#getString Bundle.getString}, + {@link android.os.Bundle#getInt Bundle.getInt}, + {@link android.os.Bundle#getBoolean Bundle.getBoolean}, + or {@link android.os.Bundle#getFloat Bundle.getFloat} depending + on the type used here. +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a boolean value, either "true" or "false". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

May be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int value=0x01010024; + /** Value the animation starts from. +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

May be a floating point value, such as "1.2". +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int valueFrom=0x010102de; + /** Value the animation animates to. +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

May be a floating point value, such as "1.2". +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int valueTo=0x010102df; + /** The type of valueFrom and valueTo. +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
floatType0 The given values are floats. This is the default value if valueType is + unspecified. Note that if any value attribute has a color value + (beginning with "#"), then this attribute is ignored and the color values are + interpreted as integers.
intType1 values are integers.
pathType2 values are paths defined as strings. + This type is used for path morphing in AnimatedVectorDrawable.
colorType3 values are colors, which are integers starting with "#".
+ */ + public static final int valueType=0x010102e0; + /** If true, allows the drawable's padding to change based on the + current state that is selected. If false, the padding will + stay the same (based on the maximum padding of all the states). + Enabling this feature requires that the owner of the drawable + deal with performing layout when the state changes, which is + often not supported. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int variablePadding=0x01010195; + /** The vendor name if this print service is vendor specific. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int vendor=0x010103e7; + /** Internal version code. This is the number used to determine whether + one version is more recent than another: it has no other meaning than + that higher numbers are more recent. You could use this number to + encode a "x.y" in the lower and upper 16 bits, make it a build + number, simply increase it by one each time a new version is + released, or define it however else you want, as long as each + successive version has a higher number. This is not a version + number generally shown to the user, that is usually supplied + with {@link android.R.attr#versionName}. When an app is delivered + as multiple split APKs, each APK must have the exact same versionCode. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int versionCode=0x0101021b; + /** The text shown to the user to indicate the version they have. This + is used for no other purpose than display to the user; the actual + significant version number is given by {@link android.R.attr#versionCode}. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int versionName=0x0101021c; + /** Amount to offset the touch Y coordinate by, for bias correction. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int verticalCorrection=0x0101023a; + /** Default vertical divider between menu items. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int verticalDivider=0x0101012e; + /** Default vertical gap between rows of keys. +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int verticalGap=0x01010240; + /** Determines which side the vertical scroll bar should be placed on. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
defaultPosition0 Place the scroll bar wherever the system default determines.
left1 Place the scroll bar on the left.
right2 Place the scroll bar on the right.
+ */ + public static final int verticalScrollbarPosition=0x01010334; + /** Defines the default vertical spacing between rows. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int verticalSpacing=0x01010115; + /** The height of the canvas the drawing is on. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int viewportHeight=0x01010403; + /** The width of the canvas the drawing is on. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int viewportWidth=0x01010402; + /** Controls the initial visibility of the view. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
visible0 Visible on screen; the default value.
invisible1 Not displayed, but taken into account during layout (space is left for it).
gone2 Completely hidden, as if the view had not been added.
+ */ + public static final int visibility=0x010100dc; + /** Provides initial visibility state of the drawable; the default + value is false. See + {@link android.graphics.drawable.Drawable#setVisible}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int visible=0x01010194; + /** Flag indicating whether the application requests the VM to operate in + the safe mode. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int vmSafeMode=0x010102b8; + /** Voice button icon +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x01010484; + /** If provided, this specifies the spoken language to be expected, and that it will be + different than the one set in the {@link java.util.Locale#getDefault()}. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int voiceLanguage=0x01010255; + /** If provided, this specifies the language model that should be used by the + voice recognition system. See + {@link android.speech.RecognizerIntent#EXTRA_LANGUAGE_MODEL } for more information. + If not provided, the default value + {@link android.speech.RecognizerIntent#LANGUAGE_MODEL_FREE_FORM } will be used. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int voiceLanguageModel=0x01010253; + /** If provided, enforces the maximum number of results to return, including the "best" + result which will always be provided as the SEARCH intent's primary query. Must be one + or greater. If not provided, the recognizer will choose how many results to return. + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int voiceMaxResults=0x01010256; + /** If provided, this specifies a prompt that will be displayed during voice input. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int voicePromptText=0x01010254; + /** Voice search features are controlled by mode bits in this field. Omitting + this field, or setting to zero, provides default behavior. + If showVoiceSearchButton is set, then launchWebSearch or launchRecognizer must + also be set. Optional attribute. + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
showVoiceSearchButton0x01 If set, display a voice search button. This only takes effect if voice search is + available on the device.
launchWebSearch0x02 If set, the voice search button will take the user directly to a built-in + voice web search activity. Most applications will not use this flag, as it + will take the user away from the activity in which search was invoked.
launchRecognizer0x04 If set, the voice search button will take the user directly to a built-in + voice recording activity. This activity will prompt the user to speak, + transcribe the spoken text, and forward the resulting query + text to the searchable activity, just as if the user had typed it into + the search UI and clicked the search button.
+ */ + public static final int voiceSearchMode=0x01010252; + /** When opening a new activity that hides the wallpaper, while + currently showing the wallpaper, this is the animation that + is run on the new activity (which is entering the screen). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int wallpaperCloseEnterAnimation=0x01010295; + /** When opening a new activity that hides the wallpaper, while + currently showing the wallpaper, this is the animation that + is run on the old wallpaper activity (which is exiting the screen). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int wallpaperCloseExitAnimation=0x01010296; + /** When closing a foreround activity that is on top of the wallpaper + when the previous activity is also on top of the wallpaper, + this is the animation that is run on the previous activity + (which is entering the screen). The wallpaper remains + static behind the animation. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int wallpaperIntraCloseEnterAnimation=0x01010299; + /** When closing a foreround activity that is on top of the wallpaper + when the previous activity is also on top of the wallpaper, + this is the animation that is run on the current activity + (which is exiting the screen). The wallpaper remains + static behind the animation. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int wallpaperIntraCloseExitAnimation=0x0101029a; + /** When opening a new activity that is on top of the wallpaper + when the current activity is also on top of the wallpaper, + this is the animation that is run on the new activity + (which is entering the screen). The wallpaper remains + static behind the animation. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int wallpaperIntraOpenEnterAnimation=0x01010297; + /** When opening a new activity that is on top of the wallpaper + when the current activity is also on top of the wallpaper, + this is the animation that is run on the current activity + (which is exiting the screen). The wallpaper remains + static behind the animation. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int wallpaperIntraOpenExitAnimation=0x01010298; + /** When opening a new activity that shows the wallpaper, while + currently not showing the wallpaper, this is the animation that + is run on the new wallpaper activity (which is entering the screen). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int wallpaperOpenEnterAnimation=0x01010293; + /** When opening a new activity that shows the wallpaper, while + currently not showing the wallpaper, this is the animation that + is run on the current activity (which is exiting the screen). +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int wallpaperOpenExitAnimation=0x01010294; + /** Default WebTextView style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int webTextViewStyle=0x010102b9; + /** Default WebView style. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int webViewStyle=0x01010085; + /** The text appearance for the week day abbreviation in the calendar header. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int weekDayTextAppearance=0x01010348; + /** @deprecated The color for the week numbers. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + @Deprecated + public static final int weekNumberColor=0x01010345; + /** @deprecated The color for the separator line between weeks. +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + @Deprecated + public static final int weekSeparatorLineColor=0x01010346; + /** Defines the maximum weight sum. If unspecified, the sum is computed + by adding the layout_weight of all of the children. This can be + used for instance to give a single child 50% of the total available + space by giving it a layout_weight of 0.5 and setting the weightSum + to 1.0. +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int weightSum=0x01010128; + /** Optional parameter which indicates where this widget can be shown, + ie. home screen, keyguard, search bar or any combination thereof. + Supports combined values using | operator. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
home_screen0x1
keyguard0x2
searchbox0x4
+ */ + public static final int widgetCategory=0x010103c4; + /** The layout for the controllable widget portion of a Preference. This is inflated + into the layout for a Preference and should be used more frequently than + the layout attribute. For example, a checkbox preference would specify + a custom layout (consisting of just the CheckBox) here. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int widgetLayout=0x010101eb; + /** Makes the TextView be exactly this many pixels wide. + You could get the same effect by specifying this number in the + layout parameters. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int width=0x01010159; + /** Flag indicating whether this window should have an Action Bar + in place of the usual title bar. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x010102cd; + public static final int windowActionBarFullscreenDecorLayout=0x0116000f; + /** Flag indicating whether this window's Action Bar should overlay + application content. Does nothing if the window would not + have an Action Bar. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x010102e4; + /** Flag indicating whether action modes should overlay window content + when there is not reserved space for their UI (such as an Action Bar). +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x010102dd; + /** Flag indicating whether this window allows Activity Transitions. + Corresponds to {@link android.view.Window#FEATURE_ACTIVITY_TRANSITIONS}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActivityTransitions=0x010104cd; + /** Flag indicating whether this Window's transition should overlap with + the exiting transition of the calling Activity. Corresponds to + {@link android.view.Window#setAllowEnterTransitionOverlap(boolean)}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowAllowEnterTransitionOverlap=0x0101043c; + /** Flag indicating whether this Window's transition should overlap with + the exiting transition of the called Activity when the called Activity + finishes. Corresponds to + {@link android.view.Window#setAllowReturnTransitionOverlap(boolean)}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowAllowReturnTransitionOverlap=0x0101043b; + /** Reference to a style resource holding + the set of window animations to use, which can be + any of the attributes defined by + {@link android.R.styleable#WindowAnimation}. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowAnimationStyle=0x010100ae; + /** Drawable to use as the overall window background. As of + {@link android.os.Build.VERSION_CODES#HONEYCOMB}, this may + be a selector that uses state_accelerated to pick a non-solid + color when running on devices that can draw such a bitmap + with complex compositing on top at 60fps. + +

There are a few special considerations to use when setting this + drawable: +

    +
  • This information will be used to infer the pixel format + for your window's surface. If the drawable has any + non-opaque pixels, your window will be translucent + (32 bpp). +
  • If you want to draw the entire background + yourself, you should set this drawable to some solid + color that closely matches that background (so the + system's preview of your window will match), and + then in code manually set your window's background to + null so it will not be drawn. +
+

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowBackground=0x01010054; + public static final int windowBackgroundFallback=0x0116000e; + /** Whether to clip window content to the outline of the window background. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowClipToOutline=0x010104ab; + /** Control whether a container should automatically close itself if + the user touches outside of it. This only applies to activities + and dialogs. + +

Note: this attribute will only be respected for applications + that are targeting {@link android.os.Build.VERSION_CODES#HONEYCOMB} + or later. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowCloseOnTouchOutside=0x0101035b; + /** This Drawable is overlaid over the foreground of the Window's content area, usually + to place a shadow below the title. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowContentOverlay=0x01010059; + /** Reference to a TransitionManager XML resource defining the desired + transitions between different window content. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowContentTransitionManager=0x010103f9; + /** Flag indicating whether this window requests that content changes be performed + as scene changes with transitions. Corresponds to + {@link android.view.Window#FEATURE_CONTENT_TRANSITIONS}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowContentTransitions=0x010103f8; + /** Flag allowing you to disable the preview animation for a window. + The default value is false; if set to true, the system can never + use the window's theme to show a preview of it before your + actual instance is shown to the user. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowDisablePreview=0x01010222; + /** Flag indicating whether this Window is responsible for drawing the background for the + system bars. If true and the window is not floating, the system bars are drawn with a + transparent background and the corresponding areas in this window are filled with the + colors specified in {@link android.R.attr#statusBarColor} and + {@link android.R.attr#navigationBarColor}. Corresponds to + {@link android.view.WindowManager.LayoutParams#FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowDrawsSystemBarBackgrounds=0x01010450; + /** Elevation to use for the window. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowElevation=0x01010490; + /** Flag indicating that this window should allow touches to be split + across other windows that also support split touch. + The default value is true for applications with a targetSdkVersion + of Honeycomb or newer; false otherwise. + When this flag is false, the first pointer that goes down determines + the window to which all subsequent touches go until all pointers go up. + When this flag is true, each pointer (not necessarily the first) that + goes down determines the window to which all subsequent touches of that + pointer will go until that pointers go up thereby enabling touches + with multiple pointers to be split across multiple windows. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowEnableSplitTouch=0x01010317; + /** The animation used when a window is being added. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowEnterAnimation=0x010100b4; + /** Reference to a Transition XML resource defining the desired Transition + used to move Views into the initial Window's content Scene. Corresponds to + {@link android.view.Window#setEnterTransition(android.transition.Transition)}. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowEnterTransition=0x01010437; + /** The animation used when a window is being removed. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowExitAnimation=0x010100b5; + /** Reference to a Transition XML resource defining the desired Transition + used to move Views out of the Window's content Scene when launching a new Activity. + Corresponds to + {@link android.view.Window#setExitTransition(android.transition.Transition)}. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowExitTransition=0x01010438; + public static final int windowFixedHeightMajor=0x0116003b; + public static final int windowFixedHeightMinor=0x01160039; + public static final int windowFixedWidthMajor=0x01160038; + public static final int windowFixedWidthMinor=0x0116003a; + /** Drawable to use as a frame around the window. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowFrame=0x01010055; + /** Flag indicating whether this window should fill the entire screen. Corresponds + to {@link android.view.WindowManager.LayoutParams#FLAG_FULLSCREEN}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFullscreen=0x0101020d; + /** The animation used when a window is going from VISIBLE to INVISIBLE. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowHideAnimation=0x010100b7; + /** Flag indicating whether this is a floating window. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowIsFloating=0x01010057; + /** Flag indicating whether this is a translucent window. If this attribute is unset (but + not if set to false), the window might still be considered translucent, if + windowSwipeToDismiss is set to true. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowIsTranslucent=0x01010058; + /** If set, the status bar will be drawn such that it is compatible with a light + status bar background. +

For this to take effect, the window must be drawing the system bar backgrounds with + {@link android.R.attr#windowDrawsSystemBarBackgrounds} and the status bar must not + have been requested to be translucent with + {@link android.R.attr#windowTranslucentStatus}. + Corresponds to setting {@link android.view.View#SYSTEM_UI_FLAG_LIGHT_STATUS_BAR} on + the decor view. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowLightStatusBar=0x010104e0; + /** The minimum width the window is allowed to be, along the major + axis of the screen. That is, when in landscape. Can be either + an absolute dimension or a fraction of the screen size in that + dimension. +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x01010356; + /** The minimum width the window is allowed to be, along the minor + axis of the screen. That is, when in portrait. Can be either + an absolute dimension or a fraction of the screen size in that + dimension. +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x01010357; + /** Flag indicating that this window should not be displayed at all. + The default value is false; if set to true, and this window is + the main window of an Activity, then it will never actually + be added to the window manager. This means that your activity + must immediately quit without waiting for user interaction, + because there will be no such interaction coming. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoDisplay=0x0101021e; + /** Flag indicating whether there should be no title on this window. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x01010056; + /** Flag indicating whether this window should extend into overscan region. Corresponds + to {@link android.view.WindowManager.LayoutParams#FLAG_LAYOUT_IN_OVERSCAN}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowOverscan=0x010103cf; + /** Reference to a Transition XML resource defining the desired Transition + used to move Views in to the scene when returning from a previously-started Activity. + Corresponds to + {@link android.view.Window#setReenterTransition(android.transition.Transition)}. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowReenterTransition=0x010104af; + /** Reference to a Transition XML resource defining the desired Transition + used to move Views out of the scene when the Window is + preparing to close. Corresponds to + {@link android.view.Window#setReturnTransition(android.transition.Transition)}. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowReturnTransition=0x010104ae; + /** Reference to a Transition XML resource defining the desired Transition + used to move shared elements transferred into the Window's initial content Scene. + Corresponds to {@link android.view.Window#setSharedElementEnterTransition( + android.transition.Transition)}. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowSharedElementEnterTransition=0x01010439; + /** Reference to a Transition XML resource defining the desired Transition + used when starting a new Activity to move shared elements prior to transferring + to the called Activity. + Corresponds to {@link android.view.Window#setSharedElementExitTransition( + android.transition.Transition)}. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowSharedElementExitTransition=0x0101043a; + /** Reference to a Transition XML resource defining the desired Transition + used for shared elements transferred back to a calling Activity. + Corresponds to {@link android.view.Window#setSharedElementReenterTransition( + android.transition.Transition)}. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowSharedElementReenterTransition=0x010104b1; + /** Reference to a Transition XML resource defining the desired Transition + used to move shared elements transferred back to a calling Activity. + Corresponds to {@link android.view.Window#setSharedElementReturnTransition( + android.transition.Transition)}. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowSharedElementReturnTransition=0x010104b0; + /** Indicates whether or not shared elements should use an overlay + during transitions. The default value is true. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowSharedElementsUseOverlay=0x010104bb; + /** The animation used when a window is going from INVISIBLE to VISIBLE. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowShowAnimation=0x010100b6; + /** Flag indicating that this window's background should be the + user's current wallpaper. Corresponds + to {@link android.view.WindowManager.LayoutParams#FLAG_SHOW_WALLPAPER}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowShowWallpaper=0x01010292; + /** Defines the default soft input state that this window would + like when it is displayed. Corresponds + to {@link android.view.WindowManager.LayoutParams#softInputMode}. +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
stateUnspecified0 Not specified, use what the system thinks is best. This + is the default.
stateUnchanged1 Leave the soft input window as-is, in whatever state it + last was.
stateHidden2 Make the soft input area hidden when normally appropriate + (when the user is navigating forward to your window).
stateAlwaysHidden3 Always make the soft input area hidden when this window + has input focus.
stateVisible4 Make the soft input area visible when normally appropriate + (when the user is navigating forward to your window).
stateAlwaysVisible5 Always make the soft input area visible when this window + has input focus.
adjustUnspecified0x00 The window resize/pan adjustment has not been specified, + the system will automatically select between resize and pan + modes, depending + on whether the content of the window has any layout views + that can scroll their contents. If there is such a view, + then the window will be resized, with the assumption being + that the resizeable area can be reduced to make room for + the input UI.
adjustResize0x10 Always resize the window: the content area of the window is + reduced to make room for the soft input area.
adjustPan0x20 Don't resize the window to make room for the soft input area; + instead pan the contents of the window as focus moves inside + of it so that the user can see what they are typing. This is + generally less desireable than panning because the user may + need to close the input area to get at and interact with + parts of the window.
adjustNothing0x30 Don't resize or pan the window to make room for the + soft input area; the window is never adjusted for it.
+ */ + public static final int windowSoftInputMode=0x0101022b; + /** Flag to indicate that a window can be swiped away to be dismissed. + Corresponds to {@link android.view.Window#FEATURE_SWIPE_TO_DISMISS}. It will also + dynamically change translucency of the window, if the windowIsTranslucent is not set. + If windowIsTranslucent is set (to either true or false) it will obey that setting. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowSwipeToDismiss=0x010103f3; + /** The style resource to use for a window's title area. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowTitleBackgroundStyle=0x0101005c; + /** The style resource to use for a window's title bar height. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowTitleSize=0x0101005a; + /** The style resource to use for a window's title text. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int windowTitleStyle=0x0101005b; + /** The duration, in milliseconds, of the window background fade duration + when transitioning into or away from an Activity when called with an + Activity Transition. Corresponds to + {@link android.view.Window#setTransitionBackgroundFadeDuration(long)}. +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowTransitionBackgroundFadeDuration=0x01010461; + /** Flag indicating whether this window requests a translucent navigation bar. Corresponds + to {@link android.view.WindowManager.LayoutParams#FLAG_TRANSLUCENT_NAVIGATION}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowTranslucentNavigation=0x010103f0; + /** Flag indicating whether this window requests a translucent status bar. Corresponds + to {@link android.view.WindowManager.LayoutParams#FLAG_TRANSLUCENT_STATUS}. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowTranslucentStatus=0x010103ef; + /** A specific {@link android.R.attr#permission} name for write + access to a {@link android.content.ContentProvider}. See the + Security and Permissions + document for more information on permissions. +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int writePermission=0x01010008; + /** A coordinate in the X dimension. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int x=0x010100ac; + /** Indicates whether the application supports extra large screen form-factors. +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int xlargeScreens=0x010102bf; + /** A coordinate in the Y dimension. +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int y=0x010100ad; + /** The list year's text appearance in the list. + {@deprecated Use yearListTextColor. } +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + @Deprecated + public static final int yearListItemTextAppearance=0x01010499; + /** The list year's selected circle color in the list. + {@deprecated No longer displayed.} +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + @Deprecated + public static final int yearListSelectorColor=0x0101049a; + /** Default style for YesNoPreference. +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int yesNoPreferenceStyle=0x01010090; + /** Allows for an adjustment of the Z ordering of the content being + animated for the duration of the animation. The default value is normal. +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0 The content being animated be kept in its current Z order.
top1 The content being animated is forced on top of all other + content for the duration of the animation.
bottom-1 The content being animated is forced under all other + content for the duration of the animation.
+ */ + public static final int zAdjustment=0x010101c1; + } + public static final class bool { + public static final int action_bar_embed_tabs=0x01120003; + public static final int action_bar_embed_tabs_pre_jb=0x01120004; + public static final int action_bar_expanded_action_views_exclusive=0x01120008; + /** Whether to allow vertically stacked button bars. This is disabled for + configurations with a small (e.g. less than 320dp) screen height. + */ + public static final int allow_stacked_button_bar=0x0112000a; + /** Use ERI text for network name on CDMA LTE + */ + public static final int config_LTE_eri_for_network_name=0x01120096; + /** Whether action menu items should obey the "withText" showAsAction + flag. This may be set to false for situations where space is + extremely limited. + */ + public static final int config_allowActionMenuItemTextWithIcon=0x01120062; + /** If true, the screen can be rotated via the accelerometer in all 4 + rotations as the default behavior. + */ + public static final int config_allowAllRotations=0x01120034; + /** This config is ued to determine whether animations are allowed in low power mode. + */ + public static final int config_allowAnimationsInLowPowerMode=0x01120099; + /** Allow automatic adjusting of the screen brightness while dozing in low power state. + */ + public static final int config_allowAutoBrightnessWhileDozing=0x01120045; + /** If this is true, allow wake from theater mode from camera lens cover is switched. + */ + public static final int config_allowTheaterModeWakeFromCameraLens=0x01120029; + /** If this is true, allow wake from theater mode when docked. + */ + public static final int config_allowTheaterModeWakeFromDock=0x0112002f; + /** If this is true, allow wake from theater mode from gesture. + */ + public static final int config_allowTheaterModeWakeFromGesture=0x01120028; + /** If this is true, allow wake from theater mode from regular key press. Setting this value to + true implies config_allowTheaterModeWakeFromPowerKey is also true + */ + public static final int config_allowTheaterModeWakeFromKey=0x0112002b; + /** If this is true, allow wake from theater mode from lid switch. + */ + public static final int config_allowTheaterModeWakeFromLidSwitch=0x0112002e; + /** If this is true, allow wake from theater mode from motion. + */ + public static final int config_allowTheaterModeWakeFromMotion=0x0112002c; + /** If this is true, allow wake from theater mode from motion. + */ + public static final int config_allowTheaterModeWakeFromMotionWhenNotDreaming=0x0112002d; + /** If this is true, allow wake from theater mode from power key press. + */ + public static final int config_allowTheaterModeWakeFromPowerKey=0x0112002a; + /** If this is true, allow wake from theater mode when plugged in or unplugged. + */ + public static final int config_allowTheaterModeWakeFromUnplug=0x01120027; + /** If this is true, allow wake from theater mode from window layout flag. + */ + public static final int config_allowTheaterModeWakeFromWindowLayout=0x01120030; + /** Set to true if the RSSI should always display CDMA signal strength even on EVDO + */ + public static final int config_alwaysUseCdmaRssi=0x0112005e; + /** If this is true, the screen will fade off. + */ + public static final int config_animateScreenLights=0x01120025; + /** Don't name config resources like this. It should look like config_annoyDianne + */ + public static final int config_annoy_dianne=0x01120022; + /** When the screen is turned on, the previous estimate of the ambient light level at the time + the screen was turned off is restored and is used to determine the initial screen + brightness. + + If this flag is true, then the ambient light level estimate will be promptly recomputed + after the warm-up interface and the screen brightness will be adjusted immediately. + + If this flag is false, then the ambient light level estimate will be adjusted more + gradually in the same manner that normally happens when the screen is on according to the + brightening or dimming debounce thresholds. As a result, it may take somewhat longer to + adapt to the environment. This mode may be better suited for watches. + */ + public static final int config_autoBrightnessResetAmbientLuxAfterWarmUp=0x01120046; + public static final int config_auto_attach_data_on_creation=0x0112008e; + /** Flag indicating whether the we should enable the automatic brightness in Settings. + Software implementation will be used if config_hardware_auto_brightness_available is not set + */ + public static final int config_automatic_brightness_available=0x01120021; + /** Device configuration indicating whether we should avoid using accelerated graphics + in certain places to reduce RAM footprint. This is ignored if ro.config.low_ram + is true (in that case this is assumed true as well). It can allow you to tune down + your device's memory use without going to the point of causing applications to turn + off features. + */ + public static final int config_avoidGfxAccel=0x01120012; + /** Boolean indicating if current platform need do one-time bluetooth address + re-validation + */ + public static final int config_bluetooth_address_validation=0x01120051; + /** Enable/disable default bluetooth profiles: + HSP_AG, ObexObjectPush, Audio, NAP + */ + public static final int config_bluetooth_default_profiles=0x01120056; + /** Boolean indicating if current platform supports BLE peripheral mode + */ + public static final int config_bluetooth_le_peripheral_mode_supported=0x01120052; + /** Boolean indicating if current platform supports bluetooth SCO for off call + use cases + */ + public static final int config_bluetooth_sco_off_call=0x0112004f; + /** Enables built-in SIP phone capability + */ + public static final int config_built_in_sip_phone=0x01120058; + /** Allow the gesture to double tap the power button twice to start the camera while the device + is non-interactive. + */ + public static final int config_cameraDoubleTapPowerGestureEnabled=0x0112009f; + /** Whether camera shutter sound is forced or not (country specific). + */ + public static final int config_camera_sound_forced=0x01120074; + /** Control whether being in the car dock should enable accelerometer based + screen orientation. This defaults to true because putting a device in + a car dock make the accelerometer more a physical input (like a lid). + */ + public static final int config_carDockEnablesAccelerometer=0x01120038; + /** Flag specifying whether VoLTE should be available for carrier: independent of + carrier provisioning. If false: hard disabled. If true: then depends on carrier + provisioning, availability etc + */ + public static final int config_carrier_volte_available=0x01120085; + /** Flag specifying whether VoLTE availability is based on provisioning + */ + public static final int config_carrier_volte_provisioned=0x01120086; + /** Flag specifying whether VoLTE TTY is supported + */ + public static final int config_carrier_volte_tty_supported=0x01120087; + /** Flag specifying whether VT should be available for carrier: independent of + carrier provisioning. If false: hard disabled. If true: then depends on carrier + provisioning, availability etc + */ + public static final int config_carrier_vt_available=0x01120089; + /** Flag specifying whether WFC over IMS should be available for carrier: independent of + carrier provisioning. If false: hard disabled. If true: then depends on carrier + provisioning, availability etc + */ + public static final int config_carrier_wfc_ims_available=0x0112008b; + /** Set to true to add links to Cell Broadcast app from Settings and MMS app. + */ + public static final int config_cellBroadcastAppLinks=0x0112006c; + /** Whether to start in touch mode + */ + public static final int config_defaultInTouchMode=0x01120097; + public static final int config_defaultWindowFeatureContextMenu=0x01120094; + /** Flags enabling default window features. See Window.java + */ + public static final int config_defaultWindowFeatureOptionsPanel=0x01120093; + /** Control whether being in the desk dock should enable accelerometer + based screen orientation. This defaults to true because it is + common for desk docks to be sold in a variety of form factors + with different orientations. Since we cannot always tell these docks + apart and the docks cannot report their true orientation on their own, + we rely on gravity to determine the effective orientation. + */ + public static final int config_deskDockEnablesAccelerometer=0x01120037; + /** Flag specifying whether VoLTE is available on device + */ + public static final int config_device_volte_available=0x01120084; + /** Flag specifying whether VT is available on device + */ + public static final int config_device_vt_available=0x01120088; + /** Flag specifying whether WFC over IMS is available on device + */ + public static final int config_device_wfc_ims_available=0x0112008a; + /** Allow the menu hard key to be disabled in LockScreen on some devices + */ + public static final int config_disableMenuKeyInLockScreen=0x0112003d; + /** If true, then we do not ask user for permission for apps to connect to USB devices. + Do not set this to true for production devices. Doing so will cause you to fail CTS. + */ + public static final int config_disableUsbPermissionDialogs=0x0112006f; + /** Set to true if we need to not prefer an APN. + This is being added to enable a simple scenario of pre-paid + provisioning on some carriers, working around a bug (7305641) + where if the preferred is used we don't try the others. + */ + public static final int config_dontPreferApn=0x01120075; + /** If true, the doze component is not started until after the screen has been + turned off and the screen off animation has been performed. + */ + public static final int config_dozeAfterScreenOff=0x01120069; + /** If supported and enabled, are dreams activated when docked? (by default) + */ + public static final int config_dreamsActivatedOnDockByDefault=0x01120066; + /** If supported and enabled, are dreams activated when asleep and charging? (by default) + */ + public static final int config_dreamsActivatedOnSleepByDefault=0x01120067; + /** If supported, are dreams enabled? (by default) + */ + public static final int config_dreamsEnabledByDefault=0x01120065; + /** Are we allowed to dream while not plugged in? + */ + public static final int config_dreamsEnabledOnBattery=0x01120068; + /** Specifies whether the dreams feature should be supported. + When true, the system will allow the user to configure dreams (screensavers) + to launch when a user activity timeout occurs or the system is told to nap. + When false, the dreams feature will be disabled (this does not affect dozing). + + Consider setting this resource to false or disabling dreams by default when a + doze component is specified below since dreaming will supercede dozing and + will prevent the system from entering a low power state until the dream ends. + */ + public static final int config_dreamsSupported=0x01120064; + /** If this value is true, duplicate Source/Destination port fields + in WDP header of some carriers OMADM wap push are supported. + ex: MSGTYPE-TotalSegments-CurrentSegment + -SourcePortDestPort-SourcePortDestPort-OMADM PDU + If false, not supported. + */ + public static final int config_duplicate_port_omadm_wappush=0x0112005f; + /** Flag indicating device support for EAP SIM, AKA, AKA' + */ + public static final int config_eap_sim_based_auth_supported=0x0112009e; + /** Whether to enable Hardware Activity-Recognition overlay which allows Hardware + Activity-Recognition to be replaced by an app at run-time. When disabled, only the + config_activityRecognitionHardwarePackageName package will be searched for + its implementation, otherwise packages whose signature matches the + signatures of config_locationProviderPackageNames will be searched, and + the service with the highest version number will be picked. Anyone who + wants to disable the overlay mechanism can set it to false. + + */ + public static final int config_enableActivityRecognitionHardwareOverlay=0x0112004e; + /** Set this to true to enable the platform's auto-power-save modes like doze and + app standby. These are not enabled by default because they require a standard + cloud-to-device messaging service for apps to interact correctly with the modes + (such as to be able to deliver an instant message to the device even when it is + dozing). This should be enabled if you have such services and expect apps to + correctly use them when installed on your device. Otherwise, keep this disabled + so that applications can still use their own mechanisms. + */ + public static final int config_enableAutoPowerModes=0x01120013; + /** If true, the display will be shifted around in ambient mode. + */ + public static final int config_enableBurnInProtection=0x01120098; + /** Whether to enable fused location provider overlay which allows fused + location provider to be replaced by an app at run-time. When disabled, + only the config_fusedLocationProviderPackageName package will be + searched for fused location provider, otherwise packages whose + signature matches the signatures of config_locationProviderPackageNames + will be searched, and the service with the highest version number will + be picked. Anyone who wants to disable the overlay mechanism can set it + to false. + + */ + public static final int config_enableFusedLocationOverlay=0x0112004a; + /** Whether to enable geocoder overlay which allows geocoder to be replaced + by an app at run-time. When disabled, only the + config_geocoderProviderPackageName package will be searched for + geocoder, otherwise packages whose signature matches the signatures of + config_locationProviderPackageNames will be searched, and the service + with the highest version number will be picked. Anyone who wants to + disable the overlay mechanism can set it to false. + + */ + public static final int config_enableGeocoderOverlay=0x0112004c; + /** Whether to enable geofence overlay which allows geofence to be replaced + by an app at run-time. When disabled, only the + config_geofenceProviderPackageName package will be searched for + geofence implementation, otherwise packages whose signature matches the + signatures of config_locationProviderPackageNames will be searched, and + the service with the highest version number will be picked. Anyone who + wants to disable the overlay mechanism can set it to false. + + */ + public static final int config_enableGeofenceOverlay=0x0112004d; + /** Whether to enable Hardware FLP overlay which allows Hardware FLP to be + replaced by an app at run-time. When disabled, only the + config_hardwareFlpPackageName package will be searched for Hardware Flp, + otherwise packages whose signature matches the signatures of + config_locationProviderPackageNames will be searched, and the service + with the highest version number will be picked. Anyone who wants to + disable the overlay mechanism can set it to false. + + */ + public static final int config_enableHardwareFlpOverlay=0x0112004b; + /** Don't show lock screen before unlock screen (PIN/pattern/password) + */ + public static final int config_enableLockBeforeUnlockScreen=0x0112003e; + /** Disable lockscreen rotation by default + */ + public static final int config_enableLockScreenRotation=0x0112003f; + /** Enable lockscreen translucent decor by default + */ + public static final int config_enableLockScreenTranslucentDecor=0x01120040; + /** Whether UI for multi user should be shown + */ + public static final int config_enableMultiUserUI=0x0112006e; + /** Whether to enable network location overlay which allows network + location provider to be replaced by an app at run-time. When disabled, + only the config_networkLocationProviderPackageName package will be + searched for network location provider, otherwise packages whose + signature matches the signatures of config_locationProviderPackageNames + will be searched, and the service with the highest version number will + be picked. Anyone who wants to disable the overlay mechanism can set it + to false. + + */ + public static final int config_enableNetworkLocationOverlay=0x01120049; + /** If this is true, key chords can be used to take a screenshot on the device. + */ + public static final int config_enableScreenshotChord=0x01120026; + /** Enable translucent decor by default + */ + public static final int config_enableTranslucentDecor=0x01120041; + /** True if WallpaperService is enabled + */ + public static final int config_enableWallpaperService=0x01120048; + /** Whether WiFi display is supported by this device. + There are many prerequisites for this feature to work correctly. + Here are a few of them: + * The WiFi radio must support WiFi P2P. + * The WiFi radio must support concurrent connections to the WiFi display and + to an access point. + * The Audio Flinger audio_policy.conf file must specify a rule for the "r_submix" + remote submix module. This module is used to record and stream system + audio output to the WiFi display encoder in the media server. + * The remote submix module "audio.r_submix.default" must be installed on the device. + * The device must be provisioned with HDCP keys (for protected content). + + */ + public static final int config_enableWifiDisplay=0x01120070; + /** Enable emergency call when sim is locked or puk locked. Some countries/carriers do not + allow emergency calls to be placed without the IMSI, which is locked in the SIM. + If so, this should be set to 'false' in an overlay. + */ + public static final int config_enable_emergency_call_while_sim_locked=0x01120044; + /** Enable puk unlockscreen by default. + If unlock screen is disabled, the puk should be unlocked through Emergency Dialer + */ + public static final int config_enable_puk_unlock_screen=0x01120043; + /** Flag indicating that this device does not rotate and will always remain in its default + orientation. Activities that desire to run in a non-compatible orientation will be run + from an emulated display within the physical display. + */ + public static final int config_forceDefaultOrientation=0x0112007a; + /** If this is true, go to sleep when theater mode is enabled from button press + */ + public static final int config_goToSleepOnButtonPressTheaterMode=0x01120031; + /** Override the DPad detection behavior for configuration purposes + */ + public static final int config_hasPermanentDpad=0x0112007c; + /** default device has recents property + */ + public static final int config_hasRecents=0x0112007e; + /** Is the device capable of hot swapping an UICC Card + */ + public static final int config_hotswapCapable=0x01120042; + /** Is the notification LED intrusive? Used to decide if there should be a disable option + */ + public static final int config_intrusiveNotificationLed=0x0112003c; + /** Indicate whether closing the lid causes the device to go to sleep and opening + it causes the device to wake up. + The default is false. + */ + public static final int config_lidControlsSleep=0x01120036; + /** Whether the main built-in display is round. This will affect + Configuration.screenLayout's SCREENLAYOUT_ROUND_MASK flags for Configurations on the + main built-in display. Change this in device-specific overlays. + Defaults to the older, deprecated config_windowIsRound already used in + some existing device-specific resource overlays. + */ + public static final int config_mainBuiltInDisplayIsRound=0x0112009b; + /** If this value is true, The mms content-disposition field is supported correctly. + If false, Content-disposition fragments are ignored + */ + public static final int config_mms_content_disposition_support=0x0112005d; + public static final int config_networkSamplingWakesDevice=0x0112008c; + /** Power Management: Specifies whether to decouple the auto-suspend state of the + device from the display on/off state. + + When false, autosuspend_disable() will be called before the display is turned on + and autosuspend_enable() will be called after the display is turned off. + This mode provides best compatibility for devices using legacy power management + features such as early suspend / late resume. + + When true, autosuspend_display() and autosuspend_enable() will be called + independently of whether the display is being turned on or off. This mode + enables the power manager to suspend the application processor while the + display is on. + + This resource should be set to "true" when a doze component has been specified + to maximize power savings but not all devices support it. + + Refer to autosuspend.h for details. + + */ + public static final int config_powerDecoupleAutoSuspendModeFromDisplay=0x0112006a; + /** Power Management: Specifies whether to decouple the interactive state of the + device from the display on/off state. + + When false, setInteractive(..., true) will be called before the display is turned on + and setInteractive(..., false) will be called after the display is turned off. + This mode provides best compatibility for devices that expect the interactive + state to be tied to the display state. + + When true, setInteractive(...) will be called independently of whether the display + is being turned on or off. This mode enables the power manager to reduce + clocks and disable the touch controller while the display is on. + + This resource should be set to "true" when a doze component has been specified + to maximize power savings but not all devices support it. + + Refer to power.h for details. + + */ + public static final int config_powerDecoupleInteractiveModeFromDisplay=0x0112006b; + /** Boolean indicating if RADIO POWER OFF is required on receiving SIM REFRESH with RESET. + This will be handled by modem if it is false. + */ + public static final int config_requireRadioPowerOffOnSimRefreshReset=0x01120077; + /** Set to true if after a provisioning apn the radio should be restarted + */ + public static final int config_restartRadioAfterProvisioning=0x01120076; + /** Flag indicating whether radio is to be restarted on the error of + PDP_FAIL_REGULAR_DEACTIVATION/0x24 + */ + public static final int config_restart_radio_on_pdp_fail_regular_deactivation=0x01120090; + /** If true, the direction rotation is applied to get to an application's requested + orientation is reversed. Normally, the model is that landscape is + clockwise from portrait; thus on a portrait device an app requesting + landscape will cause a clockwise rotation, and on a landscape device an + app requesting portrait will cause a counter-clockwise rotation. Setting + true here reverses that logic. + */ + public static final int config_reverseDefaultRotation=0x01120035; + /** Whether safe headphone volume is enabled or not (country specific). + */ + public static final int config_safe_media_volume_enabled=0x01120072; + /** Flag indicating whether the AUDIO_BECOMING_NOISY notification should + be sent during a change to the audio output device. + */ + public static final int config_sendAudioBecomingNoisy=0x0112000f; + /** Flag indicating whether the surface flinger has limited + alpha compositing functionality in hardware. If set, the window + manager will disable alpha trasformation in animations where not + strictly needed. + */ + public static final int config_sf_limitedAlpha=0x0112000b; + /** Flag indicating whether the surface flinger is inefficient + at performing a blur. Used by parts of the UI to turn off + the blur effect where it isn't worth the performance hit. + As of Honeycomb, blurring is not supported anymore. + */ + public static final int config_sf_slowBlur=0x0112000d; + /** Sets whether menu shortcuts should be displayed on panel menus when + a keyboard is present. + */ + public static final int config_showMenuShortcutsWhenKeyboardPresent=0x0112005a; + /** Whether a software navigation bar should be shown. NOTE: in the future this may be + autodetected from the Configuration. + */ + public static final int config_showNavigationBar=0x01120060; + /** Enables SIP on WIFI only + */ + public static final int config_sip_wifi_only=0x01120057; + /** Flag indicating whether the current device allows sms service. + If true, this means that the device supports both sending and + receiving sms via the telephony network. + This can be overridden to false for "data only" devices + which can't send and receive sms message. + + Note: Disable SMS also disable voicemail waiting sms, + cell broadcasting sms, and MMS. + */ + public static final int config_sms_capable=0x01120055; + /** From SmsMessage +Support decoding the user data payload as pack GSM 8-bit (a GSM alphabet + string that's stored in 8-bit unpacked format) characters. + */ + public static final int config_sms_decode_gsm_8bit_data=0x0112008d; + public static final int config_sms_force_7bit_encoding=0x01120092; + /** If this value is true, Sms encoded as octet is decoded by utf8 decoder. + If false, decoded by Latin decoder. + */ + public static final int config_sms_utf8_support=0x0112005c; + /** Flag indicating if the speed up audio on mt call code should be executed + */ + public static final int config_speed_up_audio_on_mt_calls=0x01120078; + /** set to false if we need to show user confirmation + when alpha identifier is not provided by the UICC + */ + public static final int config_stkNoAlphaUsrCnf=0x0112007b; + /** Auto-rotation behavior + If true, enables auto-rotation features using the accelerometer. + Otherwise, auto-rotation is disabled. Applications may still request + to use specific orientations but the sensor is ignored and sensor-based + orientations are not available. Furthermore, all auto-rotation related + settings are omitted from the system UI. In certain situations we may + still use the accelerometer to determine the orientation, such as when + docked if the dock is configured to enable the accelerometer. + */ + public static final int config_supportAutoRotation=0x01120033; + /** Whether device supports double tap to wake + */ + public static final int config_supportDoubleTapWake=0x0112009a; + /** If this is true, long press on power button will be available from the non-interactive state + */ + public static final int config_supportLongPressPowerWhenNonInteractive=0x01120032; + /** Ultrasound support for Mic/speaker path + Whether the default microphone audio source supports near-ultrasound frequencies + (range of 18 - 21 kHz). + */ + public static final int config_supportMicNearUltrasound=0x0112009c; + /** Whether the default speaker audio output path supports near-ultrasound frequencies + (range of 18 - 21 kHz). + */ + public static final int config_supportSpeakerNearUltrasound=0x0112009d; + /** Indicate whether to allow the device to suspend when the screen is off + due to the proximity sensor. This resource should only be set to true + if the sensor HAL correctly handles the proximity sensor as a wake-up source. + Otherwise, the device may fail to wake out of suspend reliably. + The default is false. + */ + public static final int config_suspendWhenScreenOffDueToProximity=0x01120039; + /** Enables swipe versus poly-finger touch disambiguation in the KeyboardView + */ + public static final int config_swipeDisambiguation=0x01120047; + /** Config determines whether to update phone object when voice registration + state changes. Voice radio tech change will always trigger an update of + phone object irrespective of this config + */ + public static final int config_switch_phone_on_voice_reg_state_change=0x01120091; + /** The default value if the SyncStorageEngine should sync automatically or not + */ + public static final int config_syncstorageengine_masterSyncAutomatically=0x0112006d; + /** The VoiceMail default value is displayed to my own number if it is true + */ + public static final int config_telephony_use_own_number_for_voicemail=0x0112005b; + /** Enables or disables fading edges when marquee is enabled in TextView. + Off by default, since the framebuffer readback used to implement the + fading edges is prohibitively expensive on most GPUs. + */ + public static final int config_ui_enableFadingMarquee=0x01120010; + /** XXXXXX END OF RESOURCES USING WRONG NAMING CONVENTION + If this is true, the screen will come on when you unplug usb/power/whatever. + */ + public static final int config_unplugTurnsOnScreen=0x01120023; + /** Set this true only if the device has separate attention and notification lights. + */ + public static final int config_useAttentionLight=0x01120024; + /** When true use the linux /dev/input/event subsystem to detect the switch changes + on the headphone/microphone jack. When false use the older uevent framework. + */ + public static final int config_useDevInputEventForAudioJack=0x01120071; + /** Flag indicating that the media framework should not allow changes or mute on any + stream or master volumes. + */ + public static final int config_useFixedVolume=0x01120079; + /** Flag indicating that the media framework should support playing of sounds on volume + key usage. This adds noticeable additional overhead to volume key processing, so + is disableable for products for which it is irrelevant. + */ + public static final int config_useVolumeKeySounds=0x0112000e; + /** set the system language as value of EF LI/EF PL + */ + public static final int config_use_sim_language_file=0x01120095; + public static final int config_use_strict_phone_number_comparation=0x0112003b; + /** Flag indicating if the user is notified when the mobile network access is restricted + */ + public static final int config_user_notification_of_restrictied_mobile_access=0x01120054; + /** Flag indicating whether the current device is "voice capable". + If true, this means that the device supports circuit-switched + (i.e. voice) phone calls over the telephony network, and is + allowed to display the in-call UI while a cellular voice call is + active. This can be overridden to false for "data only" devices + which can't make voice calls and don't support any in-call UI. + + Note: this flag is subtly different from the + PackageManager.FEATURE_TELEPHONY system feature, which is + available on *any* device with a telephony radio, even if the + device is data-only. + */ + public static final int config_voice_capable=0x01120053; + /** Set to true if the wifi display supports compositing content stored + in gralloc protected buffers. For this to be true, there must exist + a protected hardware path for surface flinger to composite and send + protected buffers to the wifi display video encoder. + + If this flag is false, we advise applications not to use protected + buffers (if possible) when presenting content to a wifi display because + the content may be blanked. + + This flag controls whether the {@link Display#FLAG_SUPPORTS_PROTECTED_BUFFERS} + flag is set for wifi displays. + + */ + public static final int config_wifiDisplaySupportsProtectedBuffers=0x01120073; + /** Boolean indicating whether the wifi chipset supports background scanning mechanism. + This mechanism allows the host to remain in suspend state and the dongle to actively + scan and wake the host when a configured SSID is detected by the dongle. This chipset + capability can provide power savings when wifi needs to be always kept on. + */ + public static final int config_wifi_background_scan_support=0x01120016; + /** Wifi driver supports batched scan + */ + public static final int config_wifi_batched_scan_supported=0x0112001e; + /** Boolean indicating whether the wifi chipset has dual frequency band support + */ + public static final int config_wifi_dual_band_support=0x01120014; + /** Boolean indicating autojoin will prefer 5GHz and choose 5GHz BSSIDs + */ + public static final int config_wifi_enable_5GHz_preference=0x01120018; + /** Boolean indicating we re-try re-associating once upon disconnection and RSSI is high failure + */ + public static final int config_wifi_enable_disconnection_debounce=0x01120017; + /** Boolean indicating whether or not wifi firmware debugging is enabled + */ + public static final int config_wifi_enable_wifi_firmware_debugging=0x0112001a; + public static final int config_wifi_framework_cellular_handover_enable_user_triggered_adjustment=0x0112001b; + /** Boolean indicating associated network selection is allowed + */ + public static final int config_wifi_framework_enable_associated_network_selection=0x0112001c; + /** Wifi HAL supported PNO + */ + public static final int config_wifi_hal_pno_enable=0x0112001f; + /** Boolean indicating whether Hotspot 2.0/Passpoint and ANQP queries is enabled + */ + public static final int config_wifi_hotspot2_enabled=0x01120015; + /** Boolean indicating that wifi only link configuratios that have exact same credentials (i.e PSK) + */ + public static final int config_wifi_only_link_same_credential_configurations=0x0112001d; + /** Boolean indicating whether or not to revert to default country code when cellular + radio is unable to find any MCC information to infer wifi country code from + */ + public static final int config_wifi_revert_country_code_on_cellular_loss=0x01120019; + /** Wifi SSID white list (can't be enabled if config_wifi_hal_pno_enable is not) + */ + public static final int config_wifi_ssid_white_list_enable=0x01120020; + /** Set and Unsets WiMAX + */ + public static final int config_wimaxEnabled=0x01120063; + /** default value for whether circular emulators (ro.emulator.circular) + should show a display overlay on the screen + */ + public static final int config_windowEnableCircularEmulatorDisplayOverlay=0x01120080; + /** default window ShowCircularMask property + */ + public static final int config_windowShowCircularMask=0x0112007f; + /** SIM does not save, but the voice mail number to be changed. + */ + public static final int editable_voicemailnumber=0x0112008f; + /** Flag indicating whether the IMS service can be turned off. If false then + the service will not be turned-off completely (the ImsManager.turnOffIms() will + be disabled) but individual Features can be disabled using ImsConfig.setFeatureValue() + */ + public static final int imsServiceAllowTurnOff=0x01120083; + public static final int preferences_prefer_dual_pane=0x01120006; + public static final int show_ongoing_ime_switcher=0x01120007; + /** Flag indicating apps will skip sending hold request before merge. In this case + IMS service implementation will do both.i.e.hold followed by merge. + */ + public static final int skipHoldBeforeMerge=0x01120081; + /** Boolean indicating if restoring network selection should be skipped + The restoring is handled by modem if it is true + */ + public static final int skip_restoring_network_selection=0x01120059; + public static final int split_action_bar_is_narrow=0x01120005; + public static final int target_honeycomb_needs_options_menu=0x01120009; + /** Flag indicating emergency calls will always use IMS irrespective of the state of + the IMS connection + */ + public static final int useImsAlwaysForEmergencyCall=0x01120082; + } + public static final class color { + public static final int background_dark=0x0106000e; + public static final int background_light=0x0106000f; + public static final int battery_saver_mode_color=0x0106005a; + public static final int black=0x0106000c; + public static final int chooser_service_row_background_color=0x01060071; + /** Default color for notification LED. + */ + public static final int config_defaultNotificationColor=0x010600ed; + public static final int darker_gray=0x01060000; + /** A really bright Holo shade of blue + */ + public static final int holo_blue_bright=0x0106001b; + /** A dark Holo shade of blue + */ + public static final int holo_blue_dark=0x01060013; + /** A light Holo shade of blue + */ + public static final int holo_blue_light=0x01060012; + /** A dark Holo shade of green + */ + public static final int holo_green_dark=0x01060015; + /** A light Holo shade of green + */ + public static final int holo_green_light=0x01060014; + /** A dark Holo shade of orange + */ + public static final int holo_orange_dark=0x01060019; + /** A light Holo shade of orange + */ + public static final int holo_orange_light=0x01060018; + /** A Holo shade of purple + */ + public static final int holo_purple=0x0106001a; + /** A dark Holo shade of red + */ + public static final int holo_red_dark=0x01060017; + /** A light Holo shade of red + */ + public static final int holo_red_light=0x01060016; + public static final int input_method_navigation_guard=0x01060032; + public static final int lock_pattern_view_error_color=0x0106004c; + /** LockPatternView + */ + public static final int lock_pattern_view_regular_color=0x0106004a; + public static final int lock_pattern_view_success_color=0x0106004b; + public static final int notification_action_color_filter=0x01060050; + public static final int notification_icon_bg_color=0x0106004f; + public static final int notification_media_primary_color=0x01060051; + public static final int notification_media_secondary_color=0x01060052; + public static final int notification_progress_background_color=0x01060053; + public static final int primary_text_dark=0x01060001; + public static final int primary_text_dark_nodisable=0x01060002; + public static final int primary_text_light=0x01060003; + public static final int primary_text_light_nodisable=0x01060004; + public static final int secondary_text_dark=0x01060005; + public static final int secondary_text_dark_nodisable=0x01060006; + public static final int secondary_text_light=0x01060007; + public static final int secondary_text_light_nodisable=0x01060008; + public static final int system_notification_accent_color=0x01060059; + public static final int tab_indicator_text=0x01060009; + public static final int tab_indicator_text_v4=0x01060125; + public static final int tertiary_text_dark=0x01060010; + public static final int tertiary_text_light=0x01060011; + public static final int timepicker_default_ampm_selected_background_color_material=0x010600d9; + public static final int timepicker_default_ampm_unselected_background_color_material=0x010600da; + public static final int timepicker_default_numbers_background_color_material=0x010600dc; + public static final int timepicker_default_selector_color_material=0x010600db; + public static final int timepicker_default_text_color_material=0x010600d8; + public static final int transparent=0x0106000d; + /** deep orange 600 + Default user icon colors + */ + public static final int user_icon_1=0x0106005b; + /** teal 500 + */ + public static final int user_icon_2=0x0106005c; + /** indigo 500 + */ + public static final int user_icon_3=0x0106005d; + /** blue 500 + */ + public static final int user_icon_4=0x0106005e; + /** pink 500 + */ + public static final int user_icon_5=0x0106005f; + /** green 500 + */ + public static final int user_icon_6=0x01060060; + /** light green 500 + */ + public static final int user_icon_7=0x01060061; + /** orange 500 + */ + public static final int user_icon_8=0x01060062; + /** deep orange 500 + */ + public static final int user_icon_default_gray=0x01060063; + /** gray 500 + */ + public static final int user_icon_default_white=0x01060064; + public static final int white=0x0106000b; + public static final int widget_edittext_dark=0x0106000a; + } + public static final class dimen { + /** Width of the outline stroke used by the accessibility screen magnification indicator + */ + public static final int accessibility_magnification_indicator_width=0x01050077; + /** Touch slop for the global toggle accessibility gesture + */ + public static final int accessibility_touch_slop=0x01050076; + /** Maximum height for a stacked tab bar as part of an action bar + */ + public static final int action_bar_stacked_max_height=0x01050058; + /** Maximum width for a stacked action bar tab. This prevents + action bar tabs from becoming too wide on a wide screen when only + a few are present. + */ + public static final int action_bar_stacked_tab_max_width=0x01050059; + /** Dialog padding for round display + */ + public static final int alert_dialog_round_padding=0x0105003b; + /** The standard size (both width and height) of an application icon that + will be displayed in the app launcher and elsewhere. + */ + public static final int app_icon_size=0x01050000; + /** Size of the offset applied to the position of the circular mask. This + is only used on circular displays. In the case where there is no + "chin", this will default to 0 + */ + public static final int circular_display_mask_offset=0x0105008a; + /** Amount to reduce the size of the circular mask by (to compensate for + aliasing effects). This is only used on circular displays. + */ + public static final int circular_display_mask_thickness=0x0105008b; + /** The maximum bitmap size that can be written to a MediaMetadata object. This value + is the max width/height allowed in dips. + */ + public static final int config_mediaMetadataBitmapMaxSize=0x01050014; + /** Minimum span needed to begin a touch scaling gesture. + If the span is equal to or greater than this size, a scaling gesture + will begin, where supported. (See android.view.ScaleGestureDetector) + + This also takes into account the size of any active touch points. + Devices with screens that deviate too far from their assigned density + bucket should consider tuning this value in a device-specific overlay. + For best results, care should be taken such that this value remains + larger than the minimum reported touchMajor/touchMinor values + reported by the hardware. + */ + public static final int config_minScalingSpan=0x01050012; + /** Minimum accepted value for touchMajor while scaling. This may be tuned + per-device in overlays. + */ + public static final int config_minScalingTouchMajor=0x01050013; + /** The maximum width we would prefer dialogs to be. 0 if there is no + maximum (let them grow as large as the screen). Actual values are + specified for -large and -xlarge configurations. + */ + public static final int config_prefDialogWidth=0x0105000e; + /** Scale factor threshold used by the screen magnifier to determine when to switch from + panning to scaling the magnification viewport. + */ + public static final int config_screen_magnification_scaling_threshold=0x01050015; + /** Base "touch slop" value used by ViewConfiguration as a + movement threshold where scrolling should begin. + */ + public static final int config_viewConfigurationTouchSlop=0x0105000f; + /** Maximum velocity to initiate a fling, as measured in dips per second. + */ + public static final int config_viewMaxFlingVelocity=0x01050011; + /** Minimum velocity to initiate a fling, as measured in dips per second. + */ + public static final int config_viewMinFlingVelocity=0x01050010; + public static final int content_rect_bottom_clip_allowance=0x010500a2; + public static final int date_picker_day_height=0x01050121; + public static final int date_picker_day_of_week_height=0x01050120; + public static final int date_picker_day_of_week_text_size=0x0105011d; + public static final int date_picker_day_selector_radius=0x01050123; + public static final int date_picker_day_text_size=0x0105011e; + public static final int date_picker_day_width=0x01050122; + public static final int date_picker_month_height=0x0105011f; + /** Used by Material-style SimpleMonthView + */ + public static final int date_picker_month_text_size=0x0105011c; + public static final int datepicker_view_animator_height=0x01050127; + /** Material date picker dimensions. + */ + public static final int datepicker_year_label_height=0x01050110; + public static final int day_picker_padding_top=0x01050125; + public static final int default_app_widget_padding_bottom=0x01050056; + /** Default padding to apply to AppWidgetHostViews containing widgets targeting API level 14 and up. + */ + public static final int default_app_widget_padding_left=0x01050053; + public static final int default_app_widget_padding_right=0x01050055; + public static final int default_app_widget_padding_top=0x01050054; + /** The default gap between components in a layout. + */ + public static final int default_gap=0x0105004e; + /** The platform's desired minimum size for a dialog's width when it + is along the major axis (that is the screen is landscape). This may + be either a fraction or a dimension. + */ + public static final int dialog_min_width_major=0x01050003; + /** The platform's desired minimum size for a dialog's width when it + is along the minor axis (that is the screen is portrait). This may + be either a fraction or a dimension. + */ + public static final int dialog_min_width_minor=0x01050004; + /** Width of the icon in a dropdown list + */ + public static final int dropdownitem_icon_width=0x01050051; + /** Text padding for dropdown items + */ + public static final int dropdownitem_text_padding_left=0x0105004f; + /** Minimum size of the fast scroller thumb's touch target. + */ + public static final int fast_scroller_minimum_touch_target=0x01050087; + /** Floating toolbar dimensions + */ + public static final int floating_toolbar_height=0x01050095; + public static final int floating_toolbar_horizontal_margin=0x010500a0; + public static final int floating_toolbar_maximum_overflow_height=0x0105009f; + public static final int floating_toolbar_menu_button_minimum_width=0x0105009c; + public static final int floating_toolbar_menu_button_side_padding=0x01050098; + public static final int floating_toolbar_minimum_overflow_height=0x0105009e; + public static final int floating_toolbar_overflow_side_padding=0x0105009a; + public static final int floating_toolbar_preferred_width=0x0105009d; + public static final int floating_toolbar_text_size=0x0105009b; + public static final int floating_toolbar_vertical_margin=0x010500a1; + /** width of ImmersiveModeConfirmation (-1 for match_parent) + */ + public static final int immersive_mode_cling_width=0x01050088; + public static final int lock_pattern_dot_line_width=0x0105008c; + public static final int lock_pattern_dot_size=0x0105008d; + public static final int lock_pattern_dot_size_activated=0x0105008e; + /** Height of the bottom navigation / system bar. + */ + public static final int navigation_bar_height=0x01050018; + /** Height of the bottom navigation bar in portrait; often the same as @dimen/navigation_bar_height + */ + public static final int navigation_bar_height_landscape=0x01050019; + /** Width of the navigation bar when it is placed vertically on the screen + */ + public static final int navigation_bar_width=0x0105001a; + /** Size of the profile badge for notifications + */ + public static final int notification_badge_size=0x01050062; + /** Padding for notification icon when drawn with circle around it + */ + public static final int notification_large_icon_circle_padding=0x01050061; + /** The width of the big icons in notifications. + */ + public static final int notification_large_icon_height=0x01050006; + /** The width of the big icons in notifications. + */ + public static final int notification_large_icon_width=0x01050005; + /** Size of smaller notification text (see TextAppearance.StatusBar.EventContent.Line2, Info, Time) + */ + public static final int notification_subtext_size=0x0105005c; + /** Size of notification text (see TextAppearance.StatusBar.EventContent) + */ + public static final int notification_text_size=0x0105005a; + /** Size of notification text titles (see TextAppearance.StatusBar.EventContent.Title) + */ + public static final int notification_title_text_size=0x0105005b; + /** Top padding for notifications in the standard layout. + */ + public static final int notification_top_pad=0x0105005d; + /** Top padding for notification when text is large + */ + public static final int notification_top_pad_large_text=0x0105005f; + /** Top padding for notification when text is large and narrow (i.e. it has 3 lines + */ + public static final int notification_top_pad_large_text_narrow=0x01050060; + /** Top padding for notifications when narrow (i.e. it has 3 lines) + */ + public static final int notification_top_pad_narrow=0x0105005e; + /** Default correction for the space key in the password keyboard (used by keyguard) + */ + public static final int password_keyboard_spacebar_vertical_correction=0x01050021; + /** Preference fragment padding, bottom + */ + public static final int preference_fragment_padding_bottom=0x0105002a; + /** Preference fragment padding, sides + */ + public static final int preference_fragment_padding_side=0x0105002b; + /** Preferred width of the search view. + */ + public static final int search_view_preferred_width=0x0105003a; + /** Height of the status bar + */ + public static final int status_bar_height=0x01050017; + /** Height of notification icons in the status bar + */ + public static final int status_bar_icon_size=0x0105001b; + /** Rounded corner radius for video subtitles. + */ + public static final int subtitle_corner_radius=0x01050083; + /** Outline width for video subtitles. + */ + public static final int subtitle_outline_width=0x01050086; + /** Shadow offset for video subtitles. + */ + public static final int subtitle_shadow_offset=0x01050085; + /** Shadow radius for video subtitles. + */ + public static final int subtitle_shadow_radius=0x01050084; + public static final int text_handle_min_size=0x0105008f; + public static final int text_size_small_material=0x010500e5; + /** Default width for a textview error popup + */ + public static final int textview_error_popup_default_width=0x01050052; + /** The height that is used when creating thumbnails of applications. + */ + public static final int thumbnail_height=0x01050001; + /** The width that is used when creating thumbnails of applications. + */ + public static final int thumbnail_width=0x01050002; + public static final int timepicker_center_dot_radius=0x0105010a; + public static final int timepicker_selector_dot_radius=0x0105010b; + /** Used by RadialTimePicker in clock-style TimePicker. + */ + public static final int timepicker_selector_radius=0x01050108; + public static final int timepicker_selector_stroke=0x01050109; + public static final int timepicker_text_inset_inner=0x0105010d; + public static final int timepicker_text_inset_normal=0x0105010c; + public static final int timepicker_text_size_inner=0x0105010f; + public static final int timepicker_text_size_normal=0x0105010e; + public static final int toast_y_offset=0x01050016; + } + public static final class drawable { + public static final int alert_dark_frame=0x01080000; + public static final int alert_light_frame=0x01080001; + public static final int arrow_down_float=0x01080002; + public static final int arrow_up_float=0x01080003; + public static final int bottom_bar=0x0108009a; + public static final int btn_check_off=0x010800e5; + public static final int btn_default=0x01080004; + public static final int btn_default_small=0x01080005; + public static final int btn_dialog=0x01080017; + public static final int btn_dropdown=0x01080006; + public static final int btn_minus=0x01080007; + public static final int btn_plus=0x01080008; + public static final int btn_radio=0x01080009; + public static final int btn_star=0x0108000a; + public static final int btn_star_big_off=0x0108000b; + public static final int btn_star_big_on=0x0108000c; + public static final int button_onoff_indicator_off=0x0108000e; + public static final int button_onoff_indicator_on=0x0108000d; + public static final int call_contact=0x01080256; + public static final int checkbox_off_background=0x0108000f; + public static final int checkbox_on_background=0x01080010; + public static final int cling_arrow_up=0x01080257; + public static final int cling_bg=0x01080258; + public static final int cling_button=0x01080259; + public static final int clock_dial=0x0108025c; + public static final int clock_hand_hour=0x0108025d; + public static final int clock_hand_minute=0x0108025e; + public static final int compass_arrow=0x01080264; + public static final int compass_base=0x01080265; + public static final int create_contact=0x01080269; + /** Drawable to use as a background for separators on a list with a dark background + */ + public static final int dark_header=0x010800a5; + public static final int default_wallpaper=0x0108026c; + public static final int dialog_frame=0x01080011; + public static final int dialog_holo_dark_frame=0x010800b2; + public static final int dialog_holo_light_frame=0x010800b3; + public static final int divider_horizontal_bright=0x01080012; + public static final int divider_horizontal_dark=0x01080014; + public static final int divider_horizontal_dim_dark=0x01080015; + public static final int divider_horizontal_textfield=0x01080013; + public static final int edit_text=0x01080016; + public static final int editbox_background=0x01080018; + public static final int editbox_background_normal=0x01080019; + public static final int editbox_dropdown_dark_frame=0x0108001a; + public static final int editbox_dropdown_light_frame=0x0108001b; + public static final int emo_im_angel=0x010802aa; + public static final int emo_im_cool=0x010802ab; + public static final int emo_im_crying=0x010802ac; + public static final int emo_im_embarrassed=0x010802ad; + public static final int emo_im_foot_in_mouth=0x010802ae; + public static final int emo_im_happy=0x010802af; + public static final int emo_im_kissing=0x010802b0; + public static final int emo_im_laughing=0x010802b1; + public static final int emo_im_lips_are_sealed=0x010802b2; + public static final int emo_im_money_mouth=0x010802b3; + public static final int emo_im_sad=0x010802b4; + public static final int emo_im_surprised=0x010802b5; + public static final int emo_im_tongue_sticking_out=0x010802b6; + public static final int emo_im_undecided=0x010802b7; + public static final int emo_im_winking=0x010802b8; + public static final int emo_im_wtf=0x010802b9; + public static final int emo_im_yelling=0x010802ba; + public static final int emulator_circular_window_overlay=0x010802bb; + public static final int expander_close_holo_dark=0x010802bc; + public static final int expander_ic_maximized=0x010802c3; + public static final int expander_ic_minimized=0x010802c4; + public static final int expander_open_holo_dark=0x010802c5; + public static final int gallery_thumb=0x0108001c; + public static final int ic_account_circle=0x010802f2; + public static final int ic_action_assist_focused=0x010802f3; + public static final int ic_audio_alarm=0x010802f5; + public static final int ic_audio_alarm_mute=0x010802f6; + public static final int ic_audio_media=0x010802f7; + public static final int ic_audio_media_mute=0x010802f8; + public static final int ic_audio_notification=0x010802f9; + public static final int ic_audio_notification_mute=0x010802fb; + public static final int ic_audio_ring_notif=0x010802fd; + public static final int ic_audio_ring_notif_mute=0x010802fe; + public static final int ic_audio_ring_notif_vibrate=0x010802ff; + public static final int ic_audio_vol=0x01080300; + public static final int ic_audio_vol_mute=0x01080301; + public static final int ic_btn_speak_now=0x010800a4; + public static final int ic_bullet_key_permission=0x0108030c; + public static final int ic_check_circle_24px=0x01080311; + public static final int ic_contact_picture=0x0108032a; + public static final int ic_corp_badge=0x0108032d; + public static final int ic_corp_icon=0x0108032e; + public static final int ic_corp_icon_badge=0x0108032f; + public static final int ic_corp_statusbar_icon=0x01080330; + public static final int ic_delete=0x0108001d; + public static final int ic_dialog_alert=0x01080027; + public static final int ic_dialog_alert_material=0x01080333; + public static final int ic_dialog_dialer=0x01080028; + public static final int ic_dialog_email=0x01080029; + public static final int ic_dialog_info=0x0108009b; + public static final int ic_dialog_map=0x0108002a; + public static final int ic_dialog_usb=0x01080338; + public static final int ic_eject_24dp=0x01080339; + public static final int ic_emergency=0x0108033a; + public static final int ic_folder_24dp=0x01080345; + public static final int ic_grayedout_printer=0x0108034a; + public static final int ic_input_add=0x0108002b; + public static final int ic_input_delete=0x0108002c; + public static final int ic_input_get=0x0108002d; + public static final int ic_jog_dial_sound_off=0x0108034f; + public static final int ic_jog_dial_sound_on=0x01080350; + public static final int ic_jog_dial_unlock=0x01080351; + public static final int ic_jog_dial_vibrate_on=0x01080352; + public static final int ic_lock_airplane_mode=0x01080354; + public static final int ic_lock_airplane_mode_off=0x01080356; + public static final int ic_lock_bugreport=0x01080358; + public static final int ic_lock_idle_alarm=0x0108002e; + public static final int ic_lock_idle_charging=0x0108001e; + public static final int ic_lock_idle_lock=0x0108001f; + public static final int ic_lock_idle_low_battery=0x01080020; + public static final int ic_lock_lock=0x0108002f; + public static final int ic_lock_power_off=0x01080030; + public static final int ic_lock_silent_mode=0x01080031; + public static final int ic_lock_silent_mode_off=0x01080032; + public static final int ic_maps_indicator_current_position_anim=0x01080364; + public static final int ic_media_ff=0x01080021; + public static final int ic_media_next=0x01080022; + public static final int ic_media_pause=0x01080023; + public static final int ic_media_play=0x01080024; + public static final int ic_media_previous=0x01080025; + public static final int ic_media_rew=0x01080026; + public static final int ic_media_route_connecting_holo_dark=0x0108036a; + public static final int ic_media_route_disabled_holo_dark=0x0108036d; + public static final int ic_media_route_off_holo_dark=0x01080373; + public static final int ic_media_route_on_holo_dark=0x0108037f; + public static final int ic_media_stop=0x01080382; + public static final int ic_media_video_poster=0x01080383; + public static final int ic_menu_add=0x01080033; + public static final int ic_menu_agenda=0x01080034; + public static final int ic_menu_always_landscape_portrait=0x01080035; + public static final int ic_menu_archive=0x01080386; + public static final int ic_menu_call=0x01080036; + public static final int ic_menu_camera=0x01080037; + public static final int ic_menu_cc=0x0108038c; + public static final int ic_menu_close_clear_cancel=0x01080038; + public static final int ic_menu_compass=0x01080039; + public static final int ic_menu_crop=0x0108003a; + public static final int ic_menu_day=0x0108003b; + public static final int ic_menu_delete=0x0108003c; + public static final int ic_menu_directions=0x0108003d; + public static final int ic_menu_edit=0x0108003e; + public static final int ic_menu_gallery=0x0108003f; + public static final int ic_menu_goto=0x010803a2; + public static final int ic_menu_help=0x01080040; + public static final int ic_menu_info_details=0x01080041; + public static final int ic_menu_manage=0x01080042; + public static final int ic_menu_mapmode=0x01080043; + public static final int ic_menu_month=0x01080044; + public static final int ic_menu_more=0x01080045; + public static final int ic_menu_moreoverflow_normal_holo_dark=0x010803b0; + public static final int ic_menu_my_calendar=0x01080046; + public static final int ic_menu_mylocation=0x01080047; + public static final int ic_menu_myplaces=0x01080048; + public static final int ic_menu_play_clip=0x010803b7; + public static final int ic_menu_preferences=0x01080049; + public static final int ic_menu_recent_history=0x0108004a; + public static final int ic_menu_refresh=0x010803b8; + public static final int ic_menu_report_image=0x0108004b; + public static final int ic_menu_revert=0x0108004c; + public static final int ic_menu_rotate=0x0108004d; + public static final int ic_menu_save=0x0108004e; + public static final int ic_menu_search=0x0108004f; + public static final int ic_menu_send=0x01080050; + public static final int ic_menu_set_as=0x01080051; + public static final int ic_menu_share=0x01080052; + public static final int ic_menu_slideshow=0x01080053; + public static final int ic_menu_sort_alphabetically=0x0108009c; + public static final int ic_menu_sort_by_size=0x0108009d; + public static final int ic_menu_today=0x01080054; + public static final int ic_menu_upload=0x01080055; + public static final int ic_menu_upload_you_tube=0x01080056; + public static final int ic_menu_view=0x01080057; + public static final int ic_menu_week=0x01080058; + public static final int ic_menu_zoom=0x01080059; + public static final int ic_more_items=0x010803c7; + public static final int ic_notification_clear_all=0x0108005a; + public static final int ic_notification_ime_default=0x010803cb; + public static final int ic_notification_overlay=0x0108005b; + public static final int ic_partial_secure=0x0108005c; + public static final int ic_perm_device_info=0x010803cc; + public static final int ic_popup_disk_full=0x0108005d; + public static final int ic_popup_reminder=0x0108005e; + public static final int ic_popup_sync=0x0108005f; + public static final int ic_print=0x010803d3; + public static final int ic_print_error=0x010803d4; + public static final int ic_sd_card_48dp=0x010803d5; + public static final int ic_search_category_default=0x01080060; + public static final int ic_secure=0x01080061; + public static final int ic_settings=0x010803da; + public static final int ic_settings_24dp=0x010803db; + public static final int ic_settings_language=0x010803dc; + public static final int ic_sim_card_multi_24px_clr=0x010803dd; + public static final int ic_sim_card_multi_48px_clr=0x010803de; + public static final int ic_storage_48dp=0x010803e6; + public static final int ic_text_dot=0x010803e8; + public static final int ic_usb_48dp=0x010803e9; + public static final int ic_voice_search=0x010803ec; + public static final int ic_volume=0x010803f0; + public static final int indicator_input_error=0x010803fd; + public static final int jog_dial_arrow_long_left_green=0x01080408; + public static final int jog_dial_arrow_long_right_red=0x0108040b; + public static final int jog_dial_arrow_short_left_and_right=0x0108040e; + public static final int jog_dial_bg=0x01080410; + public static final int jog_dial_dimple=0x01080411; + public static final int jog_dial_dimple_dim=0x01080412; + public static final int jog_tab_bar_left_generic=0x0108041a; + public static final int jog_tab_bar_left_unlock=0x0108041b; + public static final int jog_tab_bar_right_generic=0x01080423; + public static final int jog_tab_bar_right_sound_off=0x01080424; + public static final int jog_tab_bar_right_sound_on=0x01080425; + public static final int jog_tab_left_generic=0x0108042b; + public static final int jog_tab_left_unlock=0x0108042e; + public static final int jog_tab_right_generic=0x01080434; + public static final int jog_tab_right_sound_off=0x01080437; + public static final int jog_tab_right_sound_on=0x01080438; + public static final int jog_tab_target_gray=0x01080439; + public static final int jog_tab_target_green=0x0108043a; + public static final int jog_tab_target_yellow=0x0108043c; + public static final int list_selector_background=0x01080062; + public static final int list_selector_pressed_holo_dark=0x0108047c; + public static final int loading_tile_android=0x01080480; + public static final int magnified_region_frame=0x01080481; + public static final int maps_google_logo=0x01080482; + public static final int menu_background=0x01080484; + public static final int menu_frame=0x01080063; + public static final int menu_full_frame=0x01080064; + public static final int menuitem_background=0x01080065; + public static final int no_tile_256=0x0108049f; + public static final int notification_icon_legacy_bg=0x010804a0; + public static final int notification_template_icon_bg=0x010806e1; + public static final int notification_template_icon_low_bg=0x010806e2; + public static final int picture_emergency=0x010804da; + public static final int picture_frame=0x01080066; + public static final int platlogo=0x010804db; + public static final int platlogo_m=0x010804dc; + public static final int popup_bottom_bright=0x010804e7; + public static final int popup_bottom_dark=0x010804e8; + public static final int popup_bottom_medium=0x010804e9; + public static final int popup_center_bright=0x010804ea; + public static final int popup_center_dark=0x010804eb; + public static final int popup_full_bright=0x010804ed; + public static final int popup_full_dark=0x010804ee; + public static final int popup_top_bright=0x010804fb; + public static final int popup_top_dark=0x010804fc; + public static final int presence_audio_away=0x010800af; + public static final int presence_audio_busy=0x010800b0; + public static final int presence_audio_online=0x010800b1; + public static final int presence_away=0x01080067; + public static final int presence_busy=0x01080068; + public static final int presence_invisible=0x01080069; + public static final int presence_offline=0x0108006a; + public static final int presence_online=0x0108006b; + /** presence drawables for videochat or audiochat capable contacts + */ + public static final int presence_video_away=0x010800ac; + public static final int presence_video_busy=0x010800ad; + public static final int presence_video_online=0x010800ae; + public static final int progress_horizontal=0x0108006c; + public static final int progress_indeterminate_horizontal=0x0108006d; + public static final int quickcontact_badge_overlay_dark=0x01080529; + public static final int radiobutton_off_background=0x0108006e; + public static final int radiobutton_on_background=0x0108006f; + public static final int reticle=0x01080568; + public static final int screen_background_dark=0x01080098; + /** Semi-transparent background that can be used when placing a dark + themed UI on top of some arbitrary background (such as the + wallpaper). This darkens the background sufficiently that the UI + can be seen. + Background drawable that can be used for a transparent activity to + be able to display a dark UI: this darkens its background to make + a dark (default theme) UI more visible. + */ + public static final int screen_background_dark_transparent=0x010800a9; + public static final int screen_background_light=0x01080099; + /** Background drawable that can be used for a transparent activity to + be able to display a light UI: this lightens its background to make + a light UI more visible. + */ + public static final int screen_background_light_transparent=0x010800aa; + public static final int scroll_indicator_material=0x0108056b; + public static final int scrubber_control_disabled_holo=0x01080572; + public static final int scrubber_control_selector_holo=0x01080578; + public static final int scrubber_progress_horizontal_holo_dark=0x0108057b; + public static final int search_spinner=0x01080586; + public static final int sim_dark_blue=0x01080594; + public static final int sim_dark_green=0x01080595; + public static final int sim_dark_orange=0x01080596; + public static final int sim_dark_purple=0x01080597; + public static final int sim_light_blue=0x01080598; + public static final int sim_light_green=0x01080599; + public static final int sim_light_orange=0x0108059a; + public static final int sim_light_purple=0x0108059b; + public static final int spinner_background=0x01080070; + public static final int spinner_dropdown_background=0x01080071; + public static final int star_big_off=0x01080073; + public static final int star_big_on=0x01080072; + public static final int star_off=0x01080075; + public static final int star_on=0x01080074; + public static final int stat_notify_call_mute=0x01080076; + public static final int stat_notify_car_mode=0x010805d5; + public static final int stat_notify_chat=0x01080077; + public static final int stat_notify_disabled_data=0x010805d6; + public static final int stat_notify_disk_full=0x010805d7; + public static final int stat_notify_error=0x01080078; + public static final int stat_notify_missed_call=0x0108007f; + public static final int stat_notify_more=0x01080079; + public static final int stat_notify_rssi_in_range=0x010805da; + public static final int stat_notify_sdcard=0x0108007a; + public static final int stat_notify_sdcard_prepare=0x010800ab; + public static final int stat_notify_sdcard_usb=0x0108007b; + public static final int stat_notify_sim_toolkit=0x010805db; + public static final int stat_notify_sync=0x0108007c; + public static final int stat_notify_sync_error=0x010805dd; + public static final int stat_notify_sync_noanim=0x0108007d; + public static final int stat_notify_voicemail=0x0108007e; + public static final int stat_notify_wifi_in_range=0x010805de; + public static final int stat_sys_adb=0x010805df; + public static final int stat_sys_battery=0x010805e0; + public static final int stat_sys_battery_charge=0x010805ee; + public static final int stat_sys_battery_unknown=0x010805fc; + public static final int stat_sys_certificate_info=0x010805fd; + public static final int stat_sys_data_bluetooth=0x01080080; + public static final int stat_sys_data_usb=0x010805fe; + public static final int stat_sys_download=0x01080081; + public static final int stat_sys_download_done=0x01080082; + public static final int stat_sys_gps_on=0x01080608; + public static final int stat_sys_headset=0x01080083; + /** @deprecated Replaced by a private asset in the phone app. + */ + @Deprecated + public static final int stat_sys_phone_call=0x01080084; + /** @deprecated Replaced by a private asset in the phone app. + */ + @Deprecated + public static final int stat_sys_phone_call_forward=0x01080085; + /** @deprecated Replaced by a private asset in the phone app. + */ + @Deprecated + public static final int stat_sys_phone_call_on_hold=0x01080086; + public static final int stat_sys_speakerphone=0x01080087; + public static final int stat_sys_tether_bluetooth=0x0108061d; + public static final int stat_sys_tether_general=0x0108061e; + public static final int stat_sys_tether_usb=0x0108061f; + public static final int stat_sys_tether_wifi=0x01080620; + public static final int stat_sys_throttled=0x01080621; + public static final int stat_sys_upload=0x01080088; + public static final int stat_sys_upload_done=0x01080089; + /** @deprecated Replaced by a private asset in the phone app. + */ + @Deprecated + public static final int stat_sys_vp_phone_call=0x010800a7; + /** @deprecated Replaced by a private asset in the phone app. + */ + @Deprecated + public static final int stat_sys_vp_phone_call_on_hold=0x010800a8; + public static final int stat_sys_warning=0x0108008a; + public static final int status_bar_background=0x01080628; + public static final int status_bar_item_app_background=0x0108008b; + public static final int status_bar_item_background=0x0108008c; + public static final int sym_action_call=0x0108008d; + public static final int sym_action_chat=0x0108008e; + public static final int sym_action_email=0x0108008f; + public static final int sym_app_on_sd_unavailable_icon=0x01080646; + public static final int sym_call_incoming=0x01080090; + public static final int sym_call_missed=0x01080091; + public static final int sym_call_outgoing=0x01080092; + public static final int sym_contact_card=0x01080094; + public static final int sym_def_app_icon=0x01080093; + public static final int sym_keyboard_return_holo=0x0108065e; + public static final int sym_keyboard_shift=0x0108065f; + public static final int sym_keyboard_shift_locked=0x01080660; + public static final int tab_bottom_left=0x01080663; + public static final int tab_bottom_left_v4=0x01080664; + public static final int tab_bottom_right=0x01080665; + public static final int tab_bottom_right_v4=0x01080666; + public static final int tab_indicator_v4=0x0108066f; + public static final int text_edit_paste_window=0x01080685; + public static final int text_edit_side_paste_window=0x01080686; + public static final int text_select_handle_left=0x01080688; + public static final int text_select_handle_middle=0x0108068b; + public static final int text_select_handle_right=0x0108068e; + public static final int title_bar=0x01080095; + public static final int title_bar_medium=0x010806c9; + /** Drawable to use as a background for a taller version of the titlebar + */ + public static final int title_bar_tall=0x010800a6; + public static final int toast_frame=0x01080096; + public static final int unknown_image=0x010806cd; + public static final int unlock_default=0x010806ce; + public static final int unlock_halo=0x010806cf; + public static final int unlock_ring=0x010806d0; + public static final int unlock_wave=0x010806d1; + public static final int usb_android=0x010806d2; + public static final int usb_android_connected=0x010806d3; + public static final int vpn_connected=0x010806d9; + public static final int vpn_disconnected=0x010806da; + public static final int zoom_plate=0x01080097; + } + public static final class fraction { + /** Duration for the dim animation behind a dialog. This may be either + a percentage, which is relative to the duration of the enter/open + animation of the window being shown that is dimming behind, or it may + be an integer for a constant duration. + */ + public static final int config_dimBehindFadeDuration=0x01130000; + /** User activity timeout: Maximum screen dim duration as a percentage of screen off timeout. + + This resource is similar to config_maximumScreenDimDuration but the maximum + screen dim duration is defined as a ratio of the overall screen off timeout + instead of as an absolute value in milliseconds. This is useful for reducing + the dim duration when the screen off timeout is very short. + + When computing the screen dim duration, the power manager uses the lesser + of the effective durations expressed by config_maximumScreenDimDuration and + config_maximumScreenDimRatio. + + This value must be between 0% and 100%. If the value is zero, the screen will not + dim before the device goes to sleep. + + */ + public static final int config_maximumScreenDimRatio=0x01130002; + /** If we allow automatic adjustment of screen brightness while dozing, how many times we want + to reduce it to preserve the battery. Value of 100% means no scaling. + */ + public static final int config_screenAutoBrightnessDozeScaleFactor=0x01130001; + } + public static final class id { + /** Accessibility action identifier for {@link android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction#ACTION_CONTEXT_CLICK}. + */ + public static final int accessibilityActionContextClick=0x0102003c; + /** Accessibility action identifier for {@link android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction#ACTION_SCROLL_DOWN}. + */ + public static final int accessibilityActionScrollDown=0x0102003a; + /** Accessibility action identifier for {@link android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction#ACTION_SCROLL_LEFT}. + */ + public static final int accessibilityActionScrollLeft=0x01020039; + /** Accessibility action identifier for {@link android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction#ACTION_SCROLL_RIGHT}. + */ + public static final int accessibilityActionScrollRight=0x0102003b; + /** Accessibility action identifier for {@link android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction#ACTION_SCROLL_TO_POSITION}. + */ + public static final int accessibilityActionScrollToPosition=0x01020037; + /** Accessibility action identifier for {@link android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction#ACTION_SCROLL_UP}. + */ + public static final int accessibilityActionScrollUp=0x01020038; + /** Accessibility action identifier for {@link android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction#ACTION_SHOW_ON_SCREEN}. + */ + public static final int accessibilityActionShowOnScreen=0x01020036; + public static final int account_name=0x01020335; + public static final int account_row_icon=0x01020314; + public static final int account_row_text=0x01020315; + public static final int account_type=0x01020334; + public static final int action0=0x01020368; + public static final int action1=0x01020369; + public static final int action2=0x0102036a; + public static final int action_bar=0x010203b2; + public static final int action_bar_container=0x010203b1; + public static final int action_bar_spinner=0x0102004e; + public static final int action_bar_subtitle=0x010202e9; + public static final int action_bar_title=0x010202e8; + public static final int action_context_bar=0x010203b3; + public static final int action_divider=0x01020370; + public static final int action_menu_presenter=0x0102004b; + public static final int action_mode_bar_stub=0x010203ab; + public static final int action_mode_close_button=0x010202ea; + public static final int actions=0x01020367; + public static final int activity_chooser_view_content=0x010202eb; + /** Menu ID to perform a "add to dictionary" operation. + */ + public static final int addToDictionary=0x0102002a; + public static final int alertTitle=0x010202f3; + public static final int allow_button=0x0102033a; + public static final int alwaysUse=0x01020301; + public static final int amPm=0x010203f5; + public static final int am_label=0x010203f0; + public static final int ampm_layout=0x010203ef; + public static final int animator=0x01020324; + public static final int ask_checkbox=0x01020304; + public static final int authtoken_type=0x01020336; + public static final int back_button=0x01020395; + public static final int background=0x01020000; + public static final int banner=0x01020404; + public static final int big_picture=0x01020372; + public static final int big_text=0x0102036e; + public static final int body=0x01020399; + public static final int breadcrumb_section=0x0102030f; + public static final int button0=0x0102039b; + public static final int button1=0x01020019; + public static final int button2=0x0102001a; + public static final int button3=0x0102001b; + public static final int button4=0x0102039c; + public static final int button5=0x0102039d; + public static final int button6=0x0102039e; + public static final int button7=0x0102039f; + public static final int buttonPanel=0x010202f5; + public static final int button_always=0x010203a3; + public static final int button_bar=0x01020394; + public static final int button_once=0x010203a2; + public static final int by_common=0x010203d7; + public static final int by_org=0x010203d9; + public static final int by_org_unit=0x010203db; + public static final int calendar_view=0x01020322; + public static final int cancel=0x01020313; + /** The part of the UI shown by an + {@link android.inputmethodservice.InputMethodService} that contains the + views for displaying candidates for what the user has entered. + */ + public static final int candidatesArea=0x0102001d; + public static final int characterPicker=0x01020312; + public static final int checkbox=0x01020001; + public static final int chronometer=0x0102037d; + public static final int clearDefaultHint=0x01020302; + /** View ID of a {@link android.view.View} to close a popup keyboard + */ + public static final int closeButton=0x01020027; + public static final int compat_checkbox=0x01020303; + public static final int content=0x01020002; + public static final int contentPanel=0x010202f8; + /** Context menu ID for the "Copy" menu item to copy the currently + selected (or all) text in a text view to the clipboard. + */ + public static final int copy=0x01020021; + /** Context menu ID for the "Copy URL" menu item to copy the currently + selected URL from the text view to the clipboard. + */ + public static final int copyUrl=0x01020023; + public static final int current_scene=0x0102004f; + public static final int custom=0x0102002b; + public static final int customPanel=0x010202fa; + /** Context menu ID for the "Cut" menu item to copy and delete the currently + selected (or all) text in a text view to the clipboard. + */ + public static final int cut=0x01020020; + public static final int date=0x0102006e; + public static final int datePicker=0x0102031a; + public static final int date_picker_day_picker=0x01020325; + public static final int date_picker_header=0x0102031b; + public static final int date_picker_header_date=0x0102031d; + public static final int date_picker_header_year=0x0102031c; + public static final int date_picker_year_picker=0x01020326; + public static final int day=0x01020320; + public static final int day_names=0x01020311; + public static final int day_picker_view_pager=0x01020327; + public static final int decor_content_parent=0x010203b0; + public static final int decrement=0x01020385; + public static final int default_activity_button=0x010202ee; + public static final int deny_button=0x01020339; + public static final int description=0x01020306; + public static final int divider=0x010203f6; + public static final int edit=0x01020003; + public static final int edit_query=0x010203b8; + public static final int edittext_container=0x0102038e; + public static final int eight=0x01020400; + public static final int empty=0x01020004; + public static final int enter_pin_section=0x0102040a; + public static final int expand_activities_button=0x010202ec; + public static final int expires_on=0x010203e0; + /** The part of the UI shown by an + {@link android.inputmethodservice.InputMethodService} that contains the + views for interacting with the user in extraction mode. + */ + public static final int extractArea=0x0102001c; + public static final int ffwd=0x0102035c; + public static final int fillInIntent=0x01020045; + public static final int find=0x0102041b; + public static final int find_next=0x0102041e; + public static final int find_prev=0x0102041d; + public static final int five=0x010203fd; + public static final int floating_toolbar_menu_item_image_button=0x01020054; + public static final int four=0x010203fc; + public static final int fullscreenArea=0x0102034a; + public static final int hard_keyboard_section=0x0102034d; + public static final int hard_keyboard_switch=0x0102034e; + public static final int headers=0x01020390; + public static final int hint=0x01020005; + public static final int home=0x0102002c; + public static final int hour=0x010203f3; + public static final int hours=0x010203ec; + public static final int icon=0x01020006; + public static final int icon1=0x01020007; + public static final int icon2=0x01020008; + public static final int icon_frame=0x0102038d; + public static final int icon_menu_presenter=0x01020049; + public static final int image=0x010202ed; + public static final int inbox_end_pad=0x0102037c; + public static final int inbox_more=0x0102037b; + public static final int inbox_text0=0x01020374; + public static final int inbox_text1=0x01020375; + public static final int inbox_text2=0x01020376; + public static final int inbox_text3=0x01020377; + public static final int inbox_text4=0x01020378; + public static final int inbox_text5=0x01020379; + public static final int inbox_text6=0x0102037a; + public static final int increment=0x01020383; + public static final int info=0x01020381; + public static final int input=0x01020009; + /** The part of the UI shown by an + {@link android.inputmethodservice.InputMethodService} that contains the + views for entering text using the screen. + */ + public static final int inputArea=0x0102001e; + public static final int inputExtractAccessories=0x0102034b; + public static final int inputExtractAction=0x0102034c; + /** View ID of the text editor inside of an extracted text layout. + */ + public static final int inputExtractEditText=0x01020025; + public static final int internalEmpty=0x01020358; + public static final int issued_on=0x010203de; + public static final int keyboard=0x010202b4; + /** View ID of the {@link android.inputmethodservice.KeyboardView} within + an input method's input area. + */ + public static final int keyboardView=0x01020026; + public static final int leftSpacer=0x010202f6; + public static final int left_icon=0x0102003e; + public static final int line1=0x0102037e; + public static final int line3=0x01020380; + public static final int list=0x0102000a; + public static final int listContainer=0x01020357; + public static final int list_footer=0x01020391; + public static final int list_item=0x010202ef; + public static final int list_menu_presenter=0x0102004a; + public static final int locale=0x010201cd; + public static final int lock_screen=0x01020042; + public static final int mask=0x0102002e; + public static final int matches=0x01020409; + public static final int media_actions=0x01020371; + public static final int media_route_control_frame=0x01020363; + public static final int media_route_disconnect_button=0x01020364; + public static final int media_route_extended_settings_button=0x01020360; + public static final int media_route_list=0x0102035f; + public static final int media_route_volume_layout=0x01020361; + public static final int media_route_volume_slider=0x01020362; + public static final int mediacontroller_progress=0x0102035e; + public static final int message=0x0102000b; + public static final int minute=0x010203f4; + public static final int minutes=0x010203ee; + public static final int mode_normal=0x01020413; + public static final int month=0x0102031f; + public static final int month_name=0x01020310; + public static final int month_view=0x01020323; + public static final int mount_button=0x01020405; + public static final int name=0x0102040c; + public static final int navigationBarBackground=0x01020030; + public static final int new_app_action=0x01020341; + public static final int new_app_description=0x01020342; + public static final int new_app_icon=0x01020340; + public static final int next=0x01020329; + public static final int next_button=0x01020397; + public static final int nine=0x01020401; + public static final int no_applications_message=0x0102039a; + public static final int no_permissions=0x0102030d; + public static final int notification_main_column=0x0102036d; + public static final int numberpicker_input=0x01020384; + public static final int ok=0x01020349; + public static final int old_app_action=0x0102033d; + public static final int old_app_description=0x0102033e; + public static final int old_app_icon=0x0102033c; + public static final int one=0x010203f9; + public static final int option1=0x0102032e; + public static final int option2=0x0102032f; + public static final int option3=0x01020330; + public static final int original_app_icon=0x01020354; + public static final int original_message=0x01020355; + public static final int overflow_divider=0x01020373; + public static final int overlay_display_window_texture=0x01020386; + public static final int overlay_display_window_title=0x01020387; + public static final int package_label=0x01020389; + public static final int packages_list=0x01020332; + public static final int parentMatrix=0x01020053; + public static final int parentPanel=0x010202f0; + /** Context menu ID for the "Paste" menu item to copy the current contents + of the clipboard into the text view. + */ + public static final int paste=0x01020022; + public static final int pasteAsPlainText=0x01020031; + public static final int pause=0x0102035b; + public static final int perm_icon=0x01020307; + public static final int perm_name=0x01020308; + public static final int permission_group=0x0102030b; + public static final int permission_list=0x0102030c; + public static final int perms_list=0x0102030e; + public static final int pickers=0x0102031e; + public static final int pin_cancel_button=0x010203a6; + public static final int pin_confirm_text=0x010203aa; + public static final int pin_error_message=0x010203a5; + public static final int pin_new_text=0x010203a9; + public static final int pin_ok_button=0x010203a7; + public static final int pin_text=0x010203a4; + public static final int placeholder=0x010203cb; + public static final int pm_label=0x010203f1; + public static final int prefs=0x01020393; + public static final int prefs_frame=0x01020392; + public static final int prev=0x01020328; + public static final int primary=0x0102000c; + public static final int profile_badge_large_template=0x0102036f; + public static final int profile_badge_line2=0x0102037f; + public static final int profile_badge_line3=0x01020382; + public static final int profile_button=0x01020317; + public static final int progress=0x0102000d; + public static final int progressContainer=0x01020356; + public static final int progress_circular=0x010203ae; + public static final int progress_horizontal=0x010203af; + public static final int progress_number=0x01020300; + public static final int progress_percent=0x010202ff; + public static final int radial_picker=0x010203f7; + public static final int radio=0x0102034f; + public static final int reask_hint=0x01020305; + public static final int redo=0x01020033; + public static final int replaceText=0x01020034; + public static final int replace_app_icon=0x01020352; + public static final int replace_message=0x01020353; + public static final int resolver_list=0x01020318; + public static final int rew=0x0102035a; + public static final int rightSpacer=0x010202f7; + public static final int right_icon=0x01020040; + public static final int rowTypeId=0x01020046; + public static final int scene_layoutid_cache=0x01020050; + public static final int scrollView=0x010202f9; + public static final int search_app_icon=0x010203b6; + public static final int search_badge=0x010203b9; + public static final int search_bar=0x010203b5; + public static final int search_button=0x010203ba; + public static final int search_close_btn=0x010203bf; + public static final int search_edit_frame=0x010203bb; + public static final int search_go_btn=0x010203c1; + public static final int search_mag_icon=0x010203bc; + public static final int search_plate=0x010203bd; + public static final int search_src_text=0x010203be; + public static final int search_view=0x010203b7; + public static final int search_voice_btn=0x010203c2; + public static final int secondaryProgress=0x0102000f; + public static final int seekbar=0x0102038f; + /** Context menu ID for the "Select All" menu item to select all text + in a text view. + */ + public static final int selectAll=0x0102001f; + /** Context menu ID for the "Select text..." menu item to switch to text + selection context mode in text views. + */ + public static final int selectTextMode=0x0102002d; + public static final int select_all=0x01020419; + public static final int selectedIcon=0x0102000e; + public static final int separator=0x010203ed; + public static final int serial_number=0x010203d5; + public static final int seven=0x010203ff; + public static final int sha1_fingerprint=0x010203e5; + public static final int sha256_fingerprint=0x010203e3; + public static final int share=0x0102041a; + public static final int shareText=0x01020035; + public static final int shortcut=0x01020359; + public static final int six=0x010203fe; + public static final int skip_button=0x01020396; + public static final int sms_short_code_confirm_message=0x010203c4; + public static final int sms_short_code_detail_layout=0x010203c5; + public static final int sms_short_code_detail_message=0x010203c7; + public static final int sms_short_code_remember_choice_checkbox=0x010203c8; + public static final int sms_short_code_remember_undo_instruction=0x010203ca; + public static final int spacer=0x010202fb; + public static final int split_action_bar=0x010203b4; + /** Menu ID to perform a "start selecting text" operation. + */ + public static final int startSelectingText=0x01020028; + public static final int status=0x0102032d; + public static final int statusBarBackground=0x0102002f; + public static final int status_bar_latest_event_content=0x0102036c; + /** Menu ID to perform a "stop selecting text" operation. + */ + public static final int stopSelectingText=0x01020029; + public static final int submit_area=0x010203c0; + public static final int summary=0x01020010; + /** Context menu ID for the "Input Method" menu item to being up the + input method picker dialog, allowing the user to switch to another + input method. + */ + public static final int switchInputMethod=0x01020024; + public static final int switchWidget=0x01020398; + public static final int switch_new=0x0102033f; + public static final int switch_old=0x0102033b; + public static final int tabcontent=0x01020011; + public static final int tabhost=0x01020012; + public static final int tabs=0x01020013; + public static final int target_badge=0x010203a1; + public static final int text=0x01020075; + public static final int text1=0x01020014; + public static final int text2=0x01020015; + public static final int textSpacerNoButtons=0x010202fe; + public static final int three=0x010203fb; + public static final int time=0x0102008c; + public static final int timePicker=0x010203ea; + public static final int timePickerLayout=0x010203f2; + public static final int time_current=0x0102035d; + public static final int time_header=0x010203eb; + public static final int title=0x01020016; + public static final int titleDivider=0x010202f4; + public static final int titleDividerTop=0x010202fc; + public static final int title_container=0x01020041; + public static final int title_icon=0x01020316; + public static final int title_template=0x010202f2; + public static final int to_common=0x010203cf; + public static final int to_org=0x010203d1; + public static final int to_org_unit=0x010203d3; + public static final int toggle=0x01020017; + public static final int topPanel=0x010202f1; + public static final int transitionPosition=0x01020051; + public static final int transitionTransform=0x01020052; + public static final int two=0x010203fa; + public static final int undo=0x01020032; + public static final int unmount_button=0x01020406; + public static final int up=0x01020047; + public static final int value=0x01020350; + public static final int websearch=0x0102041c; + public static final int widget_frame=0x01020018; + public static final int wifi_p2p_wps_pin=0x0102040b; + public static final int year=0x01020321; + public static final int zero=0x01020402; + public static final int zoomControls=0x0102040f; + public static final int zoomIn=0x01020411; + public static final int zoomMagnify=0x01020412; + public static final int zoomOut=0x01020410; + } + public static final class integer { + /** Flag indicating whether strict threshold is used, or lenient threshold is used, + when evaluating RSRP for LTE antenna bar display + 0. Strict threshold + 1. Lenient threshold + + */ + public static final int config_LTE_RSRP_threshold_type=0x010e008f; + /** Max number of downloads allowed to proceed concurrently + */ + public static final int config_MaxConcurrentDownloadsAllowed=0x010e0075; + /** Stability requirements in milliseconds for accepting a new brightness level. This is used + for debouncing the light sensor. Different constants are used to debounce the light sensor + when adapting to brighter or darker environments. This parameter controls how quickly + brightness changes occur in response to an observed change in light level that exceeds the + hysteresis threshold. + */ + public static final int config_autoBrightnessBrighteningLightDebounce=0x010e005f; + public static final int config_autoBrightnessDarkeningLightDebounce=0x010e0060; + /** Light sensor event rate in milliseconds for automatic brightness control. + */ + public static final int config_autoBrightnessLightSensorRate=0x010e0061; + /** Idle current for bluetooth controller. 0 by default + */ + public static final int config_bluetooth_idle_cur_ma=0x010e0068; + /** Max number of advertisers supported by bluetooth controller. 0 if the + device does not support multiple advertisement + */ + public static final int config_bluetooth_max_advertisers=0x010e0067; + /** Max number of scan filters supported by blutooth controller. 0 if the + device does not support hardware scan filters + */ + public static final int config_bluetooth_max_scan_filters=0x010e0066; + /** Operating volatage for bluetooth controller. 0 by default + */ + public static final int config_bluetooth_operating_voltage_mv=0x010e006b; + /** Rx current for bluetooth controller. 0 by default + */ + public static final int config_bluetooth_rx_cur_ma=0x010e0069; + /** Tx current for bluetooth controller. 0 by default + */ + public static final int config_bluetooth_tx_cur_ma=0x010e006a; + /** Specifies the maximum burn-in offset horizontally. + */ + public static final int config_burnInProtectionMaxHorizontalOffset=0x010e0094; + /** Specifies the maximum burn-in offset displacement from the center. If -1, no maximum value + will be used. + */ + public static final int config_burnInProtectionMaxRadius=0x010e0092; + /** Specifies the maximum burn-in offset vertically. + */ + public static final int config_burnInProtectionMaxVerticalOffset=0x010e0096; + /** Specifies the minimum burn-in offset horizontally. + */ + public static final int config_burnInProtectionMinHorizontalOffset=0x010e0093; + /** Specifies the minimum burn-in offset vertically. + */ + public static final int config_burnInProtectionMinVerticalOffset=0x010e0095; + /** The OEM specified sensor type for the gesture to launch the camear app. + */ + public static final int config_cameraLaunchGestureSensorType=0x010e009a; + /** Control whether being in the car dock (and powered) always + keeps the screen on. By default it stays on when plugged in to + AC. 0 will not keep it on; or together 1 to stay on when plugged + in to AC and 2 to stay on when plugged in to USB. (So 3 for both.) + */ + public static final int config_carDockKeepsScreenOn=0x010e0044; + /** Car dock behavior + The number of degrees to rotate the display when the device is in a car dock. + A value of -1 means no change in orientation by default. + */ + public static final int config_carDockRotation=0x010e0043; + /** Sprint need a 70 ms delay for 3way call + */ + public static final int config_cdma_3waycall_flash_delay=0x010e008e; + /** Display low battery warning when battery level dips to this value. + Also, the battery stats are flushed to disk when we hit this level. + */ + public static final int config_criticalBatteryWarningLevel=0x010e004d; + /** When a database query is executed, the results retuned are paginated + in pages of size (in KB) indicated by this value + */ + public static final int config_cursorWindowSize=0x010e0077; + /** The default reduced-datarate notification mask + 2 means give warning + */ + public static final int config_datause_notification_type=0x010e006f; + /** The default data-use polling period. + */ + public static final int config_datause_polling_period_sec=0x010e006c; + /** The default data-use threshold in bytes. 0 disables + */ + public static final int config_datause_threshold_bytes=0x010e006d; + /** The default reduced-datarate value in kilobits per sec + */ + public static final int config_datause_throttle_kbitsps=0x010e006e; + /** Control the default night mode to use when there is no other mode override set. + One of the following values (see UiModeManager.java): + 0 - MODE_NIGHT_AUTO + 1 - MODE_NIGHT_NO + 2 - MODE_NIGHT_YES + + */ + public static final int config_defaultNightMode=0x010e0047; + /** Default LED off time for notification LED in milliseconds. + */ + public static final int config_defaultNotificationLedOff=0x010e0052; + /** Default LED on time for notification LED in milliseconds. + */ + public static final int config_defaultNotificationLedOn=0x010e0051; + /** Control the default UI mode type to use when there is no other type override + happening. One of the following values (See Configuration.java): + 1 UI_MODE_TYPE_NORMAL + 4 UI_MODE_TYPE_TELEVISION + 5 UI_MODE_TYPE_APPLIANCE + 6 UI_MODE_TYPE_WATCH + Any other values will have surprising consequences. + */ + public static final int config_defaultUiModeType=0x010e0046; + /** Control whether being in the desk dock (and powered) always + keeps the screen on. By default it stays on when plugged in to + AC. 0 will not keep it on; or together 1 to stay on when plugged + in to AC and 2 to stay on when plugged in to USB. (So 3 for both.) + */ + public static final int config_deskDockKeepsScreenOn=0x010e0042; + /** Desk dock behavior + The number of degrees to rotate the display when the device is in a desk dock. + A value of -1 means no change in orientation by default. + */ + public static final int config_deskDockRotation=0x010e0041; + /** Control the behavior when the user double presses the power button. + 0 - Nothing + 1 - Toggle theater mode setting + 2 - Brightness boost + + */ + public static final int config_doublePressOnPowerBehavior=0x010e004a; + /** Control the behavior when the user double-taps the home button. + 0 - Nothing + 1 - Recent apps view in SystemUI + This needs to match the constants in + policy/src/com/android/internal/policy/impl/PhoneWindowManager.java + + */ + public static final int config_doubleTapOnHomeBehavior=0x010e005a; + /** When the free space available in DownloadManager's data dir falls + below the percentage value specified by this param, DownloadManager + starts removing files to try to make percentage of available + free space above this threshold value. + */ + public static final int config_downloadDataDirLowSpaceThreshold=0x010e0076; + /** Max space (in MB) allocated to DownloadManager to store the downloaded + files if they are to be stored in DownloadManager's data dir, + which typically is /data/data/com.android.providers.downloads/files + */ + public static final int config_downloadDataDirSize=0x010e0074; + /** Number of milliseconds to hold a wake lock to ensure that drawing is fully + flushed to the display while dozing. This value needs to be large enough + to account for processing and rendering time plus a frame or two of latency + in the display pipeline plus some slack just to be sure. + */ + public static final int config_drawLockTimeoutMillis=0x010e008d; + /** If the battery level drops by this percentage and the user activity timeout + has expired, then assume the device is receiving insufficient current to charge + effectively and terminate the dream. Use -1 to disable this safety feature. + */ + public static final int config_dreamsBatteryLevelDrainCutoff=0x010e0080; + /** Minimum battery level to allow dreaming when not powered. + Use -1 to disable this safety feature. + */ + public static final int config_dreamsBatteryLevelMinimumWhenNotPowered=0x010e007f; + /** Minimum battery level to allow dreaming when powered. + Use -1 to disable this safety feature. + */ + public static final int config_dreamsBatteryLevelMinimumWhenPowered=0x010e007e; + /** Device configuration setting the /proc/sys/vm/extra_free_kbytes tunable in the kernel + (if it exists). A high value will increase the amount of memory that the kernel + tries to keep free, reducing allocation time and causing the lowmemorykiller to kill + earlier. A low value allows more memory to be used by processes but may cause more + allocations to block waiting on disk I/O or lowmemorykiller. Overrides the default + value chosen by ActivityManager based on screen size. 0 prevents keeping any extra + memory over what the kernel keeps by default. -1 keeps the default. + */ + public static final int config_extraFreeKbytesAbsolute=0x010e000a; + /** Device configuration adjusting the /proc/sys/vm/extra_free_kbytes tunable in the kernel + (if it exists). 0 uses the default value chosen by ActivityManager. A positive value + will increase the amount of memory that the kernel tries to keep free, reducing + allocation time and causing the lowmemorykiller to kill earlier. A negative value + allows more memory to be used by processes but may cause more allocations to block + waiting on disk I/O or lowmemorykiller. Directly added to the default value chosen by + ActivityManager based on screen size. + */ + public static final int config_extraFreeKbytesAdjust=0x010e000b; + /** For performance and storage reasons, limit the number of fingerprints per user + */ + public static final int config_fingerprintMaxTemplatesPerUser=0x010e0097; + /** Amount of time in ms the user needs to press the relevant key to bring up the global actions dialog + */ + public static final int config_globalActionsKeyTimeout=0x010e0083; + /** Threshold (in ms) under which a screen off / screen on will be considered a reset of the + immersive mode confirmation prompt. + */ + public static final int config_immersive_mode_confirmation_panic=0x010e0089; + /** Indicate whether the lid state impacts the accessibility of + the physical keyboard. 0 means it doesn't, 1 means it is accessible + when the lid is open, 2 means it is accessible when the lid is + closed. The default is 0. + */ + public static final int config_lidKeyboardAccessibility=0x010e003f; + /** Indicate whether the lid state impacts the accessibility of + the navigation buttons. 0 means it doesn't, 1 means it is accessible + when the lid is open, 2 means it is accessible when the lid is + closed. The default is 0. + */ + public static final int config_lidNavigationAccessibility=0x010e0040; + /** Lid switch behavior + The number of degrees to rotate the display when the keyboard is open. + A value of -1 means no change in orientation by default. + */ + public static final int config_lidOpenRotation=0x010e003e; + /** Amount of time it takes for the light sensor to warm up in milliseconds. + For this time after the screen turns on, the Power Manager + will not debounce light sensor readings + */ + public static final int config_lightSensorWarmupTime=0x010e0064; + /** The attenuation in dB applied to the lock/unlock sounds. + */ + public static final int config_lockSoundVolumeDb=0x010e0005; + /** The duration (in milliseconds) of a long animation. + */ + public static final int config_longAnimTime=0x010e0002; + /** Control the behavior when the user long presses the home button. + 0 - Nothing + 1 - Recent apps view in SystemUI + 2 - Launch assist intent + This needs to match the constants in + policy/src/com/android/internal/policy/impl/PhoneWindowManager.java + + */ + public static final int config_longPressOnHomeBehavior=0x010e0059; + /** Control the behavior when the user long presses the power button. + 0 - Nothing + 1 - Global actions menu + 2 - Power off (with confirmation) + 3 - Power off (without confirmation) + + */ + public static final int config_longPressOnPowerBehavior=0x010e0048; + /** Close low battery warning when battery level reaches the lowBatteryWarningLevel + plus this + */ + public static final int config_lowBatteryCloseWarningBump=0x010e0050; + /** Display low battery warning when battery level dips to this value + */ + public static final int config_lowBatteryWarningLevel=0x010e004f; + /** Device configuration setting the minfree tunable in the lowmemorykiller in the kernel. + A high value will cause the lowmemorykiller to fire earlier, keeping more memory + in the file cache and preventing I/O thrashing, but allowing fewer processes to + stay in memory. A low value will keep more processes in memory but may cause + thrashing if set too low. Overrides the default value chosen by ActivityManager + based on screen size and total memory for the largest lowmemorykiller bucket, and + scaled proportionally to the smaller buckets. -1 keeps the default. + */ + public static final int config_lowMemoryKillerMinFreeKbytesAbsolute=0x010e0008; + /** Device configuration adjusting the minfree tunable in the lowmemorykiller in the + kernel. A high value will cause the lowmemorykiller to fire earlier, keeping more + memory in the file cache and preventing I/O thrashing, but allowing fewer processes + to stay in memory. A low value will keep more processes in memory but may cause + thrashing if set too low. Directly added to the default value chosen by + ActivityManager based on screen size and total memory for the largest lowmemorykiller + bucket, and scaled proportionally to the smaller buckets. 0 keeps the default. + */ + public static final int config_lowMemoryKillerMinFreeKbytesAdjust=0x010e0009; + /** Maximum number of grid columns permitted in the ResolverActivity + used for picking activities to handle an intent. + */ + public static final int config_maxResolverActivityColumns=0x010e0084; + /** Max number of Bluetooth tethering connections allowed. If this is + updated config_tether_dhcp_range has to be updated appropriately. + */ + public static final int config_max_pan_devices=0x010e000e; + /** User activity timeout: Maximum screen dim duration in milliseconds. + + Sets an upper bound for how long the screen will dim before the device goes + to sleep when there is no user activity. The dim duration is subtracted from + the overall screen off timeout to determine the screen dim timeout. + When the screen dim timeout expires, the screen will dim, shortly thereafter + the device will go to sleep. + + If the screen off timeout is very short, the dim duration may be reduced + proportionally. See config_maximumScreenDimRatio. + + This value may be zero in which case the screen will not dim before the + device goes to sleep. + + */ + public static final int config_maximumScreenDimDuration=0x010e0082; + /** Set initial MaxRetry value for operators + */ + public static final int config_mdc_initial_max_retry=0x010e0099; + /** The duration (in milliseconds) of a medium-length animation. + */ + public static final int config_mediumAnimTime=0x010e0001; + /** User activity timeout: Minimum screen off timeout in milliseconds. + + Sets a lower bound for the {@link Settings.System#SCREEN_OFF_TIMEOUT} setting + which determines how soon the device will go to sleep when there is no + user activity. + + This value must be greater than zero, otherwise the device will immediately + fall asleep again as soon as it is awoken. + + */ + public static final int config_minimumScreenOffTimeout=0x010e0081; + /** Number of hours between each background provisioning call + */ + public static final int config_mobile_hotspot_provision_check_period=0x010e000f; + /** Configure mobile network MTU. The standard default is set here but each carrier + may have a specific value set in an overlay config.xml file. + */ + public static final int config_mobile_mtu=0x010e0087; + /** Maximum number of supported users + */ + public static final int config_multiuserMaximumUsers=0x010e0085; + /** Default network policy warning threshold, in megabytes. + */ + public static final int config_networkPolicyDefaultWarning=0x010e007d; + /** The maximum duration (in milliseconds) we expect a network transition to take + */ + public static final int config_networkTransitionTimeout=0x010e000d; + /** Number of notifications to keep in the notification service historical archive + */ + public static final int config_notificationServiceArchiveSize=0x010e0058; + /** Default value for led color when battery is fully charged + */ + public static final int config_notificationsBatteryFullARGB=0x010e0055; + /** Default value for LED off time when the battery is low on charge in miliseconds + */ + public static final int config_notificationsBatteryLedOff=0x010e0057; + /** Default value for LED on time when the battery is low on charge in miliseconds + */ + public static final int config_notificationsBatteryLedOn=0x010e0056; + /** Default value for led color when battery is low on charge + */ + public static final int config_notificationsBatteryLowARGB=0x010e0053; + /** Default value for led color when battery is medium charged + */ + public static final int config_notificationsBatteryMediumARGB=0x010e0054; + /** Normal polling frequency in milliseconds + */ + public static final int config_ntpPollingInterval=0x010e0078; + /** Try-again polling interval in milliseconds, in case the network request failed + */ + public static final int config_ntpPollingIntervalShorter=0x010e0079; + /** Number of times to try again with the shorter interval, before backing + off until the normal polling interval. A value < 0 indicates infinite. + */ + public static final int config_ntpRetry=0x010e007a; + /** If the time difference is greater than this threshold in milliseconds, + then update the time. + */ + public static final int config_ntpThreshold=0x010e007b; + /** Timeout to wait for NTP server response. + */ + public static final int config_ntpTimeout=0x010e007c; + /** Override the default detection behavior for the framework method + android.view.ViewConfiguration#hasPermanentMenuKey(). + Valid settings are: + 0 - No change. Use the default autodetection behavior. + 1 - The device DOES have a permanent menu key; ignore autodetection. + 2 - The device DOES NOT have a permanent menu key; ignore autodetection. + */ + public static final int config_overrideHasPermanentMenuKey=0x010e008b; + /** How long history of previous vibrations should be kept for the dumpsys. + */ + public static final int config_previousVibrationsDumpLimit=0x010e0098; + /** The duration (in milliseconds) that the radio will scan for a signal + when there's no network connection. If the scan doesn't timeout, use zero + */ + public static final int config_radioScanningTimeout=0x010e000c; + /** Safe headphone volume index. When music stream volume is below this index + the SPL on headphone output is compliant to EN 60950 requirements for portable music + players. + */ + public static final int config_safe_media_volume_index=0x010e0086; + /** Minimum allowable screen brightness to use in a very dark room. + This value sets the floor for the darkest possible auto-brightness + adjustment. It is expected to be somewhat less than the first entry in + config_autoBrightnessLcdBacklightValues so as to allow the user to have + some range of adjustment to dim the screen further than usual in very + dark rooms. The contents of the screen must still be clearly visible + in darkness (although they may not be visible in a bright room). + */ + public static final int config_screenBrightnessDark=0x010e0063; + /** Screen brightness used to dim the screen when the user activity + timeout expires. May be less than the minimum allowed brightness setting + that can be set by the user. + */ + public static final int config_screenBrightnessDim=0x010e0062; + /** Screen brightness used to dim the screen while dozing in a very low power state. + May be less than the minimum allowed brightness setting + that can be set by the user. + */ + public static final int config_screenBrightnessDoze=0x010e005e; + /** Default screen brightness setting. + Must be in the range specified by minimum and maximum. + */ + public static final int config_screenBrightnessSettingDefault=0x010e005d; + /** Maximum screen brightness allowed by the power manager. + The user is forbidden from setting the brightness above this level. + */ + public static final int config_screenBrightnessSettingMaximum=0x010e005c; + /** Minimum screen brightness setting allowed by the power manager. + The user is forbidden from setting the brightness below this level. + */ + public static final int config_screenBrightnessSettingMinimum=0x010e005b; + /** Time adjustment, in milliseconds, applied to the default double tap threshold + used for gesture detection by the screen magnifier. + */ + public static final int config_screen_magnification_multi_tap_adjustment=0x010e0091; + /** The duration (in milliseconds) of a short animation. + */ + public static final int config_shortAnimTime=0x010e0000; + /** Control the behavior when the user short presses the power button. + 0 - Nothing + 1 - Go to sleep (doze) + 2 - Really go to sleep (don't doze) + 3 - Really go to sleep and go home (don't doze) + + */ + public static final int config_shortPressOnPowerBehavior=0x010e0049; + /** Control the behavior when the user presses the sleep button. + 0 - Go to sleep (doze) + 1 - Go to sleep (doze) and go home + + */ + public static final int config_shortPressOnSleepBehavior=0x010e004c; + /** Shutdown if the battery temperature exceeds (this value * 0.1) Celsius. + */ + public static final int config_shutdownBatteryTemperature=0x010e004e; + /** The attenuation in dB applied to the sound effects played + through AudioManager.playSoundEffect() when no volume is specified. + */ + public static final int config_soundEffectVolumeDb=0x010e0004; + /** Default Gravity setting for the system Toast view. Equivalent to: Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM + */ + public static final int config_toastDefaultGravity=0x010e0088; + /** Control the behavior when the user triple presses the power button. + 0 - Nothing + 1 - Toggle theater mode setting + 2 - Brightness boost + + */ + public static final int config_triplePressOnPowerBehavior=0x010e004b; + /** HDMI behavior + The number of degrees to rotate the display when the device has HDMI connected + but is not in a dock. A value of -1 means no change in orientation by default. + Use -1 except on older devices whose Hardware Composer HAL does not + provide full support for multiple displays. + */ + public static final int config_undockedHdmiRotation=0x010e0045; + /** For some operators, PDU has garbages. To fix it, need to use valid index + */ + public static final int config_valid_wappush_index=0x010e008a; + /** Specifies the amount of time to disable virtual keys after the screen is touched + in order to filter out accidental virtual key presses due to swiping gestures + or taps near the edge of the display. May be 0 to disable the feature. + It is recommended that this value be no more than 250 ms. + This feature should be disabled for most devices. + */ + public static final int config_virtualKeyQuietTimeMillis=0x010e0065; + /** If Voice Radio Technology is RIL_RADIO_TECHNOLOGY_LTE:14 or + RIL_RADIO_TECHNOLOGY_UNKNOWN:0 this is the value that should be used instead. + A configuration value of RIL_RADIO_TECHNOLOGY_UNKNOWN:0 means + there is no replacement value and that the default assumption + for phone type (GSM) should be used. + */ + public static final int config_volte_replacement_rat=0x010e0070; + /** Rx current for wifi radio. 0 by default + */ + public static final int config_wifi_active_rx_cur_ma=0x010e003b; + /** Integer indicating associated partial scan long interval in milliseconds + */ + public static final int config_wifi_associated_long_scan_interval=0x010e002e; + /** Integer indicating associated partial scan short interval in milliseconds + */ + public static final int config_wifi_associated_short_scan_interval=0x010e002d; + /** Integer indicating disconnect mode long scan interval in milliseconds + */ + public static final int config_wifi_disconnected_long_scan_interval=0x010e002c; + /** Integer indicating disconnect mode short scan interval in milliseconds + */ + public static final int config_wifi_disconnected_short_scan_interval=0x010e002b; + /** Wifi driver stop delay, in milliseconds. + Default value is 2 minutes. + */ + public static final int config_wifi_driver_stop_delay=0x010e0039; + public static final int config_wifi_framework_5GHz_preference_boost_factor=0x010e0011; + /** Integer specifying the basic autojoin parameters + */ + public static final int config_wifi_framework_5GHz_preference_boost_threshold=0x010e0010; + public static final int config_wifi_framework_5GHz_preference_penalty_factor=0x010e0015; + public static final int config_wifi_framework_5GHz_preference_penalty_threshold=0x010e0014; + /** Integer indicating associated full scan backoff, representing a fraction: xx/8 + */ + public static final int config_wifi_framework_associated_full_scan_backoff=0x010e002f; + /** Integer indicating associated full scan max interval in milliseconds + */ + public static final int config_wifi_framework_associated_full_scan_max_interval=0x010e0030; + /** Integer indicating associated full scan max total dwell time in milliseconds + */ + public static final int config_wifi_framework_associated_full_scan_max_total_dwell_time=0x010e0031; + public static final int config_wifi_framework_associated_full_scan_rx_packet_threshold=0x010e0021; + /** Integer packet threshold used to allow scan while associated + */ + public static final int config_wifi_framework_associated_full_scan_tx_packet_threshold=0x010e0020; + /** Integer indicating associated full scan max num active channels + */ + public static final int config_wifi_framework_associated_partial_scan_max_num_active_channels=0x010e0032; + /** Integer indicating associated full scan max num passive channels + */ + public static final int config_wifi_framework_associated_partial_scan_max_num_passive_channels=0x010e0033; + public static final int config_wifi_framework_associated_partial_scan_rx_packet_threshold=0x010e0023; + public static final int config_wifi_framework_associated_partial_scan_tx_packet_threshold=0x010e0022; + public static final int config_wifi_framework_current_association_hysteresis_high=0x010e0012; + public static final int config_wifi_framework_current_association_hysteresis_low=0x010e0013; + /** Integer indicating RSSI boost given to current network + */ + public static final int config_wifi_framework_current_network_boost=0x010e0037; + /** Integer indicating number of authentication errors leading to blacklisting of the network + */ + public static final int config_wifi_framework_max_auth_errors_to_blacklist=0x010e0035; + /** Integer indicating number of association errors leading to blacklisting of the network + */ + public static final int config_wifi_framework_max_connection_errors_to_blacklist=0x010e0034; + /** Integer indicating minimum blacklisting delay of a wofo configuration due to connectin or auth errors + */ + public static final int config_wifi_framework_network_black_list_min_time_milli=0x010e0036; + public static final int config_wifi_framework_network_switch_rx_packet_threshold=0x010e0025; + public static final int config_wifi_framework_network_switch_tx_packet_threshold=0x010e0024; + /** Integer indicating the framework scan interval in milliseconds. This is used in the scenario + where the chipset does not support background scanning (config_wifi_background_scan_suport + is false) to set up a periodic wake up scan so that the device can connect to a new access + point on the move. A value of 0 means no periodic scans will be used in the framework. + */ + public static final int config_wifi_framework_scan_interval=0x010e0029; + /** Integer indicating how to handle beacons with uninitialized RSSI value of 0 + */ + public static final int config_wifi_framework_scan_result_rssi_level_patchup_value=0x010e0038; + public static final int config_wifi_framework_wifi_score_bad_link_speed_24=0x010e001c; + public static final int config_wifi_framework_wifi_score_bad_link_speed_5=0x010e001d; + public static final int config_wifi_framework_wifi_score_bad_rssi_threshold_24GHz=0x010e0019; + /** Integer parameters of the wifi to cellular handover feature + wifi should not stick to bad networks + */ + public static final int config_wifi_framework_wifi_score_bad_rssi_threshold_5GHz=0x010e0016; + public static final int config_wifi_framework_wifi_score_good_link_speed_24=0x010e001e; + public static final int config_wifi_framework_wifi_score_good_link_speed_5=0x010e001f; + public static final int config_wifi_framework_wifi_score_good_rssi_threshold_24GHz=0x010e001b; + public static final int config_wifi_framework_wifi_score_good_rssi_threshold_5GHz=0x010e0018; + public static final int config_wifi_framework_wifi_score_low_rssi_threshold_24GHz=0x010e001a; + public static final int config_wifi_framework_wifi_score_low_rssi_threshold_5GHz=0x010e0017; + /** Idle Receive current for wifi radio. 0 by default + */ + public static final int config_wifi_idle_receive_cur_ma=0x010e003a; + /** Integer indicating amount of time failed networks areblacklisted for the purpose + of network switching in milliseconds + */ + public static final int config_wifi_network_switching_blacklist_time=0x010e0027; + /** Integer indicating the framework no networks periodic scan interval in milliseconds. + */ + public static final int config_wifi_no_network_periodic_scan_interval=0x010e002a; + /** Operating volatage for wifi radio. 0 by default + */ + public static final int config_wifi_operating_voltage_mv=0x010e003d; + /** Integer indicating wpa_supplicant scan interval when p2p is connected in milliseconds + */ + public static final int config_wifi_scan_interval_p2p_connected=0x010e0028; + /** Integer indicating wpa_supplicant scan interval in milliseconds + */ + public static final int config_wifi_supplicant_scan_interval=0x010e0026; + /** Tx current for wifi radio. 0 by default + */ + public static final int config_wifi_tx_cur_ma=0x010e003c; + /** Override this value if the device has a chin, i.e. area that is not actual part of the + screen but you would like to be treated as a real display. The value is the height of the + chin. + */ + public static final int config_windowOutsetBottom=0x010e008c; + /** Priority repeat caller threshold, in minutes + */ + public static final int config_zen_repeat_callers_threshold=0x010e0090; + /** Maximum number of database connections opened and managed by framework layer + to handle queries on each database when using Write-Ahead Logging. + */ + public static final int db_connection_pool_size=0x010e0071; + /** Maximum size of the persistent journal file in bytes. + If the journal file grows to be larger than this amount then SQLite will + truncate it after committing the transaction. + */ + public static final int db_journal_size_limit=0x010e0072; + /** The Write-Ahead Log auto-checkpoint interval in database pages (typically 1 to 4KB). + The log is checkpointed automatically whenever it exceeds this many pages. + When a database is reopened, its journal mode is set back to the default + journal mode, which may cause a checkpoint operation to occur. Checkpoints + can also happen at other times when transactions are committed. + The bigger the WAL file, the longer a checkpoint operation takes, so we try + to keep the WAL file relatively small to avoid long delays. + The size of the WAL file is also constrained by 'db_journal_size_limit'. + */ + public static final int db_wal_autocheckpoint=0x010e0073; + public static final int dock_enter_exit_duration=0x010e00b8; + /** The maximum number of action buttons that should be permitted within + an action bar/action mode. This will be used to determine how many + showAsAction="ifRoom" items can fit. "always" items can override this. + */ + public static final int max_action_buttons=0x010e009b; + /** Maximum numerical value that will be shown in a status bar + notification icon or in the notification itself. Will be replaced + with @string/status_bar_notification_info_overflow when shown in the + UI. + */ + public static final int status_bar_notification_info_maxnum=0x010e0003; + } + public static final class interpolator { + /** Acceleration curve matching a cubic ease out function. + */ + public static final int accelerate_cubic=0x010c0002; + /** Acceleration curve matching an ease in + ease out function + */ + public static final int accelerate_decelerate=0x010c0006; + /** Acceleration curve matching a quadtratic ease out function. + */ + public static final int accelerate_quad=0x010c0000; + /** Acceleration curve matching a quint ease out function. + */ + public static final int accelerate_quint=0x010c0004; + /** An interpolator where the change starts backward then flings forward. + */ + public static final int anticipate=0x010c0007; + /** An interpolator where the change starts backward then flings forward and + overshoots the target value and finally goes back to the final value. + */ + public static final int anticipate_overshoot=0x010c0009; + /** An interpolator where the change bounces at the end. + */ + public static final int bounce=0x010c000a; + /** Repeats the animation for one cycle. The rate of change follows a + sinusoidal pattern. + */ + public static final int cycle=0x010c000c; + /** Acceleration curve matching a cubic ease in function. + */ + public static final int decelerate_cubic=0x010c0003; + /** Acceleration curve matching a quadtratic ease in function. + */ + public static final int decelerate_quad=0x010c0001; + /** Acceleration curve matching a quint ease in function. + */ + public static final int decelerate_quint=0x010c0005; + /** An interpolator which accelerates fast and keeps accelerating until the end. + */ + public static final int fast_out_linear_in=0x010c000f; + /** An interpolator which accelerates fast but decelerates slowly. + */ + public static final int fast_out_slow_in=0x010c000d; + /** An interpolator where the rate of change is constant. + */ + public static final int linear=0x010c000b; + /** An interpolator which starts with a peak non-zero velocity and decelerates slowly. + */ + public static final int linear_out_slow_in=0x010c000e; + /** An interpolator where the change flings forward and overshoots the last + value then comes back. + */ + public static final int overshoot=0x010c0008; + } + public static final class layout { + public static final int action_bar_home=0x01090018; + public static final int action_bar_title_item=0x0109001a; + public static final int action_bar_up_container=0x0109001b; + public static final int action_menu_item_layout=0x0109001c; + public static final int action_menu_layout=0x0109001d; + public static final int action_mode_close_item=0x0109001f; + public static final int activity_chooser_view=0x01090021; + public static final int activity_chooser_view_list_item=0x01090022; + public static final int activity_list=0x01090023; + public static final int activity_list_item=0x01090000; + public static final int activity_list_item_2=0x01090024; + public static final int alert_dialog=0x01090026; + public static final int alert_dialog_progress=0x0109002d; + public static final int always_use_checkbox=0x01090031; + public static final int am_compat_mode_dialog=0x01090032; + public static final int app_not_authorized=0x01090033; + public static final int app_permission_item=0x01090034; + public static final int app_permission_item_money=0x01090035; + public static final int app_permission_item_old=0x01090036; + public static final int app_perms_summary=0x01090037; + public static final int auto_complete_list=0x01090038; + public static final int browser_link_context_header=0x0109000e; + public static final int calendar_view=0x0109003b; + public static final int character_picker=0x0109003c; + public static final int character_picker_button=0x0109003d; + public static final int choose_account=0x0109003e; + public static final int choose_account_row=0x0109003f; + public static final int choose_account_type=0x01090040; + public static final int choose_type_and_account=0x01090041; + public static final int chooser_grid=0x01090042; + public static final int chooser_row=0x01090043; + public static final int common_tab_settings=0x01090044; + public static final int date_picker_dialog=0x01090045; + public static final int date_picker_legacy=0x01090047; + public static final int date_picker_material=0x01090049; + public static final int date_picker_month_item_material=0x0109004a; + public static final int day_picker_content_material=0x0109004c; + public static final int expandable_list_content=0x01090001; + public static final int expanded_menu_layout=0x01090057; + public static final int floating_popup_close_overflow_button=0x01090058; + public static final int floating_popup_container=0x01090059; + public static final int floating_popup_menu_button=0x0109005a; + public static final int floating_popup_menu_image_button=0x0109005b; + public static final int floating_popup_open_overflow_button=0x0109005c; + public static final int floating_popup_overflow_image_list_item=0x0109005d; + public static final int floating_popup_overflow_list_item=0x0109005e; + public static final int fragment_bread_crumb_item=0x0109005f; + public static final int fragment_bread_crumbs=0x01090061; + public static final int global_actions_item=0x01090062; + public static final int global_actions_silent_mode=0x01090063; + public static final int grant_credentials_permission=0x01090064; + public static final int heavy_weight_switcher=0x01090065; + public static final int icon_menu_item_layout=0x01090066; + public static final int icon_menu_layout=0x01090067; + public static final int immersive_mode_cling=0x01090068; + public static final int input_method=0x01090069; + public static final int input_method_extract_view=0x0109006a; + public static final int input_method_switch_dialog_title=0x0109006b; + public static final int input_method_switch_item=0x0109006c; + public static final int js_prompt=0x0109006d; + public static final int launch_warning=0x01090071; + /** Standard content view for a {@link android.app.ListFragment}. + If you are implementing a subclass of ListFragment with your + own customized content, you can include this layout in that + content to still retain all of the standard functionality of + the base class. + */ + public static final int list_content=0x01090014; + public static final int list_content_simple=0x01090072; + public static final int list_menu_item_checkbox=0x01090074; + public static final int list_menu_item_icon=0x01090075; + public static final int list_menu_item_layout=0x01090076; + public static final int list_menu_item_radio=0x01090077; + public static final int locale_picker_item=0x01090078; + public static final int media_controller=0x01090079; + public static final int media_route_chooser_dialog=0x0109007a; + public static final int media_route_controller_dialog=0x0109007b; + public static final int media_route_list_item=0x0109007c; + public static final int notification_intruder_content=0x0109007f; + public static final int notification_material_action=0x01090080; + public static final int notification_material_action_list=0x01090081; + public static final int notification_material_action_tombstone=0x01090082; + public static final int notification_material_media_action=0x01090083; + public static final int notification_template_icon_group=0x01090084; + public static final int notification_template_material_base=0x01090085; + public static final int notification_template_material_big_base=0x01090086; + public static final int notification_template_material_big_media=0x01090087; + public static final int notification_template_material_big_media_narrow=0x01090088; + public static final int notification_template_material_big_picture=0x01090089; + public static final int notification_template_material_big_text=0x0109008a; + public static final int notification_template_material_inbox=0x0109008b; + public static final int notification_template_material_media=0x0109008c; + public static final int number_picker=0x01090093; + public static final int overlay_display_window=0x01090097; + public static final int permissions_package_list_item=0x01090099; + public static final int popup_menu_item_layout=0x0109009a; + public static final int preference=0x0109009c; + public static final int preference_category=0x01090002; + public static final int preference_header_item=0x010900a6; + public static final int preference_list_content=0x010900ac; + public static final int preference_list_content_single=0x010900ae; + public static final int preference_list_fragment=0x010900af; + public static final int preference_widget_seekbar=0x010900b3; + public static final int progress_dialog=0x010900b7; + public static final int recent_apps_dialog=0x010900ba; + public static final int remote_views_adapter_default_loading_view=0x010900bc; + public static final int resolve_grid_item=0x010900bd; + public static final int resolve_list_item=0x010900be; + public static final int resolver_different_item_header=0x010900bf; + public static final int resolver_list=0x010900c0; + public static final int resolver_list_with_default=0x010900c1; + public static final int restrictions_pin_challenge=0x010900c2; + public static final int restrictions_pin_setup=0x010900c3; + public static final int safe_mode=0x010900c4; + public static final int screen_action_bar=0x010900c6; + public static final int screen_custom_title=0x010900c7; + public static final int screen_progress=0x010900c8; + public static final int screen_simple=0x010900c9; + public static final int screen_simple_overlay_action_mode=0x010900ca; + public static final int screen_swipe_dismiss=0x010900cb; + public static final int screen_title=0x010900cc; + public static final int screen_title_icons=0x010900cd; + public static final int search_bar=0x010900cf; + public static final int search_dropdown_item_icons_2line=0x010900d0; + public static final int search_view=0x010900d1; + public static final int select_dialog=0x010900d2; + public static final int select_dialog_item=0x01090011; + public static final int select_dialog_multichoice=0x01090013; + public static final int select_dialog_multichoice_material=0x010900d8; + public static final int select_dialog_singlechoice=0x01090012; + public static final int select_dialog_singlechoice_holo=0x010900d9; + public static final int select_dialog_singlechoice_material=0x010900da; + public static final int simple_account_item=0x010900db; + public static final int simple_dropdown_hint=0x010900dc; + public static final int simple_dropdown_item_1line=0x0109000a; + public static final int simple_expandable_list_item_1=0x01090006; + public static final int simple_expandable_list_item_2=0x01090007; + public static final int simple_gallery_item=0x0109000b; + public static final int simple_list_item_1=0x01090003; + public static final int simple_list_item_2=0x01090004; + public static final int simple_list_item_2_single_choice=0x010900de; + /** A version of {@link #simple_list_item_1} that is able to change its + background state to indicate when it is activated (that is checked by + a ListView). + */ + public static final int simple_list_item_activated_1=0x01090016; + /** A version of {@link #simple_list_item_2} that is able to change its + background state to indicate when it is activated (that is checked by + a ListView). + */ + public static final int simple_list_item_activated_2=0x01090017; + public static final int simple_list_item_checked=0x01090005; + public static final int simple_list_item_multiple_choice=0x01090010; + public static final int simple_list_item_single_choice=0x0109000f; + /** A simple ListView item layout which can contain text and support (single or multiple) item selection. + */ + public static final int simple_selectable_list_item=0x01090015; + public static final int simple_spinner_dropdown_item=0x01090009; + public static final int simple_spinner_item=0x01090008; + public static final int sms_short_code_confirmation_dialog=0x010900df; + public static final int ssl_certificate=0x010900e0; + public static final int status_bar_latest_event_content=0x010900e1; + public static final int tab_content=0x010900e3; + public static final int tab_indicator_holo=0x010900e5; + public static final int test_list_item=0x0109000c; + public static final int text_drag_thumbnail=0x010900e7; + public static final int text_edit_action_popup_text=0x010900e8; + public static final int textview_hint=0x010900ef; + public static final int time_picker_dialog=0x010900f0; + public static final int time_picker_header_material=0x010900f1; + public static final int time_picker_legacy=0x010900f2; + public static final int time_picker_material=0x010900f4; + public static final int transient_notification=0x010900f5; + public static final int two_line_list_item=0x0109000d; + public static final int typing_filter=0x010900f7; + public static final int usb_storage_activity=0x010900f8; + public static final int user_switching_dialog=0x010900f9; + public static final int voice_interaction_session=0x010900fa; + public static final int web_text_view_dropdown=0x010900fc; + public static final int webview_find=0x010900fd; + public static final int webview_select_singlechoice=0x010900fe; + public static final int wifi_p2p_dialog=0x010900ff; + public static final int wifi_p2p_dialog_row=0x01090100; + public static final int year_label_text_view=0x01090101; + public static final int zoom_container=0x01090103; + public static final int zoom_controls=0x01090104; + public static final int zoom_magnify=0x01090105; + } + public static final class menu { + public static final int webview_copy=0x01150000; + public static final int webview_find=0x01150001; + } + public static final class mipmap { + /** Default icon for applications that don't specify an icon. + */ + public static final int sym_def_app_icon=0x010d0000; + } + public static final class plurals { + /** Phrase describing a time duration using hours [CHAR LIMIT=16] + */ + public static final int duration_hours=0x01140004; + /** Phrase describing a time duration using minutes [CHAR LIMIT=16] + */ + public static final int duration_minutes=0x01140003; + /** Phrase describing a time duration using seconds [CHAR LIMIT=16] + */ + public static final int duration_seconds=0x01140002; + /** This is used to express that something occurred within the last X days (e.g., Last 7 days). + */ + public static final int last_num_days=0x01140001; + /** Displayed on the Find dialog to display the index of the highlighted + match and total number of matches found in the current page. [CHAR LIMIT=NONE] + */ + public static final int matches_found=0x01140007; + /** Displayed when a SIM PIN/PUK is entered incorrectly. + */ + public static final int pinpuk_attempts=0x01140000; + /** PIN entry dialog countdown message for next chance to enter the PIN [CHAR LIMIT=none] + Phrase describing a time duration using seconds [CHAR LIMIT=none] + */ + public static final int restr_pin_countdown=0x01140008; + /** Label describing the number of selected items [CHAR LIMIT=48] + */ + public static final int selected_count=0x01140011; + /** A notification is shown when there are open wireless networks nearby. This is the notification's title. + */ + public static final int wifi_available=0x01140005; + /** A notification is shown when there are open wireless networks nearby. This is the notification's message. + */ + public static final int wifi_available_detailed=0x01140006; + /** Zen mode condition - line one: time duration in hours. [CHAR LIMIT=NONE] + */ + public static final int zen_mode_duration_hours=0x0114000f; + /** Zen mode condition - line one: time duration in hours (short version). [CHAR LIMIT=NONE] + */ + public static final int zen_mode_duration_hours_short=0x01140010; + /** Zen mode condition - summary: time duration in hours. [CHAR LIMIT=NONE] + */ + public static final int zen_mode_duration_hours_summary=0x0114000b; + /** Zen mode condition - summary: time duration in hours (short version). [CHAR LIMIT=NONE] + */ + public static final int zen_mode_duration_hours_summary_short=0x0114000c; + /** Zen mode condition - line one: time duration in minutes. [CHAR LIMIT=NONE] + */ + public static final int zen_mode_duration_minutes=0x0114000d; + /** Zen mode condition - line one: time duration in minutes (short version). [CHAR LIMIT=NONE] + */ + public static final int zen_mode_duration_minutes_short=0x0114000e; + /** Zen mode condition - summary: time duration in minutes. [CHAR LIMIT=NONE] + */ + public static final int zen_mode_duration_minutes_summary=0x01140009; + /** Zen mode condition - summary: time duration in minutes (short version). [CHAR LIMIT=NONE] + */ + public static final int zen_mode_duration_minutes_summary_short=0x0114000a; + } + public static final class raw { + public static final int accessibility_gestures=0x01100002; + public static final int color_fade_frag=0x01100003; + public static final int color_fade_vert=0x01100004; + public static final int fallbackring=0x01100005; + public static final int incognito_mode_start_page=0x01100006; + /** WebView error page for when the load fails. @hide + */ + @android.annotation.SystemApi + public static final int loaderror=0x01100000; + /** WebView error page for when domain lookup fails. @hide + */ + @android.annotation.SystemApi + public static final int nodomain=0x01100001; + } + public static final class string { + /** Displayed as the title for a success/failure report enabling/disabling call barring. + */ + public static final int BaMmi=0x01040096; + /** Displayed to confirm to the user that caller ID will not be restricted on the next call or in general. + */ + public static final int CLIRDefaultOffNextCallOff=0x010400a2; + /** Displayed to confirm to the user that caller ID will not be restricted on the next call but usually is. + */ + public static final int CLIRDefaultOffNextCallOn=0x010400a1; + /** Displayed to confirm to the user that caller ID will be not restricted on the next call even though it usually is. + */ + public static final int CLIRDefaultOnNextCallOff=0x010400a0; + /** Displayed to confirm to the user that caller ID will be restricted on the next call as usual. + */ + public static final int CLIRDefaultOnNextCallOn=0x0104009f; + /** Displayed to tell the user that they cannot change the caller ID setting. + */ + public static final int CLIRPermanent=0x010400a4; + /** Displayed as the title for a success/failure report enabling/disabling call forwarding. + */ + public static final int CfMmi=0x01040094; + /** Displayed as the title for a success/failure report enabling/disabling caller ID. + */ + public static final int ClipMmi=0x01040090; + /** Displayed as the title for a success/failure report enabling/disabling caller ID. + */ + public static final int ClirMmi=0x01040091; + /** Displayed as the title for a success/failure report enabling/disabling connected line ID. + */ + public static final int ColpMmi=0x01040092; + /** Displayed as the title for a success/failure report enabling/disabling connected line ID restriction. + */ + public static final int ColrMmi=0x01040093; + /** Displayed as the title for a success/failure report enabling/disabling call waiting. + */ + public static final int CwMmi=0x01040095; + /** Quoted name for 12am, uppercase first letter + */ + public static final int Midnight=0x01040338; + /** Quoted name for 12pm, uppercase first letter + */ + public static final int Noon=0x01040336; + /** Displayed as the title for a success/failure report changing the SIM PIN. + */ + public static final int PinMmi=0x01040098; + /** Displayed as the title for a success/failure report changing the SIM password. + */ + public static final int PwdMmi=0x01040097; + /** Notification title to tell the user that restricted state is changed by access control. + */ + public static final int RestrictedChangedTitle=0x010400a5; + /** Displayed to tell the user that all emergency and normal voice services are blocked by access control. + */ + public static final int RestrictedOnAllVoice=0x010400a9; + /** Displayed to tell the user that data service is blocked by access control. + */ + public static final int RestrictedOnData=0x010400a6; + /** Displayed to tell the user that emergency service is blocked by access control. + */ + public static final int RestrictedOnEmergency=0x010400a7; + /** Displayed to tell the user that normal service is blocked by access control. + */ + public static final int RestrictedOnNormal=0x010400a8; + /** STK setup Call + */ + public static final int SetupCallDefault=0x010404ab; + /** Button to close error alert when a video cannot be played + */ + public static final int VideoView_error_button=0x01040010; + /** Text for error alert when a video container is not valid for progressive download/playback. + */ + public static final int VideoView_error_text_invalid_progressive_playback=0x01040015; + /** Text for error alert when a video cannot be played. it can be used by any app. + */ + public static final int VideoView_error_text_unknown=0x01040011; + /** Title for error alert when a video cannot be played. it can be used by any app. + */ + public static final int VideoView_error_title=0x01040012; + public static final int accept=0x010403a5; + /** Label to show for a service that is running because it is an accessibility module. + */ + public static final int accessibility_binding_label=0x0104042e; + /** Text spoken when the user enabled accessibility. [CHAR LIMIT=none] + */ + public static final int accessibility_enabled=0x010404ea; + /** Content description for the action bar "home" affordance. [CHAR LIMIT=NONE] + */ + public static final int action_bar_home_description=0x0104047e; + /** Formatting string for describing the action bar's title/home/up affordance. + This is a single tappable "button" that includes the app icon, the Up indicator + (usually a "<" chevron) and the window title text. + %1$s is the title. %2$s is the description of what tapping/clicking the whole + thing is going to do. + */ + public static final int action_bar_home_description_format=0x01040481; + /** Just like action_bar_home_description_format, but this one will be used + if the window is also providing subtitle text. + %1$s is the title. %2$s is the subtitle. %3$s is the description of what + tapping/clicking the whole thing is going to do. + */ + public static final int action_bar_home_subtitle_description_format=0x01040482; + /** Content description for the action bar "up" affordance. [CHAR LIMIT=NONE] + */ + public static final int action_bar_up_description=0x0104047f; + /** Title for a button to expand the list of activities in ActivityChooserView [CHAR LIMIT=25] + */ + public static final int activity_chooser_view_see_all=0x010404a5; + /** Text for the toast that is shown when the user clicks on a launcher that + doesn't support the work profile. [CHAR LIMIT=100] + */ + public static final int activity_resolver_work_profiles_support=0x010404ae; + /** ActivityChooserView - accessibility support + Description of the shwoing of a popup window with activities to choose from. [CHAR LIMIT=NONE] + */ + public static final int activitychooserview_choose_application=0x01040476; + /** Error message if the share target app cannto be launched. [CHAR LIMIT=NONE] + */ + public static final int activitychooserview_choose_application_error=0x01040477; + /** Message of notification shown when ADB is actively connected to the phone. + */ + public static final int adb_active_notification_message=0x010403e2; + /** Title of notification shown when ADB is actively connected to the phone. + */ + public static final int adb_active_notification_title=0x010403e1; + /** Option to add the current misspelled word to the user dictionary. [CHAR LIMIT=25] + */ + public static final int addToDictionary=0x0104033e; + /** List item to add an account [CHAR LIMIT=20] + */ + public static final int add_account_button_label=0x0104045c; + /** Text of the alert that is displayed when an application has crashed. + */ + public static final int aerr_application=0x0104035b; + /** Text of the alert that is displayed when an application has crashed. + */ + public static final int aerr_process=0x0104035c; + /** Title of the alert when an application has crashed. + */ + public static final int aerr_title=0x0104035a; + /** Do Not Translate: Alternate eri.xml + */ + public static final int alternate_eri_file=0x01040433; + /** Option to always use the selected application resolution in the future. See the "Complete action using" dialog title + */ + public static final int alwaysUse=0x01040354; + /** [CHAR LIMIT=NONE] Message shown in upgrading dialog for each .apk pre boot broadcast + */ + public static final int android_preparing_apk=0x01040372; + /** [CHAR LIMIT=40] Title of dialog that is shown when system is starting. + */ + public static final int android_start_title=0x0104036f; + /** Label for the Android system components when they are shown to the user. + */ + public static final int android_system_label=0x0104011c; + /** [CHAR LIMIT=NONE] Message shown in upgrading dialog for each .apk that is optimized. + */ + public static final int android_upgrading_apk=0x01040371; + /** [CHAR LIMIT=NONE] Message to show in upgrading dialog when the bulk of the upgrade work is done. + */ + public static final int android_upgrading_complete=0x01040374; + /** [CHAR LIMIT=NONE] Message shown in upgrading dialog when doing an fstrim. + */ + public static final int android_upgrading_fstrim=0x01040370; + /** [CHAR LIMIT=NONE] Message to show in upgrading dialog when reached the point of starting apps. + */ + public static final int android_upgrading_starting_apps=0x01040373; + /** [CHAR LIMIT=40] Title of dialog that is shown when performing a system upgrade. + */ + public static final int android_upgrading_title=0x0104036e; + /** Text of the alert that is displayed when an application is not responding. + */ + public static final int anr_activity_application=0x0104035e; + /** Text of the alert that is displayed when an application is not responding. + */ + public static final int anr_activity_process=0x0104035f; + /** Text of the alert that is displayed when an application is not responding. + */ + public static final int anr_application_process=0x01040360; + /** Text of the alert that is displayed when an application is not responding. + */ + public static final int anr_process=0x01040361; + /** Title of the alert when an application is not responding. + */ + public static final int anr_title=0x0104035d; + /** [CHAR LIMIT=NONE] Stub notification text for an app running a service that has provided + a bad bad notification for itself. + */ + public static final int app_running_notification_text=0x01040346; + /** [CHAR LIMIT=NONE] Stub notification title for an app running a service that has provided + a bad bad notification for itself. + */ + public static final int app_running_notification_title=0x01040345; + /** Do not translate. Regex used by AutoFill. + fr-FR + it-IT + ja-JP + zh-CN + */ + public static final int autofill_address_line_1_label_re=0x010402d3; + /** Do not translate. Regex used by AutoFill. + de-DE + en-GB + es + fr-FR + it-IT + ja-JP + pt-BR, pt-PT + ru + zh-CN + */ + public static final int autofill_address_line_1_re=0x010402d2; + /** Do not translate. Regex used by AutoFill. + de-DE + es + fr-FR + it-IT + ja-JP + */ + public static final int autofill_address_line_2_re=0x010402d4; + /** Do not translate. Regex used by AutoFill. + es + fr-FR + it-IT + */ + public static final int autofill_address_line_3_re=0x010402d5; + /** String used to separate FirstName and LastName when writing out a local name + e.g. JohnSmith [CHAR-LIMIT=NONE] + */ + public static final int autofill_address_name_separator=0x010402cb; + /** Format string for displaying a name and address summary. $1 is the Full Name, $2 is autofill_address_summary_separator, $3 is the Address + e.g. (John Smith)(, )(123 Main Street) + */ + public static final int autofill_address_summary_format=0x010402ce; + /** Format string for displaying a name. $1 is First Name, $2 is autofill_address_name_separator, $3 is Last Name. + e.g. (John)( )(Smith) + */ + public static final int autofill_address_summary_name_format=0x010402cc; + /** String used to separate Name and Address Line 1 + e.g. John Smith123 Main Street [CHAR-LIMIT=NONE] + */ + public static final int autofill_address_summary_separator=0x010402cd; + /** Do not translate. Regex used by AutoFill. + */ + public static final int autofill_address_type_same_as_re=0x010402db; + /** Do not translate. Regex used by AutoFill. + */ + public static final int autofill_address_type_use_my_re=0x010402dc; + /** Label in a web form for "Area" [CHAR-LIMIT=NONE] + */ + public static final int autofill_area=0x01040302; + /** Do not translate. Regex used by AutoFill. + */ + public static final int autofill_area_code_notext_re=0x010402f5; + /** Do not translate. Regex used by AutoFill. + */ + public static final int autofill_area_code_re=0x010402e8; + /** Do not translate. Regex used by AutoFill. + */ + public static final int autofill_attention_ignored_re=0x010402cf; + /** Do not translate. Regex used by AutoFill. + */ + public static final int autofill_billing_designator_re=0x010402dd; + /** Do not translate. Regex used by AutoFill. + */ + public static final int autofill_card_cvc_re=0x010402ee; + /** Do not translate. Regex used by AutoFill. + */ + public static final int autofill_card_ignored_re=0x010402f2; + /** Do not translate. Regex used by AutoFill. + de-DE + es + fr-FR + ja-JP + ru + zh-CN + zh-TW + */ + public static final int autofill_card_number_re=0x010402ef; + /** Do not translate. Regex used by AutoFill. + de-DE + en-AU + es + fr-FR + it-IT + ja-JP + pt-BR, pt-PT + ru + zh-CN + zh-TW + */ + public static final int autofill_city_re=0x010402d9; + /** Do not translate. Regex used by AutoFill. + de-DE + es + fr-FR + it-IT + ja-JP + ru + zh-CN + */ + public static final int autofill_company_re=0x010402d1; + /** Do not translate. Regex used by AutoFill. + */ + public static final int autofill_country_code_re=0x010402f4; + /** Do not translate. Regex used by AutoFill. + ja-JP + zh-CN + */ + public static final int autofill_country_re=0x010402d6; + /** Label in a web form for "County" [CHAR-LIMIT=NONE] + */ + public static final int autofill_county=0x010402fc; + /** Label in a web form for "Department" [CHAR-LIMIT=NONE] + */ + public static final int autofill_department=0x010402ff; + /** Label in a web form for "District" [CHAR-LIMIT=NONE] + */ + public static final int autofill_district=0x010402fe; + /** Do not translate. Regex used by AutoFill. + ja-JP + ru + zh-CN + zh-TW + */ + public static final int autofill_email_re=0x010402df; + /** Label in a web form for "Emirate" [CHAR-LIMIT=NONE] + */ + public static final int autofill_emirate=0x01040303; + /** Do not translate. Regex used by AutoFill. + de-DE + es + it-IT + ja-JP + pt-BR, pt-PT + ru + zh-CN + */ + public static final int autofill_expiration_date_re=0x010402f1; + /** Do not translate. Regex used by AutoFill. + de-DE + es + fr-FR + it-IT + ja-JP + pt-BR, pt-PT + ru + zh-CN + */ + public static final int autofill_expiration_month_re=0x010402f0; + /** Do not translate. Regex used by AutoFill. + fr-FR + ja-JP + ru + zh-CN + zh-TW + */ + public static final int autofill_fax_re=0x010402f3; + /** Do not translate. Regex used by AutoFill. + de-DE + es + fr-FR + ja-JP + pt-BR, pt-PT + ru + */ + public static final int autofill_first_name_re=0x010402e3; + /** Label in a web form for "Island" [CHAR-LIMIT=NONE] + */ + public static final int autofill_island=0x010402fd; + /** Do not translate. Regex used by AutoFill. + de-DE + es + fr-FR + it-IT + ja-JP + pt-BR, pt-PT + ru + */ + public static final int autofill_last_name_re=0x010402e6; + /** Do not translate. Regex used by AutoFill. + */ + public static final int autofill_middle_initial_re=0x010402e4; + /** Do not translate. Regex used by AutoFill. + es + */ + public static final int autofill_middle_name_re=0x010402e5; + /** Do not translate. Regex used by AutoFill. + */ + public static final int autofill_name_on_card_contextual_re=0x010402ed; + /** Do not translate. Regex used by AutoFill. + de-DE + es + fr-FR + it-IT + ja-JP + ru + zh-CN + zh-TW + */ + public static final int autofill_name_on_card_re=0x010402ec; + /** Do not translate. Regex used by AutoFill. + es + fr-FR + ja-JP + pt-BR, pt-PT + zh-CN + */ + public static final int autofill_name_re=0x010402e1; + /** Do not translate. Regex used by AutoFill. + fr-FR + pt-BR, pt-PT + */ + public static final int autofill_name_specific_re=0x010402e2; + /** Label in a web form for "Parish" [CHAR-LIMIT=NONE] + */ + public static final int autofill_parish=0x01040301; + /** Do not translate. Regex used by AutoFill. + pt-BR, pt-PT + */ + public static final int autofill_phone_extension_re=0x010402eb; + /** Do not translate. Regex used by AutoFill. + fr-FR + pt-BR, pt-PT + */ + public static final int autofill_phone_prefix_re=0x010402e9; + /** Do not translate. Regex used by AutoFill. + */ + public static final int autofill_phone_prefix_separator_re=0x010402f6; + /** Do not translate. Regex used by AutoFill. + de-DE + es + fr-FR + ja-JP + pt-BR, pt-PT + ru + zh-CN + */ + public static final int autofill_phone_re=0x010402e7; + /** Do not translate. Regex used by AutoFill. + */ + public static final int autofill_phone_suffix_re=0x010402ea; + /** Do not translate. Regex used by AutoFill. + */ + public static final int autofill_phone_suffix_separator_re=0x010402f7; + /** Label in a web form for "Postal code" [CHAR-LIMIT=NONE] + */ + public static final int autofill_postal_code=0x010402f9; + /** Label in a web form for "Prefecture" [CHAR-LIMIT=NONE] + */ + public static final int autofill_prefecture=0x01040300; + /** Label in a web form for "Province" [CHAR-LIMIT=NONE] + */ + public static final int autofill_province=0x010402f8; + /** Do not translate. Regex used by AutoFill. + es + pt-BR, pt-PT + */ + public static final int autofill_region_ignored_re=0x010402d0; + /** Do not translate. Regex used by AutoFill. + */ + public static final int autofill_shipping_designator_re=0x010402de; + /** Label in a web form for "State" [CHAR-LIMIT=NONE] + */ + public static final int autofill_state=0x010402fa; + /** Do not translate. Regex used by AutoFill. + de-DE + en-UK + ja-JP + pt-BR, pt-PT + ru + zh-CN + zh-TW + */ + public static final int autofill_state_re=0x010402da; + /** Text to show in the auto complete drop down list on a text view when the WebView can auto fill the entire form, and the user has configured an AutoFill profile [CHAR-LIMIT=8] + */ + public static final int autofill_this_form=0x010402c9; + /** Do not translate. Regex used by AutoFill. + de-DE + zh-CN + */ + public static final int autofill_username_re=0x010402e0; + /** Do not translate. Regex used by AutoFill. + pt-BR, pt-PT + */ + public static final int autofill_zip_4_re=0x010402d8; + /** Label in a web form for "ZIP code" [CHAR-LIMIT=NONE] + */ + public static final int autofill_zip_code=0x010402fb; + /** Do not translate. Regex used by AutoFill. + de-DE + es + fr-FR + it-IT + ja-JP + pt-BR, pt-PT + ru +zh-CN + zh-TW + */ + public static final int autofill_zip_code_re=0x010402d7; + /** Displayed when a SIM PIN password is entered incorrectly. + */ + public static final int badPin=0x01040086; + /** Displayed when a SIM PUK password is entered incorrectly. + */ + public static final int badPuk=0x01040087; + /** [CHAR_LIMIT=NONE] Battery saver: Feature description + */ + public static final int battery_saver_description=0x01040573; + /** Description of the bluetooth a2dp audio route. [CHAR LIMIT=50] + */ + public static final int bluetooth_a2dp_audio_route_name=0x010404b4; + /** Message in bugreport dialog describing what it does [CHAR LIMIT=NONE] + */ + public static final int bugreport_message=0x0104010f; + /** Format for build summary info [CHAR LIMIT=NONE] + */ + public static final int bugreport_status=0x01040110; + /** Take bug report menu title [CHAR LIMIT=NONE] + */ + public static final int bugreport_title=0x0104010e; + /** Suffix added to a number to signify size in bytes. + */ + public static final int byteShort=0x0104006a; + /** Preference framework strings. + */ + public static final int cancel=0x01040000; + /** Description for the capability of an accessibility service to request enhanced web accessibility. + */ + public static final int capability_desc_canRequestEnhancedWebAccessibility=0x01040136; + /** Description for the capability of an accessibility service to request to filter key events. + */ + public static final int capability_desc_canRequestFilterKeyEvents=0x01040138; + /** Description for the capability of an accessibility service to request touch exploration. + */ + public static final int capability_desc_canRequestTouchExploration=0x01040134; + /** Description for the capability of an accessibility service to retrieve window content. + */ + public static final int capability_desc_canRetrieveWindowContent=0x01040132; + /** Title for the capability of an accessibility service to request enhanced web accessibility. + */ + public static final int capability_title_canRequestEnhancedWebAccessibility=0x01040135; + /** Title for the capability of an accessibility service to request to filter key events. + */ + public static final int capability_title_canRequestFilterKeyEvents=0x01040137; + /** Title for the capability of an accessibility service to request touch exploration. + */ + public static final int capability_title_canRequestTouchExploration=0x01040133; + /** Title for the capability of an accessibility service to retrieve window content. + */ + public static final int capability_title_canRetrieveWindowContent=0x01040131; + public static final int car_mode_disable_notification_message=0x01040441; + /** Strings for car mode notification + Shown when car mode is enabled + */ + public static final int car_mode_disable_notification_title=0x01040440; + /** Displayed when the call forwarding query was forwarded. + */ + public static final int cfTemplateForwarded=0x010400d0; + /** Displayed when the call forwarding query will be forwarded after some time. + */ + public static final int cfTemplateForwardedTime=0x010400d1; + /** Displayed when the call forwarding query was not able to be forwarded. + */ + public static final int cfTemplateNotForwarded=0x010400cf; + /** Displayed when the call forwarding query was set but forwarding is not enabled. + */ + public static final int cfTemplateRegistered=0x010400d2; + /** Displayed when the call forwarding query was set but forwarding is not enabled. + */ + public static final int cfTemplateRegisteredTime=0x010400d3; + /** Default title for the activity chooser, when one is not given. Android allows multiple activities to perform an action. for example, there may be many ringtone pickers installed. A dialog is shown to the user allowing him to pick which activity should be used. This is the title. + */ + public static final int chooseActivity=0x01040357; + /** title for the USB activity chooser. + */ + public static final int chooseUsbActivity=0x01040358; + /** Dialog title for user to select a different wallpaper from service list + */ + public static final int chooser_wallpaper=0x01040430; + public static final int common_last_name_prefixes=0x01040059; + public static final int common_name_conjunctions=0x0104005a; + public static final int common_name_prefixes=0x01040057; + public static final int common_name_suffixes=0x01040058; + /** Label to show for a service that is running because it is providing conditions. + */ + public static final int condition_provider_service_binding_label=0x01040432; + /** Package name providing Hardware Activity-Recognition API support. Used only when + config_enableActivityRecognitionHardwareOverlay is false. + */ + public static final int config_activityRecognitionHardwarePackageName=0x0104002a; + /** Apps that are authorized to access shared accounts, overridden by product overlays + */ + public static final int config_appsAuthorizedForSharedAccounts=0x01040049; + /** The OEM specified sensor string type for the gesture to launch camera app, this value + must match the value of config_cameraLaunchGestureSensorType in OEM's HAL + */ + public static final int config_cameraLaunchGestureSensorStringType=0x01040051; + /** Class name of the framework account picker activity. + Can be customized for other product types + */ + public static final int config_chooseAccountActivity=0x01040043; + /** Class name of the account type and account picker activity. + Can be customized for other product types + */ + public static final int config_chooseTypeAndAccountActivity=0x01040044; + /** Name of the activity or service that prompts the user to reject, accept, or whitelist + an adb host's public key, when an unwhitelisted host connects to the local adbd. + Can be customized for other product types + */ + public static final int config_customAdbPublicKeyConfirmationComponent=0x01040046; + /** Name of the activity that prompts the secondary user to acknowledge she/he needs to + switch to the primary user to enable USB debugging. + Can be customized for other product types + */ + public static final int config_customAdbPublicKeyConfirmationSecondaryUserComponent=0x01040047; + /** Component name of a custom ResolverActivity (Intent resolver) to be used instead of + the default framework version. If left empty, then the framework version will be used. + Example: com.google.android.myapp/.resolver.MyResolverActivity + */ + public static final int config_customResolverActivity=0x01040045; + /** Name of the CustomDialog that is used for VPN + */ + public static final int config_customVpnConfirmDialogComponent=0x01040048; + /** The default iface on which to monitor data use + */ + public static final int config_datause_iface=0x0104002b; + /** Package name for default network scorer app; overridden by product overlays. + */ + public static final int config_defaultNetworkScorerPackageName=0x0104004a; + /** IP address of the dns server to use if nobody else suggests one + */ + public static final int config_default_dns_server=0x0104002e; + /** ComponentName of a dream to show whenever the system would otherwise have + gone to sleep. When the PowerManager is asked to go to sleep, it will instead + try to start this dream if possible. The dream should typically call startDozing() + to put the display into a low power state and allow the application processor + to be suspended. When the dream ends, the system will go to sleep as usual. + Specify the component name or an empty string if none. + + Note that doze dreams are not subject to the same start conditions as ordinary dreams. + Doze dreams will run whenever the power manager is in a dozing state. + */ + public static final int config_dozeComponent=0x01040040; + /** ComponentName of the default dream (Settings.Secure.DEFAULT_SCREENSAVER_COMPONENT) + */ + public static final int config_dreamsDefaultComponent=0x0104003f; + /** Regex of wired ethernet ifaces + */ + public static final int config_ethernet_iface_regex=0x01040019; + /** Configure ethernet tcp buffersizes in the form: + rmem_min,rmem_def,rmem_max,wmem_min,wmem_def,wmem_max + */ + public static final int config_ethernet_tcp_buffers=0x01040041; + /** This config is used to force VoiceInteractionService to start on certain low ram devices. + It declares the package name of VoiceInteractionService that should be started. + */ + public static final int config_forceVoiceInteractionServicePackage=0x0104004f; + /** Package name providing fused location support. Used only when + config_enableFusedLocationOverlay is false. + */ + public static final int config_fusedLocationProviderPackageName=0x01040026; + /** Package name providing geocoder API support. Used only when + config_enableGeocoderOverlay is false. + */ + public static final int config_geocoderProviderPackageName=0x01040028; + /** Package name providing geofence API support. Used only when + config_enableGeofenceOverlay is false. + */ + public static final int config_geofenceProviderPackageName=0x01040029; + /** Package name providing Hardware Flp. Used only when + config_enableHardwareFlpOverlay is false. + */ + public static final int config_hardwareFlpPackageName=0x01040027; + /** Keyguard component + */ + public static final int config_keyguardComponent=0x0104004e; + /** MMS user agent string + */ + public static final int config_mms_user_agent=0x01040036; + /** MMS user agent prolfile url + */ + public static final int config_mms_user_agent_profile_url=0x01040037; + /** If the mobile hotspot feature requires provisioning, an action can be provided + that will be broadcast in non-ui cases for checking the provisioning status. + + A second broadcast, action defined by config_mobile_hotspot_provision_response, + will be sent back to notify if provisioning succeeded or not. The response will + match that of the activity in config_mobile_hotspot_provision_app, but instead + contained within the int extra "EntitlementResult". + + Example Usage: + String provisionAction = getString(R.string.config_mobile_hotspot_provision_check); + sendBroadcast(new Intent(provisionAction)); + + public void onReceive(Context context, Intent intent) { + String provisionResponse = + getString(R.string.config_mobile_hotspot_provision_response); + if (provisionResponse.equals(intent.getAction()) + && intent.getIntExtra("EntitlementResult") == Activity.RESULT_OK) { + //Mobile hotspot provisioning successful + } else { + //Mobile hotspot provisioning failed + } + } + + */ + public static final int config_mobile_hotspot_provision_app_no_ui=0x0104001a; + /** Sent in response to a provisioning check. The caller must hold the + permission android.permission.CONNECTIVITY_INTERNAL for Settings to + receive this response. + + See config_mobile_hotspot_provision_response + + */ + public static final int config_mobile_hotspot_provision_response=0x0104001b; + /** Package name providing network location support. Used only when + config_enableNetworkLocationOverlay is false. + */ + public static final int config_networkLocationProviderPackageName=0x01040025; + /** Remote server that can provide NTP responses. + */ + public static final int config_ntpServer=0x01040039; + /** Indicate the name of the window orientation sensor type if present. A + window orientation sensor produces values to be used in lieu of the + typical, accelerometer based sensor. It must only produce integral + values between 0 and 3, inclusive, with each one corresponding to a + given rotation: + 0: 0 degrees of rotation (natural) + 1: 90 degrees of rotation (rotate CCW) + 2: 180 degrees of rotation (reverse) + 3: 270 degrees of rotation (rotate CW) + */ + public static final int config_orientationSensorType=0x01040020; + /** The BT name of the keyboard packaged with the device. If this is defined, SystemUI will + automatically try to pair with it when the device exits tablet mode. + */ + public static final int config_packagedKeyboardName=0x01040052; + /** Flag indicating which package name can access the persistent data partition + */ + public static final int config_persistentDataPackageName=0x0104004b; + /** The RadioAccessFamilies supported by the device. + Empty is viewed as "all". Only used on devices which + don't support RIL_REQUEST_GET_RADIO_CAPABILITY + format is UMTS|LTE|... + */ + public static final int config_radio_access_family=0x01040050; + /** The URL that should be sent in an x-wap-profile header with an HTTP request, + as defined in the Open Mobile Alliance User Agent Profile specification + OMA-TS-UAProf-V2_0-20060206-A Section 8.1.1.1. If the URL contains a '%s' + format string then that substring will be replaced with the value of + Build.MODEL. The format string shall not be escaped. + */ + public static final int config_useragentprofile_url=0x01040035; + /** Package name providing WebView implementation. + */ + public static final int config_webViewPackageName=0x0104004c; + public static final int config_wifi_framework_sap_2G_channel_list=0x0104001f; + /** Device type information conforming to Annex B format in WiFi Direct specification. + The default represents a dual-mode smartphone + */ + public static final int config_wifi_p2p_device_type=0x0104001d; + public static final int config_wifi_random_mac_oui=0x0104001e; + /** Configure wifi tcp buffersizes in the form: + rmem_min,rmem_def,rmem_max,wmem_min,wmem_def,wmem_max + */ + public static final int config_wifi_tcp_buffers=0x01040042; + /** Activity name to enable wifi tethering after provisioning app succeeds + */ + public static final int config_wifi_tether_enable=0x0104001c; + /** Name of the wimax manager class + */ + public static final int config_wimaxManagerClassname=0x0104003c; + /** Location of the wimax native library locaiton + */ + public static final int config_wimaxNativeLibLocation=0x0104003b; + /** Name of the wimax service class + */ + public static final int config_wimaxServiceClassname=0x0104003d; + /** Location of the wimax framwork jar location + */ + public static final int config_wimaxServiceJarLocation=0x0104003a; + /** Name of the wimax state tracker clas + */ + public static final int config_wimaxStateTrackerClassname=0x0104003e; + /** Title of a button to open the settings to enable or disable keyboards, also known as input methods [CHAR LIMIT=30] + */ + public static final int configure_input_methods=0x010403e5; + /** A notification is shown when there is a sync error. This is the text that will scroll through the notification bar (will be seen by the user as he uses another application). + */ + public static final int contentServiceSync=0x010400e5; + /** A notification is shown when there is a sync error. This is the title of the notification. It will be seen in the pull-down notification tray. + */ + public static final int contentServiceSyncNotificationTitle=0x010400e6; + /** A notification is shown when there is a sync error. This is the message of the notification. It describes the error, in this case is there were too many deletes. The argument is the type of content, for example Gmail or Calendar. It will be seen in the pull-down notification tray. + */ + public static final int contentServiceTooManyDeletesNotificationDesc=0x010400e7; + /** Text spoken when the user is performing a gesture that will enable accessibility. [CHAR LIMIT=none] + */ + public static final int continue_to_enable_accessibility=0x010404e9; + /** Item on EditText context menu. This action is used to cut selected the text into the clipboard. + */ + public static final int copy=0x01040001; + /** Item on EditText context menu. This action is used to copy a URL from the edit field into the clipboard. + */ + public static final int copyUrl=0x01040002; + /** This string appears (on two lines) when you type a number into contacts search, to let you create a contact whose phone number is the number you typed. The first line will be in bigger type than the second. + */ + public static final int create_contact_using=0x01040422; + /** Item on EditText context menu. This action is used to cut selected the text into the clipboard. + */ + public static final int cut=0x01040003; + /** Notification title when 2G-3G data usage has exceeded limit threshold. [CHAR LIMIT=32] + */ + public static final int data_usage_3g_limit_snoozed_title=0x01040490; + /** Notification title when 2G-3G data usage has exceeded limit threshold, and has been disabled. [CHAR LIMIT=32] + */ + public static final int data_usage_3g_limit_title=0x0104048b; + /** Notification title when 4G data usage has exceeded limit threshold. [CHAR LIMIT=32] + */ + public static final int data_usage_4g_limit_snoozed_title=0x01040491; + /** Notification title when 4G data usage has exceeded limit threshold, and has been disabled. [CHAR LIMIT=32] + */ + public static final int data_usage_4g_limit_title=0x0104048c; + /** Notification body when data usage has exceeded limit threshold, and has been disabled. [CHAR LIMIT=32] + */ + public static final int data_usage_limit_body=0x0104048f; + /** Notification body when data usage has exceeded limit threshold. [CHAR LIMIT=32] + */ + public static final int data_usage_limit_snoozed_body=0x01040494; + /** Notification title when mobile data usage has exceeded limit threshold. [CHAR LIMIT=32] + */ + public static final int data_usage_mobile_limit_snoozed_title=0x01040492; + /** Notification title when mobile data usage has exceeded limit threshold, and has been disabled. [CHAR LIMIT=32] + */ + public static final int data_usage_mobile_limit_title=0x0104048d; + /** Notification body when background data usage is limited. [CHAR LIMIT=32] + */ + public static final int data_usage_restricted_body=0x01040496; + /** Notification title when background data usage is limited. [CHAR LIMIT=32] + */ + public static final int data_usage_restricted_title=0x01040495; + /** Notification body when data usage has exceeded warning threshold. [CHAR LIMIT=32] + */ + public static final int data_usage_warning_body=0x0104048a; + /** Notification title when data usage has exceeded warning threshold. [CHAR LIMIT=32] + */ + public static final int data_usage_warning_title=0x01040489; + /** Notification title when Wi-Fi data usage has exceeded limit threshold. [CHAR LIMIT=32] + */ + public static final int data_usage_wifi_limit_snoozed_title=0x01040493; + /** Notification title when Wi-Fi data usage has exceeded limit threshold, and has been disabled. [CHAR LIMIT=32] + */ + public static final int data_usage_wifi_limit_title=0x0104048e; + public static final int date_and_time=0x01040055; + /** DO NOT TRANSLATE + */ + public static final int date_picker_day_of_week_typeface=0x01040566; + /** DO NOT TRANSLATE + */ + public static final int date_picker_day_typeface=0x01040567; + /** Description of the button to decrease the DatePicker's day value. [CHAR LIMIT=NONE] + */ + public static final int date_picker_decrement_day_button=0x0104046a; + /** Description of the button to decrease the DatePicker's month value. [CHAR LIMIT=NONE] + */ + public static final int date_picker_decrement_month_button=0x01040468; + /** Description of the button to decrease the DatePicker's year value. [CHAR LIMIT=NONE] + */ + public static final int date_picker_decrement_year_button=0x0104046c; + /** The title of the date picker dialog. [CHAR LIMIT=NONE] + */ + public static final int date_picker_dialog_title=0x010403c3; + /** Description of the button to increase the DatePicker's day value. [CHAR LIMIT=NONE] + */ + public static final int date_picker_increment_day_button=0x01040469; + /** DatePicker - accessibility support + Description of the button to increase the DatePicker's month value. [CHAR LIMIT=NONE] + */ + public static final int date_picker_increment_month_button=0x01040467; + /** Description of the button to increase the DatePicker's year value. [CHAR LIMIT=NONE] + */ + public static final int date_picker_increment_year_button=0x0104046b; + /** DO NOT TRANSLATE + */ + public static final int date_picker_month_typeface=0x01040565; + /** Description of the button to move to the next month. [CHAR LIMIT=NONE] + */ + public static final int date_picker_next_month_button=0x0104046e; + /** Description of the button to move to the previous month. [CHAR LIMIT=NONE] + */ + public static final int date_picker_prev_month_button=0x0104046d; + public static final int date_time=0x01040056; + /** Name of the button in the date/time picker to accept the date/time change + */ + public static final int date_time_done=0x010403c5; + /** Name of the button in the date/time picker to accept the date/time change + */ + public static final int date_time_set=0x010403c4; + /** The default journal mode to use use when Write-Ahead Logging is not active. + Choices are: OFF, DELETE, TRUNCATE, PERSIST and MEMORY. + PERSIST may improve performance by reducing how often journal blocks are + reallocated (compared to truncation) resulting in better data block locality + and less churn of the storage media. + */ + public static final int db_default_journal_mode=0x01040032; + /** The database synchronization mode when using the default journal mode. + FULL is safest and preserves durability at the cost of extra fsyncs. + NORMAL also preserves durability in non-WAL modes and uses checksums to ensure + integrity although there is a small chance that an error might go unnoticed. + Choices are: FULL, NORMAL, OFF. + */ + public static final int db_default_sync_mode=0x01040033; + /** The database synchronization mode when using Write-Ahead Logging. + FULL is safest and preserves durability at the cost of extra fsyncs. + NORMAL sacrifices durability in WAL mode because syncs are only performed before + and after checkpoint operations. If checkpoints are infrequent and power loss + occurs, then committed transactions could be lost and applications might break. + Choices are: FULL, NORMAL, OFF. + */ + public static final int db_wal_sync_mode=0x01040034; + public static final int decline=0x010403a6; + /** What the UI should display for "Msisdn" unless overridden by the SIM + */ + public static final int defaultMsisdnAlphaTag=0x01040005; + /** What the UI should display for "voice mail" unless overridden by the SIM + */ + public static final int defaultVoiceMailAlphaTag=0x01040004; + /** Name of the default audio route category. [CHAR LIMIT=50] + */ + public static final int default_audio_route_category_name=0x010404b3; + /** Name of the default audio route when nothing is connected to + a headphone or other wired audio output jack. [CHAR LIMIT=50] + */ + public static final int default_audio_route_name=0x010404af; + /** Name of the default audio route when an audio dock is connected. [CHAR LIMIT=50] + */ + public static final int default_audio_route_name_dock_speakers=0x010404b1; + /** Name of the default audio route when wired headphones are + connected. [CHAR LIMIT=50] + */ + public static final int default_audio_route_name_headphones=0x010404b0; + /** Default web browser. This is the package name of the application that will + be the default browser when the device first boots. Afterwards the user + can select whatever browser app they wish to use as the default. + + If this string is empty or the specified package does not exist, then + the behavior will be as though no app was named as an explicit default. + */ + public static final int default_browser=0x0104002d; + /** Name of the default media route when HDMI is connected. [CHAR LIMIT=50] + */ + public static final int default_media_route_name_hdmi=0x010404b2; + /** Default SMS Application. This will be the default SMS application when + the phone first boots. The user can then change the default app to one + of their choosing. + This can be overridden for devices where a different default SMS + application is desired. + + If this string is empty or the specified package does not exist, then + the platform will search for an SMS app and use that (if there is one) + */ + public static final int default_sms_application=0x0104002c; + /** Component name of the default wallpaper. This will be ImageWallpaper if not + specified + */ + public static final int default_wallpaper_component=0x01040023; + /** Item on EditText pop-up window. This action is used to delete the text that the user recently added. [CHAR LIMIT=15] + */ + public static final int delete=0x0104033c; + /** Option to delete the highlighted part of the text from the suggestion popup. [CHAR LIMIT=25] + */ + public static final int deleteText=0x0104033f; + /** Accessibility announcement when a number that had been typed in is deleted [CHAR_LIMIT=NONE] + */ + public static final int deleted_key=0x01040560; + /** Description of the unlock handle in the Slide unlock screen for tablets. [CHAR LIMIT=NONE] + */ + public static final int description_target_unlock_tablet=0x0104047b; + /** This string appears (on two lines) when you type a number into contacts search, to let you dial the phone number you typed. The first line will be in bigger type than the second. + */ + public static final int dial_number_using=0x01040421; + /** This is the generic "attention" string to be used in attention dialogs. Typically + combined with setIconAttribute(android.R.attr.alertDialogIcon) + (or setIcon(android.R.drawable.ic_dialog_alert) on legacy versions of the platform) + */ + public static final int dialog_alert_title=0x01040014; + /** Display manager service + Name of the built-in display. [CHAR LIMIT=50] + */ + public static final int display_manager_built_in_display_name=0x010404c1; + /** Name of the HDMI display. [CHAR LIMIT=50] + */ + public static final int display_manager_hdmi_display_name=0x010404c2; + /** Name of the N'th overlay display for testing. [CHAR LIMIT=50] + */ + public static final int display_manager_overlay_display_name=0x010404c3; + /** Title text to append when the display is secure. [CHAR LIMIT=30] + */ + public static final int display_manager_overlay_display_secure_suffix=0x010404c5; + /** Title text to show within the overlay. [CHAR LIMIT=50] + */ + public static final int display_manager_overlay_display_title=0x010404c4; + /** USB_STORAGE_KILL_STORAGE_USERS dialog message text + */ + public static final int dlg_confirm_kill_storage_users_text=0x010403d8; + /** USB_STORAGE_KILL_STORAGE_USERS dialog + */ + public static final int dlg_confirm_kill_storage_users_title=0x010403d7; + /** USB_STORAGE_ERROR dialog dialog + */ + public static final int dlg_error_title=0x010403d9; + /** USB_STORAGE_ERROR dialog ok button + */ + public static final int dlg_ok=0x010403da; + /** Label for button to confirm chosen date or time [CHAR LIMIT=30] + */ + public static final int done_label=0x01040559; + /** Toast for double-tap + */ + public static final int double_tap_toast=0x010402c8; + /** Notification text to tell the user that a process has exceeded its memory limit. + */ + public static final int dump_heap_notification=0x0104037d; + /** Notification details to tell the user that a process has exceeded its memory limit. + */ + public static final int dump_heap_notification_detail=0x0104037e; + /** Text of dialog prompting the user to share a heap dump. + */ + public static final int dump_heap_text=0x01040380; + /** Title of dialog prompting the user to share a heap dump. + */ + public static final int dump_heap_title=0x0104037f; + /** [CHAR_LIMIT=10] Suffix added to signify duration of one day with one hours + */ + public static final int durationDayHour=0x01040073; + /** [CHAR_LIMIT=10] Suffix added to signify duration of one day with hours + */ + public static final int durationDayHours=0x01040072; + /** [CHAR_LIMIT=10] Suffix added to signify duration in days + */ + public static final int durationDays=0x01040071; + /** [CHAR_LIMIT=10] Suffix added to signify duration of one hour with one minute + */ + public static final int durationHourMinute=0x01040076; + /** [CHAR_LIMIT=10] Suffix added to signify duration of one hour with minutes + */ + public static final int durationHourMinutes=0x01040075; + /** [CHAR_LIMIT=10] Suffix added to signify duration in hours + */ + public static final int durationHours=0x01040074; + /** [CHAR_LIMIT=10] Suffix added to signify duration of one minute + */ + public static final int durationMinute=0x01040078; + /** [CHAR_LIMIT=10] Suffix added to signify duration of one minute with one second + */ + public static final int durationMinuteSecond=0x0104007a; + /** [CHAR_LIMIT=10] Suffix added to signify duration of one minute with seconds + */ + public static final int durationMinuteSeconds=0x01040079; + /** [CHAR_LIMIT=10] Suffix added to signify duration in minutes + */ + public static final int durationMinutes=0x01040077; + /** [CHAR_LIMIT=10] Suffix added to signify duration of one second + */ + public static final int durationSecond=0x0104007c; + /** [CHAR_LIMIT=10] Suffix added to signify duration in seconds + */ + public static final int durationSeconds=0x0104007b; + /** Format string for times like "1:43:33" (1 hour, 43 minutes, 33 seconds) + */ + public static final int elapsed_time_short_format_h_mm_ss=0x0104033a; + /** Format string for durations like "01:23" (1 minute, 23 seconds) + */ + public static final int elapsed_time_short_format_mm_ss=0x01040339; + /** Custom email type + */ + public static final int emailTypeCustom=0x0104022d; + /** Home email type + */ + public static final int emailTypeHome=0x0104022e; + /** Mobile email type + */ + public static final int emailTypeMobile=0x01040231; + /** Other email type + */ + public static final int emailTypeOther=0x01040230; + /** Work email type + */ + public static final int emailTypeWork=0x0104022f; + /** This can be used in any application wanting to disable the text "Emergency number" + */ + public static final int emergency_call_dialog_number_for_display=0x01040264; + /** Shown in the lock screen when there is emergency calls only mode. + */ + public static final int emergency_calls_only=0x0104027d; + /** How to display the lack of a phone number + */ + public static final int emptyPhoneNumber=0x01040006; + /** Displayed when user attempts to change SIM PIN1 without enabling PIN1. + */ + public static final int enablePin=0x0104008d; + /** Text spoken when the user stops preforming a gesture that would enable accessibility. [CHAR LIMIT=none] + */ + public static final int enable_accessibility_canceled=0x010404eb; + /** Summary for a warning message about the interaction model changes after allowing an accessibility + service to put the device into explore by touch mode, displayed as a dialog message when + the user selects to enables the service. (default). [CHAR LIMIT=NONE] + */ + public static final int enable_explore_by_touch_warning_message=0x01040320; + /** Title for a warning message about the interaction model changes after allowing an accessibility + service to put the device into explore by touch mode, displayed as a dialog message when + the user selects to enables the service. (default). [CHAR LIMIT=45] + */ + public static final int enable_explore_by_touch_warning_title=0x0104031f; + /** Message informing user that the change was disallowed by an administrator. [CHAR LIMIT=none] + */ + public static final int error_message_change_not_allowed=0x010404f0; + /** Error message title [CHAR LIMIT=35] + */ + public static final int error_message_title=0x010404ef; + /** Label for an anniversary event [CHAR LIMIT=20] + */ + public static final int eventTypeAnniversary=0x0104022b; + /** Label for a birthday event [CHAR LIMIT=20] + */ + public static final int eventTypeBirthday=0x0104022a; + /** Label for custom events [CHAR LIMIT=20] + */ + public static final int eventTypeCustom=0x01040229; + /** Label for other events [CHAR LIMIT=20] + */ + public static final int eventTypeOther=0x0104022c; + /** Notification body when external media is unsafely removed [CHAR LIMIT=NONE] + */ + public static final int ext_media_badremoval_notification_message=0x010403f6; + /** Notification title when external media is unsafely removed [CHAR LIMIT=30] + */ + public static final int ext_media_badremoval_notification_title=0x010403f5; + /** Notification action to browse external media [CHAR LIMIT=20] + */ + public static final int ext_media_browse_action=0x010403fd; + /** Notification body when external media is being checked [CHAR LIMIT=NONE] + */ + public static final int ext_media_checking_notification_message=0x010403ee; + /** Notification title when external media is being checked [CHAR LIMIT=30] + */ + public static final int ext_media_checking_notification_title=0x010403ed; + /** Notification action to setup external media [CHAR LIMIT=20] + */ + public static final int ext_media_init_action=0x010403fb; + /** Notification body when external media is missing [CHAR LIMIT=30] + */ + public static final int ext_media_missing_message=0x010403ff; + /** Notification title when external media is missing [CHAR LIMIT=30] + */ + public static final int ext_media_missing_title=0x010403fe; + /** Notification title when moving data to external storage failed [CHAR LIMIT=64] + */ + public static final int ext_media_move_failure_message=0x01040405; + /** Notification title when moving data to external storage failed [CHAR LIMIT=32] + */ + public static final int ext_media_move_failure_title=0x01040404; + /** Notification title when moving an application to external storage [CHAR LIMIT=30] + */ + public static final int ext_media_move_specific_title=0x01040400; + /** Notification title when moving data to external storage [CHAR LIMIT=64] + */ + public static final int ext_media_move_success_message=0x01040403; + /** Notification title when moving data to external storage [CHAR LIMIT=32] + */ + public static final int ext_media_move_success_title=0x01040402; + /** Notification title when moving data to external storage [CHAR LIMIT=32] + */ + public static final int ext_media_move_title=0x01040401; + /** Notification body when new external media is detected [CHAR LIMIT=NONE] + */ + public static final int ext_media_new_notification_message=0x010403ef; + /** Notification body when external media is missing [CHAR LIMIT=NONE] + */ + public static final int ext_media_nomedia_notification_message=0x010403f8; + /** Notification title when external media is missing [CHAR LIMIT=30] + */ + public static final int ext_media_nomedia_notification_title=0x010403f7; + /** Notification body when external media is ready for use [CHAR LIMIT=NONE] + */ + public static final int ext_media_ready_notification_message=0x010403f0; + /** Short summary of storage media status when removed unsafely [CHAR LIMIT=32] + */ + public static final int ext_media_status_bad_removal=0x0104040b; + /** Short summary of storage media status when checking [CHAR LIMIT=32] + */ + public static final int ext_media_status_checking=0x01040408; + /** Short summary of storage media status when ejecting [CHAR LIMIT=32] + */ + public static final int ext_media_status_ejecting=0x0104040e; + /** Short summary of storage media status when formatting [CHAR LIMIT=32] + */ + public static final int ext_media_status_formatting=0x0104040f; + /** Short summary of storage media status when missing [CHAR LIMIT=32] + */ + public static final int ext_media_status_missing=0x01040410; + /** Short summary of storage media status when mounted [CHAR LIMIT=32] + */ + public static final int ext_media_status_mounted=0x01040409; + /** Short summary of storage media status when mounted read-only [CHAR LIMIT=32] + */ + public static final int ext_media_status_mounted_ro=0x0104040a; + /** Short summary of storage media status when removed [CHAR LIMIT=32] + */ + public static final int ext_media_status_removed=0x01040406; + /** Short summary of storage media status when unmountable [CHAR LIMIT=32] + */ + public static final int ext_media_status_unmountable=0x0104040c; + /** Short summary of storage media status when unmounted [CHAR LIMIT=32] + */ + public static final int ext_media_status_unmounted=0x01040407; + /** Short summary of storage media status when unsupported [CHAR LIMIT=32] + */ + public static final int ext_media_status_unsupported=0x0104040d; + /** Notification action to unmount external media [CHAR LIMIT=20] + */ + public static final int ext_media_unmount_action=0x010403fc; + /** Notification body when external media is unmountable (corrupt) [CHAR LIMIT=NONE] + */ + public static final int ext_media_unmountable_notification_message=0x010403f2; + /** Notification title when external media is unmountable (corrupt) [CHAR LIMIT=30] + */ + public static final int ext_media_unmountable_notification_title=0x010403f1; + /** Notification body when external media is unmounting [CHAR LIMIT=NONE] + */ + public static final int ext_media_unmounting_notification_message=0x010403fa; + /** Notification title when external media is unmounting [CHAR LIMIT=30] + */ + public static final int ext_media_unmounting_notification_title=0x010403f9; + /** Notification body when external media is unsupported [CHAR LIMIT=NONE] + */ + public static final int ext_media_unsupported_notification_message=0x010403f4; + /** Notification title when external media is unsupported [CHAR LIMIT=30] + */ + public static final int ext_media_unsupported_notification_title=0x010403f3; + /** Shown when face unlock failed multiple times so we're just using the backup + */ + public static final int faceunlock_multiple_failures=0x0104026f; + /** Text message in the factory reset warning dialog. This says that the the device admin app + is missing or corrupted. As a result the device will be erased. [CHAR LIMIT=NONE] + */ + public static final int factory_reset_message=0x010400f2; + /** Shows up in the dialog's title to warn about an impeding factory reset. [CHAR LIMIT=NONE] + */ + public static final int factory_reset_warning=0x010400f1; + /** Title of the alert when something went wrong in the factory test. + */ + public static final int factorytest_failed=0x010402bb; + /** Error message displayed when the factory test could not be started. + */ + public static final int factorytest_no_action=0x010402bd; + /** Error message displayed when a non-system application tries to start a factory test. + */ + public static final int factorytest_not_system=0x010402bc; + /** Button to restart the device after the factory test. + */ + public static final int factorytest_reboot=0x010402be; + public static final int fast_scroll_alphabet=0x010403ea; + /** Format string used to add a suffix like "KB" or "MB" to a number + to display a size in kilobytes, megabytes, or other size units. + Some languages (like French) will want to add a space between + the placeholders. + */ + public static final int fileSizeSuffix=0x01040070; + /** Message shown during fingerprint acquisision when the fingerprint sensor needs cleaning + */ + public static final int fingerprint_acquired_imager_dirty=0x010401bb; + /** Message shown during fingerprint acquisision when the fingerprint cannot be recognized + */ + public static final int fingerprint_acquired_insufficient=0x010401ba; + /** Message shown during fingerprint acquisision when the fingerprint cannot be recognized + */ + public static final int fingerprint_acquired_partial=0x010401b9; + /** Message shown during fingerprint acquisision when the user removes their finger from the sensor too quickly + */ + public static final int fingerprint_acquired_too_fast=0x010401bc; + /** Message shown during fingerprint acquisision when the user moves their finger too slowly + */ + public static final int fingerprint_acquired_too_slow=0x010401bd; + /** Generic error message shown when the fingerprint operation (e.g. enrollment or authentication) is canceled. Generally not shown to the user + */ + public static final int fingerprint_error_canceled=0x010401c1; + /** Error message shown when the fingerprint hardware can't be accessed + */ + public static final int fingerprint_error_hw_not_available=0x010401be; + /** Generic error message shown when the fingerprint operation fails because too many attempts have been made. + */ + public static final int fingerprint_error_lockout=0x010401c2; + /** Error message shown when the fingerprint hardware has run out of room for storing fingerprints + */ + public static final int fingerprint_error_no_space=0x010401bf; + /** Error message shown when the fingerprint hardware timer has expired and the user needs to restart the operation. + */ + public static final int fingerprint_error_timeout=0x010401c0; + /** Generic error message shown when the fingerprint hardware can't recognize the fingerprint + */ + public static final int fingerprint_error_unable_to_process=0x010401c3; + /** Content description which should be used for the fingerprint icon. + */ + public static final int fingerprint_icon_content_description=0x01040018; + /** Template to be used to name enrolled fingerprints by default. + */ + public static final int fingerprint_name_template=0x010401c4; + /** Button allowing the user to close an application that is not responding. This will kill the application. + */ + public static final int force_close=0x01040362; + /** Message to show when an intent automatically switches users into the personal profile. + */ + public static final int forward_intent_to_owner=0x0104042a; + /** Message to show when an intent automatically switches users into a work profile. + */ + public static final int forward_intent_to_work=0x0104042b; + /** Shown in gadget hosts (e.g. the home screen) when there was an error inflating + the gadget. + */ + public static final int gadget_host_error_inflating=0x01040419; + /** Suffix added to a number to signify size in gigabytes. + */ + public static final int gigabyteShort=0x0104006d; + /** label for item that launches assist in phone options dialog [CHAR LIMIT=15] + */ + public static final int global_action_assist=0x01040118; + /** label for item that generates a bug report in the phone options dialog + */ + public static final int global_action_bug_report=0x0104010d; + /** label for item that locks the phone and enforces that it can't be unlocked without entering a credential. [CHAR LIMIT=15] + */ + public static final int global_action_lockdown=0x0104011a; + /** label for item that turns off power in phone options dialog + */ + public static final int global_action_power_off=0x0104010c; + /** label for item that launches settings in phone options dialog [CHAR LIMIT=15] + */ + public static final int global_action_settings=0x01040117; + /** status message in phone options dialog for when silent mode is disabled + */ + public static final int global_action_silent_mode_off_status=0x01040113; + /** status message in phone options dialog for when silent mode is enabled + */ + public static final int global_action_silent_mode_on_status=0x01040112; + /** label for item that enables silent mode in phone options dialog + */ + public static final int global_action_toggle_silent_mode=0x01040111; + /** label for item that launches voice assist in phone options dialog [CHAR LIMIT=15] + */ + public static final int global_action_voice_assist=0x01040119; + /** status message in phone options dialog for when airplane mode is off + */ + public static final int global_actions_airplane_mode_off_status=0x01040116; + /** status message in phone options dialog for when airplane mode is on + */ + public static final int global_actions_airplane_mode_on_status=0x01040115; + /** label for item that toggles airplane mode + */ + public static final int global_actions_toggle_airplane_mode=0x01040114; + /** Network positioning notification message. The name of the user (e.g. John Doe) and + service (SUPL-service) who sent the request is shown as dynamic strings. + Translation should not be longer than master text. + */ + public static final int gpsNotifMessage=0x01040452; + /** Network positioning notification ticker. The name of the user (e.g. John Doe) who sent + the request is shown as a dynamic string. + */ + public static final int gpsNotifTicker=0x01040450; + /** Network positioning notification and verification title to inform the user about + an incoming location request. + */ + public static final int gpsNotifTitle=0x01040451; + /** Network positioning verification No. Button to push to deny sharing of location + information. + */ + public static final int gpsVerifNo=0x01040454; + /** Network positioning verification Yes. Button to push to share location information. + */ + public static final int gpsVerifYes=0x01040453; + public static final int grant_permissions_header_text=0x01040425; + /** Label for granularity to traverse the content on an AccessibilityNodeInfo by character. Only spoken to the user. [CHAR LIMIT=NONE] + */ + public static final int granularity_label_character=0x010402b5; + /** Label for granularity to traverse the content on an AccessibilityNodeInfo by line. Only spoken to the user. [CHAR LIMIT=NONE] + */ + public static final int granularity_label_line=0x010402b8; + /** Label for granularity to traverse the content on an AccessibilityNodeInfo by link. Only spoken to the user. [CHAR LIMIT=NONE] + */ + public static final int granularity_label_link=0x010402b7; + /** Label for granularity to traverse the content on an AccessibilityNodeInfo by word. Only spoken to the user. [CHAR LIMIT=NONE] + */ + public static final int granularity_label_word=0x010402b6; + /** The default character set for GsmAlphabet + Empty string means MBCS is not considered + */ + public static final int gsm_alphabet_default_charset=0x01040031; + /** Title of the physical keyboard category in the input method selector [CHAR LIMIT=10] + */ + public static final int hardware=0x010403e7; + /** Notification text to tell the user that a heavy-weight application is running. + */ + public static final int heavy_weight_notification=0x01040375; + /** Notification details to tell the user that a heavy-weight application is running. + */ + public static final int heavy_weight_notification_detail=0x01040376; + /** A format string for 12-hour time of day, just the hour, not the minute, with lower-case "am" or "pm" (example: "3pm"). + */ + public static final int hour_ampm=0x010402b9; + /** A format string for 12-hour time of day, just the hour, not the minute, with capital "AM" or "PM" (example: "3PM"). + */ + public static final int hour_cap_ampm=0x010402ba; + /** + Content description for the hour selector in the time picker, which displays + selectable hours of the day along the inside edge of a circle, as in an analog clock. + [CHAR LIMIT=50] + + */ + public static final int hour_picker_description=0x0104055a; + /** Displayed when a web request failed with a generic network error. + */ + public static final int httpError=0x010400d7; + /** Displayed when a web request failed because the authentication failed. + */ + public static final int httpErrorAuth=0x010400da; + /** Displayed when a web request failed because the URL isn't in a valid form. + */ + public static final int httpErrorBadUrl=0x01040007; + /** Displayed when a web request failed because there was a connection error. + */ + public static final int httpErrorConnect=0x010400dc; + /** Displayed when a web request failed because the a secure connection couldn't be made to the server. + */ + public static final int httpErrorFailedSslHandshake=0x010400e0; + /** Displayed when a request failed because we failed to open the file. + */ + public static final int httpErrorFile=0x010400e1; + /** Displayed when a request failed because the file wasn't found. + */ + public static final int httpErrorFileNotFound=0x010400e2; + /** Displayed when a web request failed because there was an input or output error. + */ + public static final int httpErrorIO=0x010400dd; + /** Displayed when a web request failed because the URL could not be found. + */ + public static final int httpErrorLookup=0x010400d8; + /** Displayed when a web request was successful. + */ + public static final int httpErrorOk=0x010400d6; + /** Displayed when a web request failed because the authentication with the proxy failed. + */ + public static final int httpErrorProxyAuth=0x010400db; + /** Displayed when a web request failed because the site tried to redirect us one too many times + */ + public static final int httpErrorRedirectLoop=0x010400df; + /** Displayed when a web request failed because the request timed out + */ + public static final int httpErrorTimeout=0x010400de; + /** Displayed when a request failed because there are too many requests right now. + */ + public static final int httpErrorTooManyRequests=0x010400e3; + /** Displayed when a web request failed because the site's authentication scheme is not supported by us. + */ + public static final int httpErrorUnsupportedAuthScheme=0x010400d9; + /** Displayed when a web request failed because the protocol of the server is not supported. + */ + public static final int httpErrorUnsupportedScheme=0x01040008; + /** AIM IM protocol type + */ + public static final int imProtocolAim=0x0104023b; + /** Custom IM protocol type + */ + public static final int imProtocolCustom=0x0104023a; + /** Google Talk IM protocol type + */ + public static final int imProtocolGoogleTalk=0x01040240; + /** ICQ IM protocol type + */ + public static final int imProtocolIcq=0x01040241; + /** Jabber IM protocol type + */ + public static final int imProtocolJabber=0x01040242; + /** MSN IM protocol type + */ + public static final int imProtocolMsn=0x0104023c; + /** NetMeeting IM protocol type + */ + public static final int imProtocolNetMeeting=0x01040243; + /** QQ IM protocol type + */ + public static final int imProtocolQq=0x0104023f; + /** Skype IM protocol type + */ + public static final int imProtocolSkype=0x0104023e; + /** Yahoo IM protocol type + */ + public static final int imProtocolYahoo=0x0104023d; + /** Custom IM address type + */ + public static final int imTypeCustom=0x01040236; + /** Home IM address type + */ + public static final int imTypeHome=0x01040237; + /** Other IM address type + */ + public static final int imTypeOther=0x01040239; + /** Work IM address type + */ + public static final int imTypeWork=0x01040238; + /** Component name of the built in wallpaper used to display bitmap wallpapers. This must not be null. + */ + public static final int image_wallpaper_component=0x01040024; + /** Long label for a button on a full-screen input method for an unknown action. + */ + public static final int ime_action_default=0x01040420; + /** Long label for a button on a full-screen input method for the "Done" action. + */ + public static final int ime_action_done=0x0104041e; + /** Long label for a button on a full-screen input method for the "Go" action. + */ + public static final int ime_action_go=0x0104041a; + /** Long label for a button on a full-screen input method for the "Next" action. + */ + public static final int ime_action_next=0x0104041d; + /** [CHAR LIMIT=6] Long label for a button on a full-screen input method for the "Previous" action. + */ + public static final int ime_action_previous=0x0104041f; + /** Long label for a button on a full-screen input method for the "Search" action. + */ + public static final int ime_action_search=0x0104041b; + /** Long label for a button on a full-screen input method for the "Send" action. + */ + public static final int ime_action_send=0x0104041c; + /** Title for the dialog used to display the user's IMEI number [CHAR LIMIT=10] + */ + public static final int imei=0x0104008e; + /** EditText context menu + */ + public static final int inputMethod=0x01040340; + /** Label to show for a service that is running because it is an input method. + */ + public static final int input_method_binding_label=0x0104042c; + /** Displayed when a SIM PIN password is too long or too short. + */ + public static final int invalidPin=0x01040089; + /** Displayed when a SIM PUK password is too short. + */ + public static final int invalidPuk=0x0104008a; + /** Message in a javascript dialog asking if the user wishes to leave the current page + */ + public static final int js_dialog_before_unload=0x010402c6; + /** Text for the negative button on the unload javascript dialog + */ + public static final int js_dialog_before_unload_negative_button=0x010402c5; + /** Text for the positive button on the unload javascript dialog + */ + public static final int js_dialog_before_unload_positive_button=0x010402c4; + /** Title for the unload javascript dialog + */ + public static final int js_dialog_before_unload_title=0x010402c3; + /** Title for a JavaScript dialog. "The page at says:" + */ + public static final int js_dialog_title=0x010402c1; + /** Default title for a javascript dialog + */ + public static final int js_dialog_title_default=0x010402c2; + /** Announce that a headset is required to hear keyboard keys while typing a password. [CHAR LIMIT=NONE] + */ + public static final int keyboard_headset_required_to_hear_password=0x0104047c; + /** The value of a keyboard key announced when accessibility is enabled and no headsed is used. [CHAR LIMIT=NONE] + */ + public static final int keyboard_password_character_no_headset=0x0104047d; + /** KeyboardView - accessibility support + Description of the Alt button in a KeyboardView. [CHAR LIMIT=NONE] + */ + public static final int keyboardview_keycode_alt=0x0104046f; + /** Description of the Cancel button in a KeyboardView. [CHAR LIMIT=NONE] + */ + public static final int keyboardview_keycode_cancel=0x01040470; + /** Description of the Delete button in a KeyboardView. [CHAR LIMIT=NONE] + */ + public static final int keyboardview_keycode_delete=0x01040471; + /** Description of the Done button in a KeyboardView. [CHAR LIMIT=NONE] + */ + public static final int keyboardview_keycode_done=0x01040472; + /** Description of the Enter button in a KeyboardView. [CHAR LIMIT=NONE] + */ + public static final int keyboardview_keycode_enter=0x01040475; + /** Description of the Mode change button in a KeyboardView. [CHAR LIMIT=NONE] + */ + public static final int keyboardview_keycode_mode_change=0x01040473; + /** Description of the Shift button in a KeyboardView. [CHAR LIMIT=NONE] + */ + public static final int keyboardview_keycode_shift=0x01040474; + /** Sequence of characters used to separate message strings in keyguard. Typically just em-dash + with spaces on either side. [CHAR LIMIT=3] + */ + public static final int kg_text_message_separator=0x010404e6; + /** Suffix added to a number to signify size in kilobytes. + */ + public static final int kilobyteShort=0x0104006b; + /** This is used to express that something has occurred within the last month + */ + public static final int last_month=0x01040323; + /** STK launch Browser + */ + public static final int launchBrowserDefault=0x010404aa; + /** [CHAR LIMIT=50] Title of the alert when application launches on top of another. + */ + public static final int launch_warning_original=0x01040368; + /** [CHAR LIMIT=50] Title of the alert when application launches on top of another. + */ + public static final int launch_warning_replace=0x01040367; + /** [CHAR LIMIT=25] Title of the alert when application launches on top of another. + */ + public static final int launch_warning_title=0x01040366; + /** Delimeter used between each item in a textual list; for example "Alpha, Beta". [CHAR LIMIT=3] + */ + public static final int list_delimeter=0x010404a8; + /** Exting lock-to-app indication. + */ + public static final int lock_to_app_exit=0x0104056c; + /** Starting lock-to-app indication. + */ + public static final int lock_to_app_start=0x0104056b; + /** Notify use that they are in Lock-to-app + */ + public static final int lock_to_app_toast=0x01040568; + /** Notify use that they are in Lock-to-app in accessibility mode + */ + public static final int lock_to_app_toast_accessible=0x01040569; + /** Notify user that they are locked in lock-to-app mode + */ + public static final int lock_to_app_toast_locked=0x0104056a; + /** Lock-to-app unlock password string + */ + public static final int lock_to_app_unlock_password=0x0104056f; + /** Lock-to-app unlock pattern string + */ + public static final int lock_to_app_unlock_pattern=0x0104056e; + /** Lock-to-app unlock pin string + */ + public static final int lock_to_app_unlock_pin=0x0104056d; + /** Accessibility description of the unlock pattern area. [CHAR_LIMIT=none] + */ + public static final int lockscreen_access_pattern_area=0x0104029c; + /** Accessibility description sent when user adds a dot to the pattern. [CHAR LIMIT=NONE] + */ + public static final int lockscreen_access_pattern_cell_added=0x01040299; + /** Accessibility description sent when user adds a dot to the pattern. Announces the + actual cell when headphones are connected [CHAR LIMIT=NONE] + */ + public static final int lockscreen_access_pattern_cell_added_verbose=0x0104029a; + /** Accessibility description sent when the pattern times out and is cleared. [CHAR LIMIT=NONE] + */ + public static final int lockscreen_access_pattern_cleared=0x01040298; + /** Accessibility description sent when user completes drawing a pattern. [CHAR LIMIT=NONE] + */ + public static final int lockscreen_access_pattern_detected=0x0104029b; + /** Accessibility description sent when user starts drawing a lock pattern. [CHAR LIMIT=NONE] + */ + public static final int lockscreen_access_pattern_start=0x01040297; + /** On the keyguard screen, it shows the carrier the phone is connected to. This is displayed if the phone is not connected to a carrier. + */ + public static final int lockscreen_carrier_default=0x01040265; + /** Button at the bottom of the unlock screen to make an emergency call or access other emergency assistance functions. + */ + public static final int lockscreen_emergency_call=0x0104026a; + /** Button at the bottom of the unlock screen that lets the user return to a call + */ + public static final int lockscreen_return_to_call=0x0104026b; + /** Shown on transport control of lockscreen. Pressing button pauses playback + */ + public static final int lockscreen_transport_pause_description=0x01040278; + /** Shown on transport control of lockscreen. Pressing button pauses playback + */ + public static final int lockscreen_transport_play_description=0x01040279; + /** If the device is getting low on internal storage, a notification is shown to the user. This is the message of that notification. + */ + public static final int low_internal_storage_view_text=0x01040343; + /** If the device does not have storage for the main system classes, a notification is shown to the user. This is the message of that notification. + */ + public static final int low_internal_storage_view_text_no_boot=0x01040344; + /** If the device is getting low on internal storage, a notification is shown to the user. This is the title of that notification. + */ + public static final int low_internal_storage_view_title=0x01040342; + /** If MMS discovers there isn't much space left on the device, it will show a toast with this message. + */ + public static final int low_memory=0x010400e8; + /** + Used to wrap a label for content description for a work profile, e.g. "Work Email" instead + of email when there are two email apps. + [CHAR LIMIT=20] + + */ + public static final int managed_profile_label_badge=0x01040561; + /** Title of the media route chooser dialog. [CHAR LIMIT=40] + */ + public static final int media_route_chooser_title=0x010404b7; + /** Title of the media route chooser dialog for selecting remote display routes. [CHAR LIMIT=40] + */ + public static final int media_route_chooser_title_for_remote_display=0x010404b8; + /** Status message for a remote route that is confirmed to be available for connection + */ + public static final int media_route_status_available=0x010404be; + /** Status message for a remote route attempting to connect + */ + public static final int media_route_status_connecting=0x010404bd; + /** Status message for a remote route that is in use (and thus unavailabe) right now + */ + public static final int media_route_status_in_use=0x010404c0; + /** Status message for remote routes that are not available for connection right now + */ + public static final int media_route_status_not_available=0x010404bf; + /** Status message for remote routes attempting to scan/determine availability + */ + public static final int media_route_status_scanning=0x010404bc; + /** Chinese Dai Pa Kai media (paper) size: 275mm x 395mm (10.827" x 15.551") + */ + public static final int mediasize_chinese_om_dai_pa_kai=0x0104052e; + /** Chinese Jurro Ku Kai media (paper) size: 275mm x 395mm (10.827" x 15.551") + */ + public static final int mediasize_chinese_om_jurro_ku_kai=0x0104052f; + /** Chinese Pa Kai media (paper) size: 146mm x 215mm (5.749" x 8.465") + */ + public static final int mediasize_chinese_om_pa_kai=0x0104052d; + /** Chinese PRC 1 media (paper) size: 102mm x 165mm (4.015" x 6.496") + */ + public static final int mediasize_chinese_prc_1=0x01040522; + /** Chinese PRC 10 media (paper) size: 324mm x 458mm (12.756" x 18.032") + */ + public static final int mediasize_chinese_prc_10=0x0104052b; + /** Chinese RPC 16K media (paper) size: 146mm x 215mm (5.749" x 8.465") + */ + public static final int mediasize_chinese_prc_16k=0x0104052c; + /** Chinese PRC 2 media (paper) size: 102mm x 176mm (4.015" x 6.929") + */ + public static final int mediasize_chinese_prc_2=0x01040523; + /** Chinese PRC 3 media (paper) size: 125mm x 176mm (4.921" x 6.929") + */ + public static final int mediasize_chinese_prc_3=0x01040524; + /** Chinese PRC 4 media (paper) size: 110mm x 208mm (4.330" x 8.189") + */ + public static final int mediasize_chinese_prc_4=0x01040525; + /** Chinese PRC 5 media (paper) size: 110mm x 220mm (4.330" x 8.661") + */ + public static final int mediasize_chinese_prc_5=0x01040526; + /** Chinese PRC 6 media (paper) size: 120mm x 320mm (4.724" x 12.599") + */ + public static final int mediasize_chinese_prc_6=0x01040527; + /** Chinese PRC 7 media (paper) size: 160mm x 230mm (6.299" x 9.055") + */ + public static final int mediasize_chinese_prc_7=0x01040528; + /** Chinese PRC 8 media (paper) size: 120mm x 309mm (4.724" x 12.165") + */ + public static final int mediasize_chinese_prc_8=0x01040529; + /** Chinese PRC 9 media (paper) size: 229mm x 324mm (9.016" x 12.756") + */ + public static final int mediasize_chinese_prc_9=0x0104052a; + /** Chinese Roc 16k media (paper) size: 195mm x 270mm (7.677" x 10.629") + */ + public static final int mediasize_chinese_roc_16k=0x01040521; + /** Chinese Roc 8k media (paper) size: 270mm x 390mm (10.629" x 15.3543") + */ + public static final int mediasize_chinese_roc_8k=0x01040520; + /** Printing + ISO (European standard) A0 media (paper) size: 33.11" × 46.81" + */ + public static final int mediasize_iso_a0=0x010404f3; + /** ISO (European standard) A1 media (paper) size: 23.39" × 33.11" + */ + public static final int mediasize_iso_a1=0x010404f4; + /** ISO (European standard) A10 media (paper) size: 1.02" x 1.46" + */ + public static final int mediasize_iso_a10=0x010404fd; + /** ISO (European standard) A2 media (paper) size: 16.54" x 23.39" + */ + public static final int mediasize_iso_a2=0x010404f5; + /** ISO (European standard) A3 media (paper) size: 11.69" x 16.54" + */ + public static final int mediasize_iso_a3=0x010404f6; + /** ISO (European standard) A4 media (paper) size: 8.27" x 11.69" + */ + public static final int mediasize_iso_a4=0x010404f7; + /** ISO (European standard) A5 media (paper) size: 5.83" x 8.27" + */ + public static final int mediasize_iso_a5=0x010404f8; + /** ISO (European standard) A6 media (paper) size: 4.13" x 5.83" + */ + public static final int mediasize_iso_a6=0x010404f9; + /** ISO (European standard) A7 media (paper) size: 2.91" x 4.13" + */ + public static final int mediasize_iso_a7=0x010404fa; + /** ISO (European standard) A8 media (paper) size: 2.05" x 2.91" + */ + public static final int mediasize_iso_a8=0x010404fb; + /** ISO (European standard) A9 media (paper) size: 1.46" x 2.05" + */ + public static final int mediasize_iso_a9=0x010404fc; + /** ISO (European standard) B0 media (paper) size: 39.37" x 55.67" + */ + public static final int mediasize_iso_b0=0x010404fe; + /** ISO (European standard) B1 media (paper) size: 27.83" x 39.37" + */ + public static final int mediasize_iso_b1=0x010404ff; + /** ISO (European standard) B10 media (paper) size: 1.22" x 1.73" + */ + public static final int mediasize_iso_b10=0x01040508; + /** ISO (European standard) B2 media (paper) size - 19.69" x 27.83" + */ + public static final int mediasize_iso_b2=0x01040500; + /** ISO (European standard) B3 media (paper) size: 13.90" x 19.69" + */ + public static final int mediasize_iso_b3=0x01040501; + /** ISO (European standard) B4 media (paper) size: 9.84" x 13.90" + */ + public static final int mediasize_iso_b4=0x01040502; + /** ISO (European standard) B5 media (paper) size: 6.93" x 9.84" + */ + public static final int mediasize_iso_b5=0x01040503; + /** ISO (European standard) B6 media (paper) size: 4.92" x 6.93" + */ + public static final int mediasize_iso_b6=0x01040504; + /** ISO (European standard) B7 media (paper) size: 3.46" x 4.92" + */ + public static final int mediasize_iso_b7=0x01040505; + /** ISO (European standard) B8 media (paper) size: 2.44" x 3.46" + */ + public static final int mediasize_iso_b8=0x01040506; + /** ISO (European standard) B9 media (paper) size: 1.73" x 2.44" + */ + public static final int mediasize_iso_b9=0x01040507; + /** ISO (European standard) C0 media (paper) size: 36.10" x 51.06" + */ + public static final int mediasize_iso_c0=0x01040509; + /** ISO (European standard) C1 media (paper) size: 25.51" x 36.10" + */ + public static final int mediasize_iso_c1=0x0104050a; + /** ISO (European standard) C10 media (paper) size: 1.10" x 1.57" + */ + public static final int mediasize_iso_c10=0x01040513; + /** ISO (European standard) C2 media (paper) size: 18.03" x 25.51" + */ + public static final int mediasize_iso_c2=0x0104050b; + /** ISO (European standard) C3 media (paper) size: 12.76" x 18.03" + */ + public static final int mediasize_iso_c3=0x0104050c; + /** ISO (European standard) C4 media (paper) size: 9.02" x 12.76" + */ + public static final int mediasize_iso_c4=0x0104050d; + /** ISO (European standard) C5 media (paper) size: 6.38" x 9.02" + */ + public static final int mediasize_iso_c5=0x0104050e; + /** ISO (European standard) C6 media (paper) size: 4.49" x 6.38" + */ + public static final int mediasize_iso_c6=0x0104050f; + /** ISO (European standard) C7 media (paper) size: 3.19" x 4.49" + */ + public static final int mediasize_iso_c7=0x01040510; + /** ISO ISO C8 media (paper) size: 2.24" x 3.19" + */ + public static final int mediasize_iso_c8=0x01040511; + /** ISO ISO C9 media (paper) size: 1.57" x 2.24" + */ + public static final int mediasize_iso_c9=0x01040512; + /** Japanese Chou2 media (paper) size: 111.1mm x 146mm (4.374" x 5.748") + */ + public static final int mediasize_japanese_chou2=0x0104053e; + /** Japanese Chou3 media (paper) size: 120mm x 235mm (4.724" x 9.252") + */ + public static final int mediasize_japanese_chou3=0x0104053d; + /** Japanese Chou4 media (paper) size: 90mm x 205mm (3.543" x 8.071") + */ + public static final int mediasize_japanese_chou4=0x0104053c; + /** Japanese Hagaki media (paper) size: 100mm x 148mm (3.937" x 5.827") + */ + public static final int mediasize_japanese_hagaki=0x0104053f; + /** Japanese JIS B0 media (paper) size: 1030mm x 1456mm (40.551" x 57.323") + */ + public static final int mediasize_japanese_jis_b0=0x0104053a; + /** Japanese JIS B1 media (paper) size: 728mm x 1030mm (28.661" x 40.551") + */ + public static final int mediasize_japanese_jis_b1=0x01040539; + /** Japanese JIS B10 media (paper) size: 32mm x 45mm (1.259" x 1.772") + */ + public static final int mediasize_japanese_jis_b10=0x01040530; + /** Japanese JIS B2 media (paper) size: 515mm x 728mm (20.276" x 28.661") + */ + public static final int mediasize_japanese_jis_b2=0x01040538; + /** Japanese JIS B3 media (paper) size: 364mm x 515mm (14.331" x 20.276") + */ + public static final int mediasize_japanese_jis_b3=0x01040537; + /** Japanese JIS B4 media (paper) size: 257mm x 364mm (10.118" x 14.331") + */ + public static final int mediasize_japanese_jis_b4=0x01040536; + /** Japanese JIS B5 media (paper) size: 182mm x 257mm (7.165" x 10.118") + */ + public static final int mediasize_japanese_jis_b5=0x01040535; + /** Japanese JIS B6 media (paper) size: 128mm x 182mm (5.049" x 7.165") + */ + public static final int mediasize_japanese_jis_b6=0x01040534; + /** Japanese JIS B7 media (paper) size: 91mm x 128mm (3.583" x 5.049") + */ + public static final int mediasize_japanese_jis_b7=0x01040533; + /** Japanese JIS B8 media (paper) size: 64mm x 91mm (2.52" x 3.583") + */ + public static final int mediasize_japanese_jis_b8=0x01040532; + /** Japanese JIS B9 media (paper) size: 45mm x 64mm (1.772" x 2.52") + */ + public static final int mediasize_japanese_jis_b9=0x01040531; + /** Japanese JIS Exec media (paper) size: 216mm x 330mm (8.504" x 12.992") + */ + public static final int mediasize_japanese_jis_exec=0x0104053b; + /** Japanese Kahu media (paper) size: 240mm x 322.1mm (9.449" x 12.681") + */ + public static final int mediasize_japanese_kahu=0x01040541; + /** Japanese Kaku2 media (paper) size: 240mm x 332mm (9.449" x 13.071") + */ + public static final int mediasize_japanese_kaku2=0x01040542; + /** Japanese Oufuku media (paper) size: 148mm x 200mm (5.827" x 7.874") + */ + public static final int mediasize_japanese_oufuku=0x01040540; + /** Japanese You4 media (paper) size: 105mm x 235mm (4.134" x 9.252") + */ + public static final int mediasize_japanese_you4=0x01040543; + /** North America Foolscap media (paper) size: 8" x 13" (203mm x 330mm) + */ + public static final int mediasize_na_foolscap=0x0104051f; + /** North America Government Letter media (paper) size: 8.0" × 10.5" (203mm x 267mm) + */ + public static final int mediasize_na_gvrnmt_letter=0x01040515; + /** North America Index Card 3x5 media (paper) size: 3" x 5" (76mm x 127mm) + */ + public static final int mediasize_na_index_3x5=0x0104051a; + /** North America Index Card 4x6 media (paper) size: 4" x 6" (102mm x 152mm) + */ + public static final int mediasize_na_index_4x6=0x0104051b; + /** North America Index Card 5x8 media (paper) size: 5" x 8" (127mm x 203mm) + */ + public static final int mediasize_na_index_5x8=0x0104051c; + /** North America Junior Legal media (paper) size: 8.0" × 5.0" (203mm × 127mm) + */ + public static final int mediasize_na_junior_legal=0x01040517; + /** North America Ledger media (paper) size: 17" × 11" (432mm × 279mm) + */ + public static final int mediasize_na_ledger=0x01040518; + /** North America Legal media (paper) size: 8.5" × 14" (216mm x 356mm) + */ + public static final int mediasize_na_legal=0x01040516; + /** North America Letter media (paper) size: 8.5" × 11" (279mm x 216mm) + */ + public static final int mediasize_na_letter=0x01040514; + /** North America Monarch media (paper) size: 7.25" x 10.5" (184mm x 267mm) + */ + public static final int mediasize_na_monarch=0x0104051d; + /** North America Quarto media (paper) size: 8" x 10" (203mm x 254mm) + */ + public static final int mediasize_na_quarto=0x0104051e; + /** North America Tabloid media (paper) size: 11" × 17" (279mm × 432mm) + */ + public static final int mediasize_na_tabloid=0x01040519; + /** Media (paper) size for specifying any paper size in landscape. + */ + public static final int mediasize_unknown_landscape=0x01040545; + /** Media (paper) size for specifying any paper size in portrait. + */ + public static final int mediasize_unknown_portrait=0x01040544; + /** Suffix added to a number to signify size in megabytes. + */ + public static final int megabyteShort=0x0104006c; + /** Title for the dialog used to display the user's MEID number on CDMA network + [CHAR LIMIT=10] + */ + public static final int meid=0x0104008f; + /** Displayed in place of the regular shortcut letter when a menu item has Menu+delete for the shortcut. + */ + public static final int menu_delete_shortcut_label=0x01040318; + /** Displayed in place of the regular shortcut letter when a menu item has Menu+enter for the shortcut. + */ + public static final int menu_enter_shortcut_label=0x01040317; + /** Displayed in place of the regular shortcut letter when a menu item has Menu+space for the shortcut. + */ + public static final int menu_space_shortcut_label=0x01040316; + /** Quoted name for 12am, lowercase + */ + public static final int midnight=0x01040337; + /** + Content description for the minute selector in the time picker, which displays + selectable five-minute intervals along the inside edge of a circle, as in an analog clock. + [CHAR LIMIT=50] + + */ + public static final int minute_picker_description=0x0104055b; + /** Displayed when SIM PIN passwords are entered inconsistently. + */ + public static final int mismatchPin=0x01040088; + /** Displayed when a phone feature triggered by an MMI code is complete. + */ + public static final int mmiComplete=0x01040085; + /** Displayed when the user dialed an MMI code whose function + could not be performed. This will be displayed in a toast. + */ + public static final int mmiError=0x0104007d; + /** Displayed when the user dialed an MMI code whose function + could not be performed because FDN is enabled. This will be displayed in a toast. + */ + public static final int mmiFdnError=0x0104007e; + /** The default mobile provisioning apn. Empty by default, maybe overridden by + an mcc/mnc specific config.xml + */ + public static final int mobile_provisioning_apn=0x0104002f; + /** The default mobile provisioning url. Empty by default, maybe overridden by + an mcc/mnc specific config.xml + */ + public static final int mobile_provisioning_url=0x01040030; + public static final int month_day_year=0x01040053; + /** Menu item displayed at the end of a menu to allow users to see another page worth of menu items. This is shown on any app's menu as long as the app has too many items in the menu. + */ + public static final int more_item_label=0x01040314; + /** Indication that the current volume and other effects (vibration) are being suppressed by a third party, such as a notification listener. [CHAR LIMIT=30] + */ + public static final int muted_by=0x0104057f; + /** Displayed to prompt the user to type the PUK password to unlock + the SIM card. + */ + public static final int needPuk=0x0104008b; + public static final int needPuk2=0x0104008c; + /** A notification is shown when a captive portal network is detected. This is the notification's title. + */ + public static final int network_available_sign_in=0x01040396; + /** A notification is shown when a captive portal network is detected. This is the notification's message. + */ + public static final int network_available_sign_in_detailed=0x01040397; + public static final int new_app_action=0x0104037b; + public static final int new_app_description=0x0104037c; + /** Preference framework strings. + */ + public static final int no=0x01040009; + /** Text to display when there are no activities found to display in the + activity chooser. See the "Select an action" title. + */ + public static final int noApplications=0x01040359; + /** Label for the file upload control when no file has been chosen yet + */ + public static final int no_file_chosen=0x0104043d; + /** Displayed on the Find dialog when there are no matches [CHAR LIMIT=NONE] + */ + public static final int no_matches=0x01040447; + /** Quoted name for 12pm, lowercase + */ + public static final int noon=0x01040335; + /** Ellipsis character to appear in notification templates, e.g. + notification_template_material_inbox.xml. + DO NOT TRANSLATE + */ + public static final int notification_inbox_ellipsis=0x0104058e; + /** Label to show for a service that is running because it is observing + the user's notifications. + */ + public static final int notification_listener_binding_label=0x01040431; + /** A notification is shown when the AccountManager is unable to + supply an auth token without prompting the user to re-enter the + password. This is the text that will scroll through the + notification bar (will be seen by the user as he uses another application). + */ + public static final int notification_title=0x010400e4; + /** Description of the scrolling action in NumberPicker. [CHAR LIMIT=NONE] + */ + public static final int number_picker_increment_scroll_action=0x01040460; + /** Description of the tap and hold action to get into scroll mode in NumberPicker. [CHAR LIMIT=NONE] + */ + public static final int number_picker_increment_scroll_mode=0x0104045f; + /** Preference framework strings. + */ + public static final int ok=0x0104000a; + public static final int old_app_action=0x01040379; + public static final int old_app_description=0x0104037a; + /** This is used to express that something happened longer ago than the previous options + */ + public static final int older=0x01040324; + /** Displayed to the user when they do not have permission to open a particular web page. + */ + public static final int open_permission_deny=0x01040312; + /** Custom organization type + */ + public static final int orgTypeCustom=0x01040246; + /** Other organization type + */ + public static final int orgTypeOther=0x01040245; + /** Work organization type + */ + public static final int orgTypeWork=0x01040244; + /** Default name of the owner user [CHAR LIMIT=20] + */ + public static final int owner_name=0x010404ee; + /** Notification shown when device owner silently deletes a package [CHAR LIMIT=NONE] + */ + public static final int package_deleted_device_owner=0x01040572; + /** Notification shown when device owner silently installs a package [CHAR LIMIT=NONE] + */ + public static final int package_installed_device_owner=0x01040570; + /** Notification shown when device owner silently updates a package [CHAR LIMIT=NONE] + */ + public static final int package_updated_device_owner=0x01040571; + /** Displayed when a SIM password was entered incorrectly. + */ + public static final int passwordIncorrect=0x01040084; + /** Item on EditText context menu. This action is used to paste from the clipboard into the eidt field + */ + public static final int paste=0x0104000b; + /** Displayed to tell the user that peer changed TTY mode + */ + public static final int peerTtyModeFull=0x010400ae; + public static final int peerTtyModeHco=0x010400af; + public static final int peerTtyModeOff=0x010400b1; + public static final int peerTtyModeVco=0x010400b0; + public static final int permission_request_notification_with_subtitle=0x01040429; + /** Text that is placed at the front of a permission name that is being added to an app [CHAR LIMIT=NONE] + */ + public static final int perms_description_app=0x010403c7; + /** Security Permissions strings + Text that is placed at the front of a permission name that is being added to an app [CHAR LIMIT=NONE] + */ + public static final int perms_new_perm_prefix=0x010403c6; + /** Suffix added to a number to signify size in petabytes. + */ + public static final int petabyteShort=0x0104006f; + /** Assistant phone number type + */ + public static final int phoneTypeAssistant=0x01040227; + /** Callback phone number type + */ + public static final int phoneTypeCallback=0x0104021c; + /** Car phone number type + */ + public static final int phoneTypeCar=0x0104021d; + /** Company main phone number type + */ + public static final int phoneTypeCompanyMain=0x0104021e; + /** Custom phone number type + */ + public static final int phoneTypeCustom=0x01040214; + /** Home fax phone number type + */ + public static final int phoneTypeFaxHome=0x01040219; + /** Work fax phone number type + */ + public static final int phoneTypeFaxWork=0x01040218; + /** Home phone number type + */ + public static final int phoneTypeHome=0x01040215; + /** ISDN phone number type + */ + public static final int phoneTypeIsdn=0x0104021f; + /** Main phone number type + */ + public static final int phoneTypeMain=0x01040220; + /** MMS phone number type + */ + public static final int phoneTypeMms=0x01040228; + /** Mobile phone number type + */ + public static final int phoneTypeMobile=0x01040216; + /** Other phone number type + */ + public static final int phoneTypeOther=0x0104021b; + /** Other fax phone number type + */ + public static final int phoneTypeOtherFax=0x01040221; + /** Pager phone number type + */ + public static final int phoneTypePager=0x0104021a; + /** Radio phone number type + */ + public static final int phoneTypeRadio=0x01040222; + /** Telex phone number type + */ + public static final int phoneTypeTelex=0x01040223; + /** TTY TDD phone number type + */ + public static final int phoneTypeTtyTdd=0x01040224; + /** Work phone number type + */ + public static final int phoneTypeWork=0x01040217; + /** Work mobile phone number type + */ + public static final int phoneTypeWorkMobile=0x01040225; + /** Work pager phone number type + */ + public static final int phoneTypeWorkPager=0x01040226; + /** Description of policy access to disable all device cameras [CHAR LIMIT=110] + */ + public static final int policydesc_disableCamera=0x01040211; + /** Description of policy access to disable keyguard features. [CHAR LIMIT=110] + */ + public static final int policydesc_disableKeyguardFeatures=0x01040213; + /** Description of policy access to require encrypted storage [CHAR LIMIT=110] + */ + public static final int policydesc_encryptedStorage=0x0104020f; + /** Description of policy access to enforce password expiration [CHAR LIMIT=110] + */ + public static final int policydesc_expirePassword=0x0104020d; + /** Description of policy access to limiting the user's password choices + */ + public static final int policydesc_forceLock=0x01040205; + /** Description of policy access to limiting the user's password choices + */ + public static final int policydesc_limitPassword=0x010401fe; + /** Description of policy access to reset user's password + */ + public static final int policydesc_resetPassword=0x01040203; + /** Description of policy access to set global proxy + */ + public static final int policydesc_setGlobalProxy=0x0104020b; + /** Description of policy access to watch user login attempts + */ + public static final int policydesc_watchLogin=0x01040200; + public static final int policydesc_watchLogin_secondaryUser=0x01040201; + /** Description of policy access to wipe the user's data + */ + public static final int policydesc_wipeData=0x01040207; + /** Description of policy access to wipe the user's data + */ + public static final int policydesc_wipeData_secondaryUser=0x01040209; + /** Title of policy access to disable all device cameras [CHAR LIMIT=30] + */ + public static final int policylab_disableCamera=0x01040210; + /** Title of policy access to disable keyguard features [CHAR LIMIT=30] + */ + public static final int policylab_disableKeyguardFeatures=0x01040212; + /** Title of policy access to require encrypted storage [CHAR LIMIT=30] + */ + public static final int policylab_encryptedStorage=0x0104020e; + /** Title of policy access to enforce password expiration [CHAR LIMIT=50] + */ + public static final int policylab_expirePassword=0x0104020c; + /** Title of policy access to force lock the device + */ + public static final int policylab_forceLock=0x01040204; + /** Policy administration + Title of policy access to limiting the user's password choices + */ + public static final int policylab_limitPassword=0x010401fd; + /** Title of policy access to reset user's password + */ + public static final int policylab_resetPassword=0x01040202; + /** Title of policy access to set global proxy + */ + public static final int policylab_setGlobalProxy=0x0104020a; + /** Title of policy access to watch user login attempts + */ + public static final int policylab_watchLogin=0x010401ff; + /** Title of policy access to wipe primary user's data + */ + public static final int policylab_wipeData=0x01040206; + /** Title of policy access to wipe secondary user's data + */ + public static final int policylab_wipeData_secondaryUser=0x01040208; + /** Custom postal address type + */ + public static final int postalTypeCustom=0x01040232; + /** Home postal address type + */ + public static final int postalTypeHome=0x01040233; + /** Other postal address type + */ + public static final int postalTypeOther=0x01040235; + /** Work postal address type + */ + public static final int postalTypeWork=0x01040234; + /** Button to turn off the phone, within the Phone Options dialog + */ + public static final int power_off=0x010400f9; + /** Prepended to the shortcut for a menu item to indicate that the user should hold the MENU button together with the shortcut to invoke the item. For example, if the shortcut to open a new tab in browser is MENU and B together, then this would be prepended to the letter "B" + */ + public static final int prepend_shortcut_label=0x01040315; + /** String used to display the date. Preposition for date display ("on May 29") + */ + public static final int preposition_for_date=0x01040325; + /** String used to display the date. Preposition for time display ("at 2:33am") + */ + public static final int preposition_for_time=0x01040326; + /** Message for the notification that a print service was installed. [CHAR LIMIT=50] + */ + public static final int print_service_installed_message=0x0104054b; + /** Title for the notification that a print service was installed. [CHAR LIMIT=50] + */ + public static final int print_service_installed_title=0x0104054a; + /** Text for progress dialog while erasing SD card [CHAR LIMIT=NONE] + */ + public static final int progress_erasing=0x0104044a; + public static final int prohibit_manual_network_selection_in_gobal_mode=0x0104004d; + /** Error message that is displayed when the user clicks on a quick contacts badge, but + there is no contacts application installed that can display the quick contact + */ + public static final int quick_contacts_not_available=0x0104025a; + /** DO NOT TRANSLATE + */ + public static final int radial_numbers_typeface=0x01040563; + /** Print fail reason: the print service that has to process the print job is not available. [CHAR LIMIT=none] + */ + public static final int reason_service_unavailable=0x01040549; + /** Print fail reason: unknown. [CHAR LIMIT=25] + */ + public static final int reason_unknown=0x01040548; + /** Shutdown Confirmation Dialog. Message in the confirmation dialog + when the user asks to reboot into safe mode. [CHAR LIMIT=NONE] + */ + public static final int reboot_safemode_confirm=0x01040107; + /** Title of dialog to confirm rebooting into safe mode. [CHAR LIMIT=50] + */ + public static final int reboot_safemode_title=0x01040106; + public static final int reboot_to_reset_message=0x01040102; + /** Reboot to Recovery for factory reset. + */ + public static final int reboot_to_reset_title=0x01040101; + public static final int reboot_to_update_package=0x010400ff; + public static final int reboot_to_update_prepare=0x010400fe; + public static final int reboot_to_update_reboot=0x01040100; + /** Reboot to Recovery Progress Dialog. This is shown before it reboots to recovery. + */ + public static final int reboot_to_update_title=0x010400fd; + /** Assistant relationship type [CHAR LIMIT=20] + */ + public static final int relationTypeAssistant=0x01040248; + /** Brother relationship type [CHAR LIMIT=20] + */ + public static final int relationTypeBrother=0x01040249; + /** Child relationship type [CHAR LIMIT=20] + */ + public static final int relationTypeChild=0x0104024a; + /** Domestic Partner relationship type [CHAR LIMIT=20] + */ + public static final int relationTypeDomesticPartner=0x0104024b; + /** Father relationship type [CHAR LIMIT=20] + */ + public static final int relationTypeFather=0x0104024c; + /** Friend relationship type [CHAR LIMIT=20] + */ + public static final int relationTypeFriend=0x0104024d; + /** Manager relationship type [CHAR LIMIT=20] + */ + public static final int relationTypeManager=0x0104024e; + /** Mother relationship type [CHAR LIMIT=20] + */ + public static final int relationTypeMother=0x0104024f; + /** Parent relationship type [CHAR LIMIT=20] + */ + public static final int relationTypeParent=0x01040250; + /** Partner relationship type [CHAR LIMIT=20] + */ + public static final int relationTypePartner=0x01040251; + /** Referred by relationship type [CHAR LIMIT=20] + */ + public static final int relationTypeReferredBy=0x01040252; + /** Relative relationship type [CHAR LIMIT=20] + */ + public static final int relationTypeRelative=0x01040253; + /** Sister relationship type [CHAR LIMIT=20] + */ + public static final int relationTypeSister=0x01040254; + /** Spouse relationship type [CHAR LIMIT=20] + */ + public static final int relationTypeSpouse=0x01040255; + /** Format indicating a relative expression and time. + Example: "4 hours ago, 11:00 am" + */ + public static final int relative_time=0x01040334; + /** Item on EditText context menu. This action is used to replace the current word by other suggested words, suggested by the IME or the spell checker + */ + public static final int replace=0x0104033b; + /** Button allowing the user to send a bug report for application which has encountered an error. + */ + public static final int report=0x01040363; + /** Label for button in html + */ + public static final int reset=0x0104043e; + /** PIN entry dialog title for entering the administrator PIN [CHAR LIMIT=none] + */ + public static final int restr_pin_enter_admin_pin=0x0104054c; + /** PIN entry dialog label/hint for PIN [CHAR LIMIT=none] + */ + public static final int restr_pin_enter_pin=0x0104054d; + /** PIN entry dialog label/hint for incorrect PIN entry [CHAR LIMIT=none] + */ + public static final int restr_pin_incorrect=0x0104054e; + /** PIN entry dialog tells the user to not enter a PIN for a while. [CHAR LIMIT=none] + */ + public static final int restr_pin_try_later=0x01040555; + public static final int revoke=0x010404f2; + /** Choice in the ringtone picker. If chosen, the default ringtone will be used. + */ + public static final int ringtone_default=0x01040390; + /** Choice in the ringtone picker. If chosen, the default ringtone will be used. This fills in the actual ringtone's title into the message. + */ + public static final int ringtone_default_with_actual=0x01040391; + /** The title of the ringtone picker dialog. + */ + public static final int ringtone_picker_title=0x01040393; + /** Choice in the ringtone picker. If chosen, there will be silence instead of a ringtone played. + */ + public static final int ringtone_silent=0x01040392; + /** If there is ever a ringtone set for some setting, but that ringtone can no longer be resolved, t his is shown instead. For example, if the ringtone was on a SD card and it had been removed, this woudl be shown for ringtones on that SD card. + */ + public static final int ringtone_unknown=0x01040394; + /** Default roaming indicator text + */ + public static final int roamingText0=0x010400ba; + public static final int roamingText1=0x010400bb; + public static final int roamingText10=0x010400c4; + public static final int roamingText11=0x010400c5; + public static final int roamingText12=0x010400c6; + public static final int roamingText2=0x010400bc; + public static final int roamingText3=0x010400bd; + public static final int roamingText4=0x010400be; + public static final int roamingText5=0x010400bf; + public static final int roamingText6=0x010400c0; + public static final int roamingText7=0x010400c1; + public static final int roamingText8=0x010400c2; + public static final int roamingText9=0x010400c3; + public static final int roamingTextSearching=0x010400c7; + /** Message shown in dialog when user is attempting to set the music volume above the + recommended maximum level for headphones + */ + public static final int safe_media_volume_warning=0x010404e8; + /** DO NOT TRANSLATE + */ + public static final int sans_serif=0x01040564; + /** Title of the WebView save password dialog. If the user enters a password in a form on a website, a dialog will come up asking if they want to save the password. + */ + public static final int save_password_label=0x010402c7; + /** If the user enters a password in a form on a website, a dialog will come up asking if they want to save the password. Text in the save password dialog, asking if the browser should remember a password. + */ + public static final int save_password_message=0x0104030e; + /** Button in the save password dialog, saying never to remember this password. This should be short. Should be "Never for this site". But it is too long, use "Never" instead + */ + public static final int save_password_never=0x01040311; + /** If the user enters a password in a form on a website, a dialog will come up asking if they want to save the password. Button in the save password dialog, saying not to remember this password. + */ + public static final int save_password_notnow=0x0104030f; + /** If the user enters a password in a form on a website, a dialog will come up asking if they want to save the password. Button in the save password dialog, saying to remember this password. + */ + public static final int save_password_remember=0x01040310; + /** This is the default button label in the system-wide search UI. + It is also used by the home screen's search "widget". It should be short + */ + public static final int search_go=0x0104000c; + /** Item on EditText context menu. This action is used to select all text in the edit field. + */ + public static final int selectAll=0x0104000d; + /** Item on EditText context menu. Added only when the context menu is not empty, it enable selection context mode. [CHAR LIMIT=20] + */ + public static final int selectTextMode=0x01040016; + /** Accessibility announcement for the day picker [CHAR LIMIT=NONE] + */ + public static final int select_day=0x0104055e; + /** Accessibility announcement for hour circular picker [CHAR LIMIT=NONE] + */ + public static final int select_hours=0x0104055c; + /** Title of the pop-up dialog in which the user switches keyboard, also known as input method. + */ + public static final int select_input_method=0x010403e4; + /** Message of the notification to prompt the user to select a keyboard layout. + */ + public static final int select_keyboard_layout_notification_message=0x010403e9; + /** Title of the notification to prompt the user to select a keyboard layout. + */ + public static final int select_keyboard_layout_notification_title=0x010403e8; + /** Accessibility announcement for minute circular picker [CHAR LIMIT=NONE] + */ + public static final int select_minutes=0x0104055d; + /** Accessibility announcement for the year picker [CHAR LIMIT=NONE] + */ + public static final int select_year=0x0104055f; + /** Displayed in the title of the chooser for things to do with text that + is to be sent to another application. For example, I can send + text through SMS or IM. A dialog with those choices would be shown, + and this would be the title. + */ + public static final int sendText=0x01040381; + /** STK sending DTMF, SMS, USSD, SS + */ + public static final int sending=0x010404a9; + /** Example: Service was enabled for: Voice, Data + */ + public static final int serviceClassData=0x010400b3; + /** Meaning: asynchronous data. Example: Service was enabled for: Voice, Async + */ + public static final int serviceClassDataAsync=0x010400b6; + /** Meaning: synchronous data. Example: Service was enabled for: Voice, Async + */ + public static final int serviceClassDataSync=0x010400b7; + /** Example: Service was enabled for: Voice, FAX + */ + public static final int serviceClassFAX=0x010400b4; + /** Meaning: unknown. Example: Service was enabled for: Voice, PAD + */ + public static final int serviceClassPAD=0x010400b9; + /** Meaning: packet data. Example: Service was enabled for: Voice, Packet + */ + public static final int serviceClassPacket=0x010400b8; + /** Example: Service was enabled for: Voice, SMS + */ + public static final int serviceClassSMS=0x010400b5; + /** Example: Service was enabled for: Voice, Data + */ + public static final int serviceClassVoice=0x010400b2; + /** Displayed when a phone feature such as call forwarding was deactivated. + */ + public static final int serviceDisabled=0x01040081; + /** Displayed when a phone feature such as call barring was activated. + */ + public static final int serviceEnabled=0x0104007f; + /** Displayed in front of the list of a set of service classes + (voice, data, fax, etc.) that were enabled. + */ + public static final int serviceEnabledFor=0x01040080; + /** Displayed when a phone property such as a SIM password was erased. + */ + public static final int serviceErased=0x01040083; + /** Displayed to tell the user that caller ID is not provisioned for their SIM. + */ + public static final int serviceNotProvisioned=0x010400a3; + /** Displayed when a phone property such as a SIM password was registered. + */ + public static final int serviceRegistered=0x01040082; + /** Text to show in the auto complete drop down list on a text view when the WebView can auto fill the entire form but the user has not configured an AutoFill profile [CHAR-LIMIT=19] + */ + public static final int setup_autofill=0x010402ca; + /** Text for WebView's text selection Action Mode + ActionBar action to share the current selection [CHAR LIMIT=10] + */ + public static final int share=0x0104044b; + /** ShareActionProvider - accessibility support + Description of the choose target button in a ShareActionProvider (share UI). [CHAR LIMIT=NONE] + */ + public static final int shareactionprovider_share_with=0x01040478; + /** Description of a share target (both in the list of such or the default share button) in a ShareActionProvider (share UI). [CHAR LIMIT=NONE] + */ + public static final int shareactionprovider_share_with_application=0x01040479; + /** Shutdown Confirmation Dialog. When the user chooses to power off the phone, there will + be a confirmation dialog. This is the message. + */ + public static final int shutdown_confirm=0x01040104; + /** Shutdown Confirmation Dialog. When the user chooses to power off the phone, it asks + the user if they'd like to shut down. This is the message. This is used instead of + shutdown_confirm when the system is configured to use long press to go directly to the + power off dialog instead of the global actions menu. + */ + public static final int shutdown_confirm_question=0x01040105; + /** Shutdown Progress Dialog. This is shown if the user chooses to power off the phone. + */ + public static final int shutdown_progress=0x01040103; + /** See SIM_ADDED_DIALOG. This is the message of that dialog. + */ + public static final int sim_added_message=0x010403c0; + /** See SIM_ADDED_DIALOG. This is the title of that dialog. + */ + public static final int sim_added_title=0x010403bf; + /** See SIM_REMOVED_DIALOG. This is the message of that dialog. + */ + public static final int sim_removed_message=0x010403bd; + /** See SIM_REMOVED_DIALOG. This is the title of that dialog. + */ + public static final int sim_removed_title=0x010403bc; + /** See SIM_ADDED_DIALOG. This is the button of that dialog. + */ + public static final int sim_restart_button=0x010403c1; + /** Custom SIP address type. Same context as Custom phone type. + */ + public static final int sipAddressTypeCustom=0x01040256; + /** Home SIP address type. Same context as Home phone type. + */ + public static final int sipAddressTypeHome=0x01040257; + /** Other SIP address type. Same context as Other phone type. + */ + public static final int sipAddressTypeOther=0x01040259; + /** Work SIP address type. Same context as Work phone type. + */ + public static final int sipAddressTypeWork=0x01040258; + /** See SMS_DIALOG. This is the message shown in that dialog. [CHAR LIMIT=NONE] + */ + public static final int sms_control_message=0x010403b0; + /** See SMS_DIALOG. This is a button choice to disallow sending the SMSes. [CHAR LIMIT=30] + */ + public static final int sms_control_no=0x010403b2; + /** SMS_DIALOG: An SMS dialog is shown if an application tries to send too many SMSes. This is the title of that dialog. + */ + public static final int sms_control_title=0x010403af; + /** See SMS_DIALOG. This is a button choice to allow sending the SMSes. [CHAR LIMIT=30] + */ + public static final int sms_control_yes=0x010403b1; + /** Message details for the SMS short code confirmation dialog (premium short code). [CHAR LIMIT=NONE] + */ + public static final int sms_premium_short_code_details=0x010403b5; + /** Text of the approval button for the SMS short code confirmation dialog. [CHAR LIMIT=30] + */ + public static final int sms_short_code_confirm_allow=0x010403b6; + /** Text of the approval button for the SMS short code confirmation dialog when checkbox is checked. [CHAR LIMIT=30] + */ + public static final int sms_short_code_confirm_always_allow=0x010403ba; + /** Text of the cancel button for the SMS short code confirmation dialog. [CHAR LIMIT=30] + */ + public static final int sms_short_code_confirm_deny=0x010403b7; + /** The message text for the SMS short code confirmation dialog. [CHAR LIMIT=NONE] + */ + public static final int sms_short_code_confirm_message=0x010403b3; + /** Text of the cancel button for the SMS short code confirmation dialog when checkbox is checked. [CHAR LIMIT=30] + */ + public static final int sms_short_code_confirm_never_allow=0x010403bb; + /** Message details for the SMS short code confirmation dialog (possible premium short code). [CHAR LIMIT=NONE] + */ + public static final int sms_short_code_details=0x010403b4; + /** Text shown when remember checkbox is checked to inform the user how they may undo the setting. [CHAR LIMIT=40] + */ + public static final int sms_short_code_remember_undo_instruction=0x010403b9; + /** Text of the alert that is displayed when an application has violated StrictMode. + */ + public static final int smv_application=0x0104036c; + /** Text of the alert that is displayed when an application has violated StrictMode. + */ + public static final int smv_process=0x0104036d; + /** Content text for a notification. The Title of the notification is "ssl_ca_cert_warning", + i.e. "Network may be monitored". This indicates that an unspecified administrator is doing + the monitoring. [CHAR LIMIT=100] + */ + public static final int ssl_ca_cert_noti_by_administrator=0x010400eb; + /** Content text for a notification. The Title of the notification is "ssl_ca_cert_warning", + i.e. "Network may be monitored". This says that an unknown party is doing the monitoring. + [CHAR LIMIT=100] + */ + public static final int ssl_ca_cert_noti_by_unknown=0x010400ea; + /** Content text for a notification. The Title of the notification is "ssl_ca_cert_warning", + i.e. "Network may be monitored". This indicates who is doing the monitoring. + [CHAR LIMIT=100] + */ + public static final int ssl_ca_cert_noti_managed=0x010400ec; + /** Shows up when there is a user SSL CA Cert installed on the + device. Indicates to the user that SSL traffic can be intercepted. [CHAR LIMIT=NONE] + */ + public static final int ssl_ca_cert_warning=0x010400e9; + /** SSL Certificate dialogs + Title for an SSL Certificate dialog + */ + public static final int ssl_certificate=0x01040497; + /** Message on an SSL Certificate dialog + */ + public static final int ssl_certificate_is_valid=0x01040498; + /** Text to use when the number in a notification info is too large + (greater than status_bar_notification_info_maxnum, defined in + values/config.xml) and must be truncated. May need to be localized + for most appropriate textual indicator of "more than X". + [CHAR LIMIT=4] + */ + public static final int status_bar_notification_info_overflow=0x01040017; + public static final int stk_cc_ss_to_dial=0x01040585; + public static final int stk_cc_ss_to_ss=0x01040587; + public static final int stk_cc_ss_to_ussd=0x01040586; + /** Displayed when the USSD/SS request is modified by STK CC to a + different request. This will be displayed in a toast. + */ + public static final int stk_cc_ussd_to_dial=0x01040582; + public static final int stk_cc_ussd_to_ss=0x01040583; + public static final int stk_cc_ussd_to_ussd=0x01040584; + /** Storage description for internal storage. [CHAR LIMIT=NONE] + */ + public static final int storage_internal=0x01040483; + /** Storage description for a generic SD card. [CHAR LIMIT=NONE] + */ + public static final int storage_sd_card=0x01040484; + /** Storage description for a SD card from a specific manufacturer. [CHAR LIMIT=NONE] + */ + public static final int storage_sd_card_label=0x01040485; + /** Storage description for USB storage. [CHAR LIMIT=NONE] + */ + public static final int storage_usb=0x01040488; + /** Storage description for a generic USB drive. [CHAR LIMIT=NONE] + */ + public static final int storage_usb_drive=0x01040486; + /** Storage description for a USB drive from a specific manufacturer. [CHAR LIMIT=NONE] + */ + public static final int storage_usb_drive_label=0x01040487; + /** Label for button in html + */ + public static final int submit=0x0104043f; + /** Label to show for a service that is running because it is a sync adapter. + */ + public static final int sync_binding_label=0x0104042d; + /** Dialog action for when there are too many deletes that would take place and we want user confirmation, and the user wants to do nothing for now + */ + public static final int sync_do_nothing=0x01040459; + /** Dialog action for when there are too many deletes that would take place and we want user confirmation, and the user wants to delete the items + */ + public static final int sync_really_delete=0x01040457; + /** Dialog message for when there are too many deletes that would take place and we want user confirmation + */ + public static final int sync_too_many_deletes_desc=0x01040456; + /** Dialog action for when there are too many deletes that would take place and we want user confirmation, and the user wants to undo the deletions + */ + public static final int sync_undo_deletes=0x01040458; + /** Error message shown when there is a system error which can be solved by the manufacturer. [CHAR LIMIT=NONE] + */ + public static final int system_error_manufacturer=0x01040581; + /** Error message shown when there is a system error which can be solved by user performing factory reset. [CHAR LIMIT=NONE] + */ + public static final int system_error_wipe_data=0x01040580; + /** @hide DO NOT TRANSLATE. date formatting pattern for system ui. + */ + public static final int system_ui_date_pattern=0x0104005d; + /** Suffix added to a number to signify size in terabytes. + */ + public static final int terabyteShort=0x0104006e; + public static final int tethered_notification_message=0x01040443; + /** Strings for tethered notification + Shown when the device is tethered + */ + public static final int tethered_notification_title=0x01040442; + /** Text selection contextual mode title, displayed in the CAB. [CHAR LIMIT=20] + */ + public static final int textSelectionCABTitle=0x0104033d; + /** Displayed to the user to confirm that they have copied text from a web page to the clipboard. + */ + public static final int text_copied=0x01040313; + public static final int time_of_day=0x01040054; + /** Description of the button to decrease the TimePicker's hour value. [CHAR LIMIT=NONE] + */ + public static final int time_picker_decrement_hour_button=0x01040464; + /** Description of the button to decrease the TimePicker's minute value. [CHAR LIMIT=NONE] + */ + public static final int time_picker_decrement_minute_button=0x01040462; + /** Description of the button to decrease the TimePicker's set AM value. [CHAR LIMIT=NONE] + */ + public static final int time_picker_decrement_set_am_button=0x01040466; + /** Date/Time picker dialogs strings + The title of the time picker dialog. [CHAR LIMIT=NONE] + */ + public static final int time_picker_dialog_title=0x010403c2; + /** Description of the button to increase the TimePicker's hour value. [CHAR LIMIT=NONE] + */ + public static final int time_picker_increment_hour_button=0x01040463; + /** TimePicker - accessibility support + Description of the button to increase the TimePicker's minute value. [CHAR LIMIT=NONE] + */ + public static final int time_picker_increment_minute_button=0x01040461; + /** Description of the button to increase the TimePicker's set PM value. [CHAR LIMIT=NONE] + */ + public static final int time_picker_increment_set_pm_button=0x01040465; + /** DO NOT TRANSLATE + */ + public static final int time_placeholder=0x01040562; + /** How to display the lack of a name + */ + public static final int unknownName=0x0104000e; + /** Used in Contacts for a field that has no label and in Note Pad + for a note with no name. + */ + public static final int untitled=0x0104000f; + /** Localized strings for WebView + Label for button in a WebView that will open a chooser to choose a file to upload + */ + public static final int upload_file=0x0104043c; + /** USB_PREFERENCES: Notification for when a USB accessory is attached. This is the title + */ + public static final int usb_accessory_notification_title=0x010403df; + /** USB_PREFERENCES: Notification for when the user connected to the charger only. This is the title + */ + public static final int usb_charging_notification_title=0x010403db; + /** USB_PREFERENCES: Notification for when the user connects the phone to a computer via USB in MIDI mode. This is the title + */ + public static final int usb_midi_notification_title=0x010403de; + /** Manufacturer name for USB MIDI Peripheral port + */ + public static final int usb_midi_peripheral_manufacturer_name=0x0104058a; + /** User visible name for USB MIDI Peripheral port + */ + public static final int usb_midi_peripheral_name=0x01040589; + /** Product name for USB MIDI Peripheral port + */ + public static final int usb_midi_peripheral_product_name=0x0104058b; + /** USB_PREFERENCES: Notification for when the user connects the phone to a computer via USB in MTP mode. This is the title + */ + public static final int usb_mtp_notification_title=0x010403dc; + /** See USB_PREFERENCES. This is the message. + */ + public static final int usb_notification_message=0x010403e0; + /** USB_PREFERENCES: Notification for when the user connects the phone to a computer via USB in PTP mode. This is the title + */ + public static final int usb_ptp_notification_title=0x010403dd; + /** See USB_STORAGE_DIALOG. If there was an error mounting, this is the text. + */ + public static final int usb_storage_error_message=0x010403ce; + /** See USB_STORAGE. This is the message. [CHAR LIMIT=NONE] + */ + public static final int usb_storage_message=0x010403cc; + /** See USB_STORAGE. This is the message. + */ + public static final int usb_storage_notification_message=0x010403d0; + /** USB_STORAGE: When the user connects the phone to a computer via USB, we show a notification asking if he wants to share files across. This is the title + */ + public static final int usb_storage_notification_title=0x010403cf; + /** See USB_STORAGE_STOP. This is the message. + */ + public static final int usb_storage_stop_message=0x010403d4; + /** See USB_STORAGE. This is the message. + */ + public static final int usb_storage_stop_notification_message=0x010403d2; + /** USB_STORAGE_STOP: While USB storage is enabled, we show a notification dialog asking if he wants to stop. This is the title + */ + public static final int usb_storage_stop_notification_title=0x010403d1; + /** USB storage stop dialog strings + This is the label for the activity, and should never be visible to the user. + See USB_STORAGE_STOP. USB_STORAGE_STOP_DIALOG: After the user selects the notification, a dialog is shown asking if he wants to stop usb storage. This is the title. + */ + public static final int usb_storage_stop_title=0x010403d3; + /** See USB_STORAGE. USB_STORAGE_DIALOG: After the user selects the notification, a dialog is shown asking if he wants to mount. This is the title. + */ + public static final int usb_storage_title=0x010403cb; + /** Text spoken when the current user is switched if accessibility is enabled. [CHAR LIMIT=none] + */ + public static final int user_switched=0x010404ec; + /** Message shown when switching to a user [CHAR LIMIT=none] + */ + public static final int user_switching_message=0x010404ed; + /** Title of the dialog where the user is adjusting the audio volume for alarms + */ + public static final int volume_alarm=0x01040388; + /** Content description for bluetooth volume icon [CHAR LIMIT=100] + */ + public static final int volume_icon_description_bluetooth=0x0104038b; + /** Content description for in-call volume icon [CHAR LIMIT=100] + */ + public static final int volume_icon_description_incall=0x0104038d; + /** Content description for media volume icon [CHAR LIMIT=100] + */ + public static final int volume_icon_description_media=0x0104038e; + /** Content description for notification volume icon [CHAR LIMIT=100] + */ + public static final int volume_icon_description_notification=0x0104038f; + /** Content description for ringer volume icon [CHAR LIMIT=100] + */ + public static final int volume_icon_description_ringer=0x0104038c; + /** Notification body that indicates user can touch to configure lockdown VPN connection. + */ + public static final int vpn_lockdown_config=0x0104043b; + /** Notification title when connected to lockdown VPN. + */ + public static final int vpn_lockdown_connected=0x01040439; + /** Notification title when connecting to lockdown VPN. + */ + public static final int vpn_lockdown_connecting=0x01040438; + /** Notification title when error connecting to lockdown VPN. + */ + public static final int vpn_lockdown_error=0x0104043a; + /** The text of the notification when VPN is active. + */ + public static final int vpn_text=0x01040436; + /** The text of the notification when VPN is active with a session name. + */ + public static final int vpn_text_long=0x01040437; + /** The title of the notification when VPN is active. + */ + public static final int vpn_title=0x01040434; + /** The title of the notification when VPN is active with an application name. + */ + public static final int vpn_title_long=0x01040435; + /** Button allowing the user to choose to wait for an application that is not responding to become responsive again. + */ + public static final int wait=0x01040364; + /** Label to show for a service that is running because it is a wallpaper. + */ + public static final int wallpaper_binding_label=0x0104042f; + /** Do not translate. WebView User Agent string + */ + public static final int web_user_agent=0x010402bf; + /** Do not translate. WebView User Agent targeted content + Do not translate. WebView User Agent targeted content + */ + public static final int web_user_agent_target_content=0x010402c0; + /** Text of the alert that is displayed when a web page is not responding. [CHAR-LIMIT=NONE] + */ + public static final int webpage_unresponsive=0x01040365; + /** ActionBar action to use the current selection to perform a web search [CHAR-LIMIT=16] + */ + public static final int websearch=0x0104044d; + /** Template for showing operator name for data connection while WFC is active + */ + public static final int wfcDataSpnFormat=0x010400ca; + /** Displayed when WFC registration fails + */ + public static final int wfcRegErrorTitle=0x010400c8; + /** Template for showing cellular network operator name while WFC is active + */ + public static final int wfcSpnFormat=0x010400c9; + /** WFC, summary for Cellular Preferred + */ + public static final int wfc_mode_cellular_preferred_summary=0x010400cd; + /** WFC, summary for Wi-Fi Only + */ + public static final int wfc_mode_wifi_only_summary=0x010400ce; + /** WFC, summary for Wi-Fi Preferred + */ + public static final int wfc_mode_wifi_preferred_summary=0x010400cc; + /** Title of intent resolver dialog when selecting an application to run. + */ + public static final int whichApplication=0x0104034a; + /** Title of intent resolver dialog when selecting an application to run + and a previously used application is known. + */ + public static final int whichApplicationNamed=0x0104034b; + /** Title of intent resolver dialog when selecting an editor application to run. + */ + public static final int whichEditApplication=0x0104034e; + /** Title of intent resolver dialog when selecting an editor application to run + and a previously used application is known. + */ + public static final int whichEditApplicationNamed=0x0104034f; + /** Title of intent resolver dialog when selecting a HOME application to run. + */ + public static final int whichHomeApplication=0x01040352; + /** Title of intent resolver dialog when selecting a HOME application to run + and a previously used application is known. + */ + public static final int whichHomeApplicationNamed=0x01040353; + /** Title of intent resolver dialog when selecting a sharing application to run. + */ + public static final int whichSendApplication=0x01040350; + /** Title of intent resolver dialog when selecting a sharing application to run + and a previously used application is known. + */ + public static final int whichSendApplicationNamed=0x01040351; + /** Title of intent resolver dialog when selecting a viewer application to run. + */ + public static final int whichViewApplication=0x0104034c; + /** Title of intent resolver dialog when selecting a viewer application to run + and a previously used application is known. + */ + public static final int whichViewApplicationNamed=0x0104034d; + /** Class name for default keyguard appwidget [DO NOT TRANSLATE] + */ + public static final int widget_default_class_name=0x01040022; + /** Package name for default keyguard appwidget [DO NOT TRANSLATE] + */ + public static final int widget_default_package_name=0x01040021; + /** A notification is shown when a wifi captive portal network is detected. This is the notification's title. + */ + public static final int wifi_available_sign_in=0x01040395; + /** WFC, summary for Disabled + */ + public static final int wifi_calling_off_summary=0x010400cb; + /** message explaining who is connecting to what + */ + public static final int wifi_connect_alert_message=0x0104039e; + /** A notification is shown the first time a connection is attempted on an app owned AP + title for this message + */ + public static final int wifi_connect_alert_title=0x0104039d; + /** default application in case name can not be found + */ + public static final int wifi_connect_default_application=0x0104039f; + /** A notification is shown when the user connects to a Wi-Fi network and the system detects that that network has no Internet access. This is the notification's title. + */ + public static final int wifi_no_internet=0x01040398; + /** A notification is shown when the user connects to a Wi-Fi network and the system detects that that network has no Internet access. This is the notification's message. + */ + public static final int wifi_no_internet_detailed=0x01040399; + public static final int wifi_p2p_dialog_title=0x010403a0; + public static final int wifi_p2p_enabled_notification_message=0x010403a4; + public static final int wifi_p2p_enabled_notification_title=0x010403a3; + public static final int wifi_p2p_failed_message=0x010403a2; + public static final int wifi_p2p_frequency_conflict_message=0x010403ad; + public static final int wifi_p2p_from_message=0x010403a9; + public static final int wifi_p2p_invitation_sent_title=0x010403a7; + public static final int wifi_p2p_invitation_to_connect_title=0x010403a8; + public static final int wifi_p2p_show_pin_message=0x010403ac; + public static final int wifi_p2p_to_message=0x010403aa; + public static final int wifi_p2p_turnon_message=0x010403a1; + /** Do not translate. Default access point SSID used for tethering + */ + public static final int wifi_tether_configure_ssid_default=0x0104039c; + /** A notification is shown when a user's selected SSID is later disabled due to connectivity problems. This is the notification's title / ticker. + */ + public static final int wifi_watchdog_network_disabled=0x0104039a; + /** A notification is shown when a user's selected SSID is later disabled due to connectivity problems. The complete alert msg is: + this string, i.e. "Linksys has a poor internet connection" + */ + public static final int wifi_watchdog_network_disabled_detailed=0x0104039b; + /** Description of a wireless display route. [CHAR LIMIT=50] + */ + public static final int wireless_display_route_description=0x010404b5; + /** Shows up in the notification's title when the system deletes the work profile. [CHAR LIMIT=NONE] + */ + public static final int work_profile_deleted=0x010400ed; + /** Content text for a notification. The Title of the notification is "work_profile_deleted", + i.e. "Work profile deleted". This says that the profile is deleted by the system as a result of + the current profile owner gone missing. [CHAR LIMIT=100] + */ + public static final int work_profile_deleted_description=0x010400ee; + /** Content text for a notification. The Title of the notification is "work_profile_deleted", + This indicates that a work profile has been deleted. [CHAR LIMIT=NONE] + */ + public static final int work_profile_deleted_description_dpm_wipe=0x010400f0; + /** Content text for an expanded notification. The Title of the notification is "work_profile_deleted", + i.e. "Work profile deleted". This further explains that the profile is deleted by the system + as a result of the current profile admin gone missing. [CHAR LIMIT=NONE] + */ + public static final int work_profile_deleted_details=0x010400ef; + /** Write fail reason: printing was cancelled.[CHAR LIMIT=none] + */ + public static final int write_fail_reason_cancelled=0x01040546; + /** Write fail reason: couldn't write the printed content. [CHAR LIMIT=none] + */ + public static final int write_fail_reason_cannot_write=0x01040547; + /** Preference framework strings. + */ + public static final int yes=0x01040013; + /** Zen mode condition - line one: Until next alarm. [CHAR LIMIT=NONE] + */ + public static final int zen_mode_alarm=0x01040575; + /** Zen mode - name of default automatic calendar event-based rule. [CHAR LIMIT=40] + */ + public static final int zen_mode_default_events_name=0x0104057e; + /** Zen mode - name of default automatic schedule for weekends. [CHAR LIMIT=40] + */ + public static final int zen_mode_default_weekends_name=0x0104057d; + /** Zen mode - name of default automatic schedule for weeknights. [CHAR LIMIT=40] + */ + public static final int zen_mode_default_weeknights_name=0x0104057c; + /** Zen mode - downtime legacy feature name. [CHAR LIMIT=40] + */ + public static final int zen_mode_downtime_feature_name=0x0104057b; + /** Zen mode - feature name. [CHAR LIMIT=40] + */ + public static final int zen_mode_feature_name=0x0104057a; + /** Zen mode condition: no exit criteria. [CHAR LIMIT=NONE] + */ + public static final int zen_mode_forever=0x01040576; + /** Zen mode condition: no exit criteria, includes the name of the feature for emphasis. [CHAR LIMIT=NONE] + */ + public static final int zen_mode_forever_dnd=0x01040577; + /** Zen mode active automatic rule name separator. [CHAR LIMIT=NONE] + */ + public static final int zen_mode_rule_name_combination=0x01040578; + /** Zen mode condition - line two: ending time. [CHAR LIMIT=NONE] + */ + public static final int zen_mode_until=0x01040574; + } + public static final class style { + /** Style to apply on top of a wallpaper settings theme when it is being + shown on top of the real wallpaper + */ + public static final int ActiveWallpaperSettings=0x0103046f; + /** Base style for animations. This style specifies no animations. + */ + public static final int Animation=0x01030000; + /** Standard animations for a full-screen window or activity. + */ + public static final int Animation_Activity=0x01030001; + /** Standard animations for a non-full-screen window or activity. + */ + public static final int Animation_Dialog=0x01030002; + /** Window animations for screen savers. {@hide} + */ + public static final int Animation_Dream=0x010302f0; + public static final int Animation_DropDownDown=0x010302e3; + public static final int Animation_DropDownUp=0x010302e4; + /** Window animations used for immersive mode confirmation. + */ + public static final int Animation_ImmersiveModeConfirmation=0x010302ef; + /** Window animations that are applied to input method overlay windows. + */ + public static final int Animation_InputMethod=0x01030056; + /** Special optional fancy IM animations. @hide + */ + public static final int Animation_InputMethodFancy=0x010302e7; + /** Standard animations for a non-full-screen window or activity. + */ + public static final int Animation_LockScreen=0x010302de; + /** A special animation value used internally for popup windows. + */ + public static final int Animation_PopupWindow=0x010302ec; + /** A special animation we can use for recent applications, + for devices that can support it (do alpha transformations). + */ + public static final int Animation_RecentApplications=0x010302eb; + public static final int Animation_Toast=0x01030004; + /** Standard animations for a translucent window or activity. This + style is not used by default for the translucent theme + (since translucent activities are a special case that have no + clear UI paradigm), but you can make your own specialized theme + with this animation style if you would like to have the standard + platform transition animation. + */ + public static final int Animation_Translucent=0x01030003; + public static final int Animation_TypingFilter=0x010302e1; + public static final int Animation_TypingFilterRestore=0x010302e2; + /** Window animations used for volume panel. + */ + public static final int Animation_VolumePanel=0x010302ee; + /** Standard animations for wallpapers. + */ + public static final int Animation_Wallpaper=0x010302ea; + /** Window animations that are applied to the zoom buttons overlay window. + */ + public static final int Animation_ZoomButtons=0x010302e9; + /** Style you can use with a container (typically a horizontal + LinearLayout) to get the standard "button bar" background and + spacing. @hide + */ + public static final int ButtonBar=0x01030058; + /** Other Styles + */ + public static final int DeviceDefault_ButtonBar=0x010301cf; + public static final int DeviceDefault_ButtonBar_AlertDialog=0x010301d0; + public static final int DeviceDefault_Light_ButtonBar=0x010301d2; + public static final int DeviceDefault_Light_ButtonBar_AlertDialog=0x010301d3; + public static final int DeviceDefault_Light_SegmentedButton=0x010301d4; + public static final int DeviceDefault_SegmentedButton=0x010301d1; + public static final int Holo_ButtonBar=0x010300e5; + public static final int Holo_ButtonBar_AlertDialog=0x010300e7; + public static final int Holo_Light_ButtonBar=0x010300e6; + public static final int Holo_Light_ButtonBar_AlertDialog=0x010300e8; + public static final int Holo_Light_SegmentedButton=0x010300ea; + public static final int Holo_SegmentedButton=0x010300e9; + public static final int MediaButton=0x01030037; + public static final int MediaButton_Ffwd=0x0103003b; + public static final int MediaButton_Next=0x01030039; + public static final int MediaButton_Pause=0x0103003d; + public static final int MediaButton_Play=0x0103003a; + public static final int MediaButton_Previous=0x01030038; + public static final int MediaButton_Rew=0x0103003c; + /** Style to apply on top of a wallpaper settings theme when it is being + shown on top of the real wallpaper + */ + public static final int PreviewWallpaperSettings=0x01030470; + public static final int TextAppearance=0x0103003e; + /** Text Appearance Styles + */ + public static final int TextAppearance_DeviceDefault=0x010301ad; + public static final int TextAppearance_DeviceDefault_DialogWindowTitle=0x010301b8; + public static final int TextAppearance_DeviceDefault_Inverse=0x010301ae; + public static final int TextAppearance_DeviceDefault_Large=0x010301af; + public static final int TextAppearance_DeviceDefault_Large_Inverse=0x010301b0; + public static final int TextAppearance_DeviceDefault_Medium=0x010301b1; + public static final int TextAppearance_DeviceDefault_Medium_Inverse=0x010301b2; + public static final int TextAppearance_DeviceDefault_SearchResult_Subtitle=0x010301b6; + public static final int TextAppearance_DeviceDefault_SearchResult_Title=0x010301b5; + public static final int TextAppearance_DeviceDefault_Small=0x010301b3; + public static final int TextAppearance_DeviceDefault_Small_Inverse=0x010301b4; + public static final int TextAppearance_DeviceDefault_Widget=0x010301b9; + public static final int TextAppearance_DeviceDefault_Widget_ActionBar_Menu=0x010301ce; + public static final int TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle=0x010301c7; + /** @deprecated Action bars are now themed using the inheritable android:theme attribute. + */ + @Deprecated + public static final int TextAppearance_DeviceDefault_Widget_ActionBar_Subtitle_Inverse=0x010301cb; + public static final int TextAppearance_DeviceDefault_Widget_ActionBar_Title=0x010301c6; + /** @deprecated Action bars are now themed using the inheritable android:theme attribute. + */ + @Deprecated + public static final int TextAppearance_DeviceDefault_Widget_ActionBar_Title_Inverse=0x010301ca; + public static final int TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle=0x010301c9; + /** @deprecated Action bars are now themed using the inheritable android:theme attribute. + */ + @Deprecated + public static final int TextAppearance_DeviceDefault_Widget_ActionMode_Subtitle_Inverse=0x010301cd; + public static final int TextAppearance_DeviceDefault_Widget_ActionMode_Title=0x010301c8; + /** @deprecated Action bars are now themed using the inheritable android:theme attribute. + */ + @Deprecated + public static final int TextAppearance_DeviceDefault_Widget_ActionMode_Title_Inverse=0x010301cc; + public static final int TextAppearance_DeviceDefault_Widget_Button=0x010301ba; + public static final int TextAppearance_DeviceDefault_Widget_DropDownHint=0x010301bf; + public static final int TextAppearance_DeviceDefault_Widget_DropDownItem=0x010301c0; + public static final int TextAppearance_DeviceDefault_Widget_EditText=0x010301c2; + public static final int TextAppearance_DeviceDefault_Widget_IconMenu_Item=0x010301bb; + public static final int TextAppearance_DeviceDefault_Widget_PopupMenu=0x010301c3; + public static final int TextAppearance_DeviceDefault_Widget_PopupMenu_Large=0x010301c4; + public static final int TextAppearance_DeviceDefault_Widget_PopupMenu_Small=0x010301c5; + public static final int TextAppearance_DeviceDefault_Widget_TabWidget=0x010301bc; + public static final int TextAppearance_DeviceDefault_Widget_TextView=0x010301bd; + public static final int TextAppearance_DeviceDefault_Widget_TextView_PopupMenu=0x010301be; + public static final int TextAppearance_DeviceDefault_Widget_TextView_SpinnerItem=0x010301c1; + public static final int TextAppearance_DeviceDefault_WindowTitle=0x010301b7; + public static final int TextAppearance_DialogWindowTitle=0x01030041; + /** Begin Holo theme styles + Text Styles + */ + public static final int TextAppearance_Holo=0x010300fb; + public static final int TextAppearance_Holo_DialogWindowTitle=0x01030117; + public static final int TextAppearance_Holo_Inverse=0x010300fc; + public static final int TextAppearance_Holo_Large=0x010300fd; + public static final int TextAppearance_Holo_Large_Inverse=0x010300fe; + public static final int TextAppearance_Holo_Medium=0x010300ff; + public static final int TextAppearance_Holo_Medium_Inverse=0x01030100; + public static final int TextAppearance_Holo_SearchResult_Subtitle=0x01030104; + public static final int TextAppearance_Holo_SearchResult_Title=0x01030103; + public static final int TextAppearance_Holo_Small=0x01030101; + public static final int TextAppearance_Holo_Small_Inverse=0x01030102; + public static final int TextAppearance_Holo_Widget=0x01030105; + public static final int TextAppearance_Holo_Widget_ActionBar_Menu=0x01030120; + public static final int TextAppearance_Holo_Widget_ActionBar_Subtitle=0x01030113; + public static final int TextAppearance_Holo_Widget_ActionBar_Subtitle_Inverse=0x0103011d; + public static final int TextAppearance_Holo_Widget_ActionBar_Title=0x01030112; + public static final int TextAppearance_Holo_Widget_ActionBar_Title_Inverse=0x0103011c; + public static final int TextAppearance_Holo_Widget_ActionMode_Subtitle=0x01030115; + public static final int TextAppearance_Holo_Widget_ActionMode_Subtitle_Inverse=0x0103011f; + public static final int TextAppearance_Holo_Widget_ActionMode_Title=0x01030114; + public static final int TextAppearance_Holo_Widget_ActionMode_Title_Inverse=0x0103011e; + public static final int TextAppearance_Holo_Widget_Button=0x01030106; + public static final int TextAppearance_Holo_Widget_DropDownHint=0x0103010b; + public static final int TextAppearance_Holo_Widget_DropDownItem=0x0103010c; + public static final int TextAppearance_Holo_Widget_EditText=0x0103010e; + public static final int TextAppearance_Holo_Widget_IconMenu_Item=0x01030107; + public static final int TextAppearance_Holo_Widget_PopupMenu=0x0103010f; + public static final int TextAppearance_Holo_Widget_PopupMenu_Large=0x01030110; + public static final int TextAppearance_Holo_Widget_PopupMenu_Small=0x01030111; + /** This style is for smaller screens; values-xlarge defines a version + for larger screens. + */ + public static final int TextAppearance_Holo_Widget_TabWidget=0x01030108; + public static final int TextAppearance_Holo_Widget_TextView=0x01030109; + public static final int TextAppearance_Holo_Widget_TextView_PopupMenu=0x0103010a; + public static final int TextAppearance_Holo_Widget_TextView_SpinnerItem=0x0103010d; + public static final int TextAppearance_Holo_WindowTitle=0x01030116; + public static final int TextAppearance_Inverse=0x0103003f; + public static final int TextAppearance_Large=0x01030042; + public static final int TextAppearance_Large_Inverse=0x01030043; + /** Begin Material theme styles + Text styles + */ + public static final int TextAppearance_Material=0x010301ed; + public static final int TextAppearance_Material_Body1=0x010301f0; + public static final int TextAppearance_Material_Body2=0x010301ef; + public static final int TextAppearance_Material_Button=0x010301ee; + public static final int TextAppearance_Material_Caption=0x010301f1; + public static final int TextAppearance_Material_DatePicker_List_YearLabel=0x0103041c; + public static final int TextAppearance_Material_DatePicker_List_YearLabel_Activated=0x0103041d; + public static final int TextAppearance_Material_DialogWindowTitle=0x010301f2; + public static final int TextAppearance_Material_Display1=0x010301f6; + public static final int TextAppearance_Material_Display2=0x010301f5; + public static final int TextAppearance_Material_Display3=0x010301f4; + public static final int TextAppearance_Material_Display4=0x010301f3; + public static final int TextAppearance_Material_Headline=0x010301f7; + /** Deprecated text styles + */ + public static final int TextAppearance_Material_Inverse=0x010301f8; + public static final int TextAppearance_Material_Large=0x010301f9; + public static final int TextAppearance_Material_Large_Inverse=0x010301fa; + public static final int TextAppearance_Material_Medium=0x010301fb; + public static final int TextAppearance_Material_Medium_Inverse=0x010301fc; + public static final int TextAppearance_Material_Menu=0x010301fd; + public static final int TextAppearance_Material_Notification=0x010301fe; + public static final int TextAppearance_Material_Notification_Emphasis=0x010301ff; + public static final int TextAppearance_Material_Notification_Info=0x01030200; + public static final int TextAppearance_Material_Notification_Line2=0x01030201; + public static final int TextAppearance_Material_Notification_Time=0x01030202; + public static final int TextAppearance_Material_Notification_Title=0x01030203; + public static final int TextAppearance_Material_SearchResult_Subtitle=0x01030204; + public static final int TextAppearance_Material_SearchResult_Title=0x01030205; + public static final int TextAppearance_Material_Small=0x01030206; + public static final int TextAppearance_Material_Small_Inverse=0x01030207; + public static final int TextAppearance_Material_Subhead=0x01030208; + public static final int TextAppearance_Material_TimePicker_TimeLabel=0x01030418; + public static final int TextAppearance_Material_Title=0x01030209; + public static final int TextAppearance_Material_Widget=0x0103020b; + public static final int TextAppearance_Material_Widget_ActionBar_Menu=0x0103020c; + public static final int TextAppearance_Material_Widget_ActionBar_Subtitle=0x0103020d; + public static final int TextAppearance_Material_Widget_ActionBar_Subtitle_Inverse=0x0103020e; + public static final int TextAppearance_Material_Widget_ActionBar_Title=0x0103020f; + public static final int TextAppearance_Material_Widget_ActionBar_Title_Inverse=0x01030210; + public static final int TextAppearance_Material_Widget_ActionMode_Subtitle=0x01030211; + public static final int TextAppearance_Material_Widget_ActionMode_Subtitle_Inverse=0x01030212; + public static final int TextAppearance_Material_Widget_ActionMode_Title=0x01030213; + public static final int TextAppearance_Material_Widget_ActionMode_Title_Inverse=0x01030214; + public static final int TextAppearance_Material_Widget_Button=0x01030215; + public static final int TextAppearance_Material_Widget_Button_Inverse=0x010302d4; + public static final int TextAppearance_Material_Widget_Calendar_Day=0x01030415; + public static final int TextAppearance_Material_Widget_Calendar_DayOfWeek=0x01030416; + public static final int TextAppearance_Material_Widget_Calendar_Month=0x01030417; + public static final int TextAppearance_Material_Widget_DropDownHint=0x01030216; + public static final int TextAppearance_Material_Widget_DropDownItem=0x01030217; + public static final int TextAppearance_Material_Widget_EditText=0x01030218; + public static final int TextAppearance_Material_Widget_IconMenu_Item=0x01030219; + public static final int TextAppearance_Material_Widget_PopupMenu=0x0103021a; + public static final int TextAppearance_Material_Widget_PopupMenu_Large=0x0103021b; + public static final int TextAppearance_Material_Widget_PopupMenu_Small=0x0103021c; + public static final int TextAppearance_Material_Widget_TabWidget=0x0103021d; + public static final int TextAppearance_Material_Widget_TextView=0x0103021e; + public static final int TextAppearance_Material_Widget_TextView_PopupMenu=0x0103021f; + public static final int TextAppearance_Material_Widget_TextView_SpinnerItem=0x01030220; + public static final int TextAppearance_Material_Widget_Toolbar_Subtitle=0x01030221; + public static final int TextAppearance_Material_Widget_Toolbar_Title=0x01030222; + public static final int TextAppearance_Material_WindowTitle=0x0103020a; + public static final int TextAppearance_Medium=0x01030044; + public static final int TextAppearance_Medium_Inverse=0x01030045; + /** @hide + */ + public static final int TextAppearance_SearchResult_Subtitle=0x01030064; + /** @hide + */ + public static final int TextAppearance_SearchResult_Title=0x01030063; + /** @hide + */ + public static final int TextAppearance_SlidingTabActive=0x01030315; + /** @hide + */ + public static final int TextAppearance_SlidingTabNormal=0x01030314; + public static final int TextAppearance_Small=0x01030046; + public static final int TextAppearance_Small_Inverse=0x01030047; + /** Notification content styles + */ + public static final int TextAppearance_StatusBar_EventContent=0x01030067; + public static final int TextAppearance_StatusBar_EventContent_Title=0x01030068; + public static final int TextAppearance_StatusBar_Icon=0x01030066; + public static final int TextAppearance_StatusBar_Title=0x01030065; + public static final int TextAppearance_SuggestionHighlight=0x01030118; + public static final int TextAppearance_Theme=0x01030040; + public static final int TextAppearance_Theme_Dialog=0x01030048; + public static final int TextAppearance_Widget=0x01030049; + public static final int TextAppearance_Widget_Button=0x0103004a; + public static final int TextAppearance_Widget_DropDownHint=0x01030050; + public static final int TextAppearance_Widget_DropDownItem=0x01030051; + public static final int TextAppearance_Widget_EditText=0x0103004c; + public static final int TextAppearance_Widget_IconMenu_Item=0x0103004b; + public static final int TextAppearance_Widget_PopupMenu_Large=0x01030080; + public static final int TextAppearance_Widget_PopupMenu_Small=0x01030081; + public static final int TextAppearance_Widget_TabWidget=0x0103004d; + public static final int TextAppearance_Widget_TextView=0x0103004e; + public static final int TextAppearance_Widget_TextView_PopupMenu=0x0103004f; + public static final int TextAppearance_Widget_TextView_SpinnerItem=0x01030052; + public static final int TextAppearance_WindowTitle=0x01030053; + /** The default theme for apps on API level 10 and lower. This is the theme used for + activities that have not explicitly set their own theme. +

You can count on this being a dark + background with light text on top, but should try to make no + other assumptions about its appearance. In particular, the text + inside of widgets using this theme may be completely different, + with the widget container being a light color and the text on top + of it a dark color. +

If you're developing for API level 11 and higher, you should instead use {@link + #Theme_Holo} or {@link #Theme_DeviceDefault}.

+ + */ + public static final int Theme=0x01030005; + /** Variant on {@link #Theme} that ensures the background is + completely black. This is useful for things like image viewers and + media players. If you want the normal (dark background) theme + do not use this, use {@link #Theme}. + */ + public static final int Theme_Black=0x01030008; + /** Variant of {@link #Theme_Black} with no title bar + */ + public static final int Theme_Black_NoTitleBar=0x01030009; + /** Variant of {@link #Theme_Black} that has no title bar and + no status bar. This theme + sets {@link android.R.attr#windowFullscreen} to true. + */ + public static final int Theme_Black_NoTitleBar_Fullscreen=0x0103000a; + /** The default theme for apps that target API level XX and higher. +

The DeviceDefault themes are aliases for a specific device’s native look and feel. The + DeviceDefault theme family and widget style family offer ways for you to target your app + to a device’s native theme with all device customizations intact.

+

For example, when you set your app's {@code targetSdkVersion} to XX or higher, this + theme is applied to your application by default. As such, your app might appear with the + {@link #Theme_Material Material} styles on one device, but with a different set of styles on + another device. This is great if you want your app to fit with the device's native look and + feel. If, however, you prefer to keep your UI style the same across all devices, you should + apply a specific theme such as {@link #Theme_Material Material} or one of your own design. + For more information, read Material + Everywhere.

+

Styles used by the DeviceDefault theme are named using the convention + Type.DeviceDefault.Etc (for example, {@code Widget.DeviceDefault.Button} and + {@code TextAppearance.DeviceDefault.Widget.PopupMenu.Large}).

+ + */ + public static final int Theme_DeviceDefault=0x01030128; + /** DeviceDefault theme for dialog windows and activities. This changes the window to be + floating (not fill the entire screen), and puts a frame around its contents. You can set this + theme on an activity if you would like to make an activity that looks like a Dialog. + */ + public static final int Theme_DeviceDefault_Dialog=0x0103012e; + public static final int Theme_DeviceDefault_Dialog_Alert=0x010302d1; + /** Variant of {@link #Theme_DeviceDefault_Dialog} that has a nice minimum width for a + regular dialog. + */ + public static final int Theme_DeviceDefault_Dialog_MinWidth=0x0103012f; + /** Variant of {@link #Theme_DeviceDefault_Dialog} without an action bar + */ + public static final int Theme_DeviceDefault_Dialog_NoActionBar=0x01030130; + /** Variant of {@link #Theme_DeviceDefault_Dialog_NoActionBar} that has a nice minimum width + for a regular dialog. + */ + public static final int Theme_DeviceDefault_Dialog_NoActionBar_MinWidth=0x01030131; + public static final int Theme_DeviceDefault_Dialog_NoFrame=0x01030480; + /** DeviceDefault theme for a window that will be displayed either full-screen on smaller + screens (small, normal) or as a dialog on larger screens (large, xlarge). + */ + public static final int Theme_DeviceDefault_DialogWhenLarge=0x01030136; + /** DeviceDefault theme for a window without an action bar that will be displayed either + full-screen on smaller screens (small, normal) or as a dialog on larger screens (large, + xlarge). + */ + public static final int Theme_DeviceDefault_DialogWhenLarge_NoActionBar=0x01030137; + /** DeviceDefault style for input methods, which is used by the + {@link android.inputmethodservice.InputMethodService} class. + */ + public static final int Theme_DeviceDefault_InputMethod=0x0103013e; + /** Variant of {@link #Theme_DeviceDefault} with a light-colored style + */ + public static final int Theme_DeviceDefault_Light=0x0103012b; + /** Variant of the DeviceDefault (light) theme that has a solid (opaque) action bar with an + inverse color profile. + */ + public static final int Theme_DeviceDefault_Light_DarkActionBar=0x0103013f; + /** DeviceDefault light theme for dialog windows and activities. This changes the window to be + floating (not fill the entire screen), and puts a frame around its contents. You can set this + theme on an activity if you would like to make an activity that looks like a Dialog. + */ + public static final int Theme_DeviceDefault_Light_Dialog=0x01030132; + public static final int Theme_DeviceDefault_Light_Dialog_Alert=0x010302d2; + /** Variant of {@link #Theme_DeviceDefault_Light_Dialog} that has a nice minimum width for a + regular dialog. + */ + public static final int Theme_DeviceDefault_Light_Dialog_MinWidth=0x01030133; + /** Variant of {@link #Theme_DeviceDefault_Light_Dialog} without an action bar + */ + public static final int Theme_DeviceDefault_Light_Dialog_NoActionBar=0x01030134; + /** Variant of {@link #Theme_DeviceDefault_Light_Dialog_NoActionBar} that has a nice minimum + width for a regular dialog. + */ + public static final int Theme_DeviceDefault_Light_Dialog_NoActionBar_MinWidth=0x01030135; + /** DeviceDefault light theme for a window that will be displayed either full-screen on smaller + screens (small, normal) or as a dialog on larger screens (large, xlarge). + */ + public static final int Theme_DeviceDefault_Light_DialogWhenLarge=0x01030138; + /** DeviceDefault light theme for a window without an action bar that will be displayed either + full-screen on smaller screens (small, normal) or as a dialog on larger screens (large, + xlarge). + */ + public static final int Theme_DeviceDefault_Light_DialogWhenLarge_NoActionBar=0x01030139; + /** Variant of {@link #Theme_DeviceDefault_Light} with no action bar + */ + public static final int Theme_DeviceDefault_Light_NoActionBar=0x0103012c; + /** Variant of {@link #Theme_DeviceDefault_Light} with no action bar and no status bar. + This theme sets {@link android.R.attr#windowFullscreen} to true. + */ + public static final int Theme_DeviceDefault_Light_NoActionBar_Fullscreen=0x0103012d; + /** Variant of {@link #Theme_DeviceDefault_Light} with no action bar and no status bar + and extending in to overscan region. This theme + sets {@link android.R.attr#windowFullscreen} and {@link android.R.attr#windowOverscan} + to true. + */ + public static final int Theme_DeviceDefault_Light_NoActionBar_Overscan=0x010301e0; + /** Variant of {@link #Theme_DeviceDefault_Light} that has no title bar and translucent + system decor. This theme sets {@link android.R.attr#windowTranslucentStatus} and + {@link android.R.attr#windowTranslucentNavigation} to true. + */ + public static final int Theme_DeviceDefault_Light_NoActionBar_TranslucentDecor=0x010301e4; + /** DeviceDefault light theme for panel windows. This removes all extraneous window + decorations, so you basically have an empty rectangle in which to place your content. It makes + the window floating, with a transparent background, and turns off dimming behind the window. + */ + public static final int Theme_DeviceDefault_Light_Panel=0x0103013b; + /** Variant of {@link #Theme_DeviceDefault} with no action bar + */ + public static final int Theme_DeviceDefault_NoActionBar=0x01030129; + /** Variant of {@link #Theme_DeviceDefault} with no action bar and no status bar. This theme + sets {@link android.R.attr#windowFullscreen} to true. + */ + public static final int Theme_DeviceDefault_NoActionBar_Fullscreen=0x0103012a; + /** Variant of {@link #Theme_DeviceDefault} with no action bar and no status bar and + extending in to overscan region. This theme + sets {@link android.R.attr#windowFullscreen} and {@link android.R.attr#windowOverscan} + to true. + */ + public static final int Theme_DeviceDefault_NoActionBar_Overscan=0x010301df; + /** Variant of {@link #Theme_DeviceDefault} that has no title bar and translucent + system decor. This theme sets {@link android.R.attr#windowTranslucentStatus} and + {@link android.R.attr#windowTranslucentNavigation} to true. + */ + public static final int Theme_DeviceDefault_NoActionBar_TranslucentDecor=0x010301e3; + /** DeviceDefault theme for panel windows. This removes all extraneous window + decorations, so you basically have an empty rectangle in which to place your content. It makes + the window floating, with a transparent background, and turns off dimming behind the window. + */ + public static final int Theme_DeviceDefault_Panel=0x0103013a; + /** Theme used for the intent picker activity. + */ + public static final int Theme_DeviceDefault_Resolver=0x01030485; + /** DeviceDefault theme for a window that should look like the Settings app. + */ + public static final int Theme_DeviceDefault_Settings=0x01030223; + /** DeviceDefault style for input methods, which is used by the + {@link android.service.voice.VoiceInteractionSession} class. + */ + public static final int Theme_DeviceDefault_VoiceInteractionSession=0x0103047e; + /** DeviceDefault theme for windows that want to have the user's selected wallpaper appear + behind them. + */ + public static final int Theme_DeviceDefault_Wallpaper=0x0103013c; + /** DeviceDefault theme for windows that want to have the user's selected wallpaper appear + behind them and without an action bar. + */ + public static final int Theme_DeviceDefault_Wallpaper_NoTitleBar=0x0103013d; + /** Default theme for dialog windows and activities (on API level 10 and lower), + which is used by the + {@link android.app.Dialog} class. This changes the window to be + floating (not fill the entire screen), and puts a frame around its + contents. You can set this theme on an activity if you would like to + make an activity that looks like a Dialog. + */ + public static final int Theme_Dialog=0x0103000b; + /** Default theme for alert dialog windows (on API level 10 and lower), which is used by the + {@link android.app.AlertDialog} class. This is basically a dialog + but sets the background to empty so it can do two-tone backgrounds. + */ + public static final int Theme_Dialog_Alert=0x01030472; + /** Theme for the dialog shown when an app crashes or ANRs. + */ + public static final int Theme_Dialog_AppError=0x01030478; + /** Special theme for the recent apps dialog, to allow customization + with overlays. + */ + public static final int Theme_Dialog_RecentApplications=0x01030479; + /** Default value for ?attr/panelMenuListTheme on pre-ICS. + */ + public static final int Theme_ExpandedMenu=0x01030477; + /** The default theme for apps on API level 10 and lower. This is the theme used for + activities that have not explicitly set their own theme. +

You can count on this being a dark + background with light text on top, but should try to make no + other assumptions about its appearance. In particular, the text + inside of widgets using this theme may be completely different, + with the widget container being a light color and the text on top + of it a dark color. +

If you're developing for API level 11 and higher, you should instead use {@link + #Theme_Holo} or {@link #Theme_DeviceDefault}.

+ + Honeycomb holographic theme (dark version). +

This is the default system theme for apps that target API level 11 - 13. Starting + with API level 14, the default system theme is supplied by {@link #Theme_DeviceDefault}, + which might apply a different style on different devices. If you want to ensure that your + app consistently uses the Holo theme at all times, you must explicitly declare it in your + manifest. For example, {@code <application android:theme="@android:style/Theme.Holo">}. + For more information, read Holo + Everywhere.

+

The widgets in the holographic theme are translucent on their background, so + applications must ensure that any background they use with this theme is itself + dark; otherwise, it will be difficult to see the widgets. This UI style also includes a + full action bar by default.

+ +

Styles used by the Holo theme are named using the convention Type.Holo.Etc + (for example, {@code Widget.Holo.Button} and {@code + TextAppearance.Holo.Widget.PopupMenu.Large}). + Specific resources used by Holo are named using the convention @type/foo_bar_baz_holo + with trailing _dark or _light specifiers if they are not shared between both light and + dark versions of the theme. + */ + public static final int Theme_Holo=0x0103006b; + /** Holo theme for dialog windows and activities, which is used by the + {@link android.app.Dialog} class. This changes the window to be + floating (not fill the entire screen), and puts a frame around its + contents. You can set this theme on an activity if you would like to + make an activity that looks like a Dialog. + This is the default Dialog theme for applications targeting Honeycomb + or newer. + */ + public static final int Theme_Holo_Dialog=0x0103006f; + /** Holo theme for alert dialog windows, which is used by the + {@link android.app.AlertDialog} class. This is basically a dialog + but sets the background to empty so it can do two-tone backgrounds. + For applications targeting Honeycomb or newer, this is the default + AlertDialog theme. + */ + public static final int Theme_Holo_Dialog_Alert=0x0103048a; + /** Variant of Theme.Holo.Dialog that has a nice minimum width for + a regular dialog. + */ + public static final int Theme_Holo_Dialog_MinWidth=0x01030070; + /** Variant of Theme.Holo.Dialog that does not include a title bar. + */ + public static final int Theme_Holo_Dialog_NoActionBar=0x01030071; + /** Variant of Theme.Holo.Dialog.NoActionBar that has a nice minimum width for + a regular dialog. + */ + public static final int Theme_Holo_Dialog_NoActionBar_MinWidth=0x01030072; + /** Theme for a window that will be displayed either full-screen on + smaller screens (small, normal) or as a dialog on larger screens + (large, xlarge). + */ + public static final int Theme_Holo_DialogWhenLarge=0x01030077; + /** Theme for a window without a title bar that will be displayed either + full-screen on smaller screens (small, normal) or as a dialog on larger screens + (large, xlarge). + */ + public static final int Theme_Holo_DialogWhenLarge_NoActionBar=0x01030078; + /** Default theme for holo style input methods, which is used by the + {@link android.inputmethodservice.InputMethodService} class. + this inherits from Theme.Panel, but sets up IME appropriate animations + and a few custom attributes. + */ + public static final int Theme_Holo_InputMethod=0x0103007f; + /** Honeycomb holographic theme (light version). The widgets in the + holographic theme are translucent on their brackground, so applications + must ensure that any background they use with this theme is itself + light; otherwise, it will be difficult to see the widgets. This + UI style also includes a full action bar by default. + */ + public static final int Theme_Holo_Light=0x0103006e; + /** Variant of the holographic (light) theme that has a solid (opaque) action bar + with an inverse color profile. The dark action bar sharply stands out against + the light content. + */ + public static final int Theme_Holo_Light_DarkActionBar=0x01030119; + /** Light holo dialog themes + Holo light theme for dialog windows and activities, which is used by the + {@link android.app.Dialog} class. This changes the window to be + floating (not fill the entire screen), and puts a frame around its + contents. You can set this theme on an activity if you would like to + make an activity that looks like a Dialog. + This is the default Dialog theme for applications targeting Honeycomb + or newer. + */ + public static final int Theme_Holo_Light_Dialog=0x01030073; + /** Holo light theme for alert dialog windows, which is used by the + {@link android.app.AlertDialog} class. This is basically a dialog + but sets the background to empty so it can do two-tone backgrounds. + For applications targeting Honeycomb or newer, this is the default + AlertDialog theme. + */ + public static final int Theme_Holo_Light_Dialog_Alert=0x0103048f; + /** Variant of Theme.Holo.Light.Dialog that has a nice minimum width for + a regular dialog. + */ + public static final int Theme_Holo_Light_Dialog_MinWidth=0x01030074; + /** Variant of Theme.Holo.Light.Dialog that does not include a title bar. + */ + public static final int Theme_Holo_Light_Dialog_NoActionBar=0x01030075; + /** Variant of Theme.Holo.Light.Dialog.NoActionBar that has a nice minimum width for + a regular dialog. + */ + public static final int Theme_Holo_Light_Dialog_NoActionBar_MinWidth=0x01030076; + /** Theme for a window that will be displayed either full-screen on + smaller screens (small, normal) or as a dialog on larger screens + (large, xlarge). + */ + public static final int Theme_Holo_Light_DialogWhenLarge=0x01030079; + /** Theme for a window without an action bar that will be displayed either full-screen + on smaller screens (small, normal) or as a dialog on larger screens + (large, xlarge). + */ + public static final int Theme_Holo_Light_DialogWhenLarge_NoActionBar=0x0103007a; + /** Variant of the holographic (light) theme with no action bar. + */ + public static final int Theme_Holo_Light_NoActionBar=0x010300f0; + /** Variant of the holographic (light) theme that has no title bar and fills + the entire screen. This theme + sets {@link android.R.attr#windowFullscreen} to true. + */ + public static final int Theme_Holo_Light_NoActionBar_Fullscreen=0x010300f1; + /** Variant of the holographic (light) theme that has no title bar and fills + the entire screen and extends into the display overscan region. This theme + sets {@link android.R.attr#windowFullscreen} and {@link android.R.attr#windowOverscan} + to true. + */ + public static final int Theme_Holo_Light_NoActionBar_Overscan=0x010301de; + /** Variant of the holographic (light) theme that has no title bar and translucent + system decor. This theme sets {@link android.R.attr#windowTranslucentStatus} and + {@link android.R.attr#windowTranslucentNavigation} to true. + */ + public static final int Theme_Holo_Light_NoActionBar_TranslucentDecor=0x010301e2; + /** Default holo light theme for panel windows. This removes all extraneous + window decorations, so you basically have an empty rectangle in which + to place your content. It makes the window floating, with a transparent + background, and turns off dimming behind the window. + */ + public static final int Theme_Holo_Light_Panel=0x0103007c; + /** Variant of the holographic (dark) theme with no action bar. + */ + public static final int Theme_Holo_NoActionBar=0x0103006c; + /** Variant of the holographic (dark) theme that has no title bar and fills + the entire screen. This theme + sets {@link android.R.attr#windowFullscreen} to true. + */ + public static final int Theme_Holo_NoActionBar_Fullscreen=0x0103006d; + /** Variant of the holographic (dark) theme that has no title bar and fills + the entire screen and extends into the display overscan region. This theme + sets {@link android.R.attr#windowFullscreen} and {@link android.R.attr#windowOverscan} + to true. + */ + public static final int Theme_Holo_NoActionBar_Overscan=0x010301dd; + /** Variant of the holographic (dark) theme that has no title bar and translucent + system decor. This theme sets {@link android.R.attr#windowTranslucentStatus} and + {@link android.R.attr#windowTranslucentNavigation} to true. + */ + public static final int Theme_Holo_NoActionBar_TranslucentDecor=0x010301e1; + /** Default holo dark theme for panel windows. This removes all extraneous + window decorations, so you basically have an empty rectangle in which + to place your content. It makes the window floating, with a transparent + background, and turns off dimming behind the window. + */ + public static final int Theme_Holo_Panel=0x0103007b; + /** Default holographic (dark) for windows that want to have the user's selected + wallpaper appear behind them. + */ + public static final int Theme_Holo_Wallpaper=0x0103007d; + /** Default holographic (dark) for windows that want to have the user's selected + wallpaper appear behind them and without an action bar. + */ + public static final int Theme_Holo_Wallpaper_NoTitleBar=0x0103007e; + /** Theme for the classic "six-pack" icon menu. + */ + public static final int Theme_IconMenu=0x01030476; + /** Default theme for input methods (on API level 10 and lower), which is used by the + {@link android.inputmethodservice.InputMethodService} class. + this inherits from Theme.Panel, but sets up IME appropriate animations + and a few custom attributes. + */ + public static final int Theme_InputMethod=0x01030054; + public static final int Theme_Leanback_Dialog_Alert=0x01030498; + /** @hide This really shouldn't be public; clients using it should use @* to ref it. + Setup and form wizard themes @hide + */ + @android.annotation.SystemApi + public static final int Theme_Leanback_FormWizard=0x010302d0; + /** Theme for a light background with dark text on top. Set your activity + to this theme if you would like such an appearance. As with the + default theme, you should try to assume little more than that the + background will be a light color. +

This is designed for API level 10 and lower.

+ */ + public static final int Theme_Light=0x0103000c; + /** Variant of {@link #Theme_Light} with no title bar + */ + public static final int Theme_Light_NoTitleBar=0x0103000d; + /** Variant of {@link #Theme_Light} that has no title bar and + no status bar. This theme + sets {@link android.R.attr#windowFullscreen} to true. + */ + public static final int Theme_Light_NoTitleBar_Fullscreen=0x0103000e; + /** Default light theme for panel windows (on API level 10 and lower). This removes all + extraneous window decorations, so you basically have an empty rectangle in which + to place your content. It makes the window floating, with a transparent + background, and turns off dimming behind the window. + */ + public static final int Theme_Light_Panel=0x0103005a; + /** Theme for a wallpaper's setting activity, which is designed to be a transparent + background with a light shade, so the previous Activity is visible in the background. + */ + public static final int Theme_Light_WallpaperSettings=0x01030062; + /** Material theme (dark version). +

If you want to ensure that your + app consistently uses the Material theme at all times, you must explicitly declare it in your + manifest. For example, {@code <application android:theme="@style/Theme.Material">}. + +

Styles used by the Material theme are named using the convention Type.Material.Etc + (for example, {@code Widget.Material.Button} and {@code + TextAppearance.Material.Widget.PopupMenu.Large}). + Specific resources used by Material are named using the convention @type/foo_bar_baz_material + with trailing _dark or _light specifiers if they are not shared between both light and + dark versions of the theme. + */ + public static final int Theme_Material=0x01030224; + /** Material theme for dialog windows and activities, which is used by the + {@link android.app.Dialog} class. This changes the window to be + floating (not fill the entire screen), and puts a frame around its + contents. You can set this theme on an activity if you would like to + make an activity that looks like a Dialog. + */ + public static final int Theme_Material_Dialog=0x01030225; + /** Material theme for alert dialog windows, which is used by the + {@link android.app.AlertDialog} class. This is basically a dialog + but sets the background to empty so it can do two-tone backgrounds. + For applications targeting Honeycomb or newer, this is the default + AlertDialog theme. + */ + public static final int Theme_Material_Dialog_Alert=0x01030226; + /** Variant of Theme.Material.Dialog that has a nice minimum width for + a regular dialog. + */ + public static final int Theme_Material_Dialog_MinWidth=0x01030227; + /** Variant of Theme.Material.Dialog that does not include a title bar. + */ + public static final int Theme_Material_Dialog_NoActionBar=0x01030228; + /** Variant of Theme.Material.Dialog.NoActionBar that has a nice minimum width for + a regular dialog. + */ + public static final int Theme_Material_Dialog_NoActionBar_MinWidth=0x01030229; + /** Theme for a presentation window on a secondary display. + */ + public static final int Theme_Material_Dialog_Presentation=0x0103022a; + /** Theme for a window that will be displayed either full-screen on + smaller screens (small, normal) or as a dialog on larger screens + (large, xlarge). + */ + public static final int Theme_Material_DialogWhenLarge=0x0103022b; + /** Theme for a window without a title bar that will be displayed either + full-screen on smaller screens (small, normal) or as a dialog on larger screens + (large, xlarge). + */ + public static final int Theme_Material_DialogWhenLarge_NoActionBar=0x0103022c; + /** Default theme for material style input methods, which is used by the + {@link android.inputmethodservice.InputMethodService} class. + this inherits from Theme.Panel, but sets up IME appropriate animations + and a few custom attributes. + */ + public static final int Theme_Material_InputMethod=0x0103022d; + /** Material theme (light version). + */ + public static final int Theme_Material_Light=0x01030237; + /** Variant of the material (light) theme that has a solid (opaque) action bar + with an inverse color profile. The dark action bar sharply stands out against + the light content. + */ + public static final int Theme_Material_Light_DarkActionBar=0x01030238; + /** Material light theme for dialog windows and activities, which is used by the + {@link android.app.Dialog} class. This changes the window to be + floating (not fill the entire screen), and puts a frame around its + contents. You can set this theme on an activity if you would like to + make an activity that looks like a Dialog. + */ + public static final int Theme_Material_Light_Dialog=0x01030239; + /** Material light theme for alert dialog windows, which is used by the + {@link android.app.AlertDialog} class. This is basically a dialog + but sets the background to empty so it can do two-tone backgrounds. + For applications targeting Honeycomb or newer, this is the default + AlertDialog theme. + */ + public static final int Theme_Material_Light_Dialog_Alert=0x0103023a; + /** Variant of Theme.Material.Light.Dialog that has a nice minimum width for + a regular dialog. + */ + public static final int Theme_Material_Light_Dialog_MinWidth=0x0103023b; + /** Variant of Theme.Material.Light.Dialog that does not include a title bar. + */ + public static final int Theme_Material_Light_Dialog_NoActionBar=0x0103023c; + /** Variant of Theme.Material.Light.Dialog.NoActionBar that has a nice minimum width for + a regular dialog. + */ + public static final int Theme_Material_Light_Dialog_NoActionBar_MinWidth=0x0103023d; + /** Theme for a presentation window on a secondary display. + */ + public static final int Theme_Material_Light_Dialog_Presentation=0x0103023e; + /** Theme for a window that will be displayed either full-screen on + smaller screens (small, normal) or as a dialog on larger screens + (large, xlarge). + */ + public static final int Theme_Material_Light_DialogWhenLarge=0x0103023f; + /** Theme for a window without an action bar that will be displayed either full-screen + on smaller screens (small, normal) or as a dialog on larger screens + (large, xlarge). + */ + public static final int Theme_Material_Light_DialogWhenLarge_NoActionBar=0x01030240; + /** Variant of the material (light) theme that has a light status bar background with dark + status bar contents. + */ + public static final int Theme_Material_Light_LightStatusBar=0x010302d5; + /** Variant of the material (light) theme with no action bar. + */ + public static final int Theme_Material_Light_NoActionBar=0x01030241; + /** Variant of the material (light) theme that has no title bar and fills + the entire screen. This theme + sets {@link android.R.attr#windowFullscreen} to true. + */ + public static final int Theme_Material_Light_NoActionBar_Fullscreen=0x01030242; + /** Variant of the material (light) theme that has no title bar and fills + the entire screen and extends into the display overscan region. This theme + sets {@link android.R.attr#windowFullscreen} and {@link android.R.attr#windowOverscan} + to true. + */ + public static final int Theme_Material_Light_NoActionBar_Overscan=0x01030243; + /** Variant of the material (light) theme that has no title bar and translucent + system decor. This theme sets {@link android.R.attr#windowTranslucentStatus} and + {@link android.R.attr#windowTranslucentNavigation} to true. + */ + public static final int Theme_Material_Light_NoActionBar_TranslucentDecor=0x01030244; + /** Default material light theme for panel windows. This removes all extraneous + window decorations, so you basically have an empty rectangle in which + to place your content. It makes the window floating, with a transparent + background, and turns off dimming behind the window. + */ + public static final int Theme_Material_Light_Panel=0x01030245; + /** Material light theme for an activity that is to be used for voice interaction. + This gives the activity a floating dialog style, to incorporate with the + system voice experience. + */ + public static final int Theme_Material_Light_Voice=0x01030246; + /** Variant of the material (dark) theme with no action bar. + */ + public static final int Theme_Material_NoActionBar=0x0103022e; + /** Variant of the material (dark) theme that has no title bar and fills + the entire screen. This theme + sets {@link android.R.attr#windowFullscreen} to true. + */ + public static final int Theme_Material_NoActionBar_Fullscreen=0x0103022f; + /** Variant of the material (dark) theme that has no title bar and fills + the entire screen and extends into the display overscan region. This theme + sets {@link android.R.attr#windowFullscreen} and {@link android.R.attr#windowOverscan} + to true. + */ + public static final int Theme_Material_NoActionBar_Overscan=0x01030230; + /** Variant of the material (dark) theme that has no title bar and translucent + system decor. This theme sets {@link android.R.attr#windowTranslucentStatus} and + {@link android.R.attr#windowTranslucentNavigation} to true. + */ + public static final int Theme_Material_NoActionBar_TranslucentDecor=0x01030231; + /** Default material dark theme for panel windows. This removes all extraneous + window decorations, so you basically have an empty rectangle in which + to place your content. It makes the window floating, with a transparent + background, and turns off dimming behind the window. + */ + public static final int Theme_Material_Panel=0x01030232; + /** Default theme for Settings and activities launched from Settings. + */ + public static final int Theme_Material_Settings=0x01030233; + /** Material theme for an activity that is to be used for voice interaction. + This gives the activity a floating dialog style, to incorporate with the + system voice experience. + */ + public static final int Theme_Material_Voice=0x01030234; + /** Default material (dark) for windows that want to have the user's selected + wallpaper appear behind them. + */ + public static final int Theme_Material_Wallpaper=0x01030235; + /** Default material (dark) for windows that want to have the user's selected + wallpaper appear behind them and without an action bar. + */ + public static final int Theme_Material_Wallpaper_NoTitleBar=0x01030236; + public static final int Theme_Micro_Dialog_Alert=0x010304bb; + /** Default theme for activities that don't actually display a UI; that + is, they finish themselves before being resumed. + */ + public static final int Theme_NoDisplay=0x01030055; + /** Variant of {@link #Theme} with no title bar + */ + public static final int Theme_NoTitleBar=0x01030006; + /** Variant of {@link #Theme} that has no title bar and no status bar. This theme + sets {@link android.R.attr#windowFullscreen} to true. + */ + public static final int Theme_NoTitleBar_Fullscreen=0x01030007; + /** No title bar, but Action Mode bars will overlay application content + instead of pushing it down to make room. + */ + public static final int Theme_NoTitleBar_OverlayActionModes=0x0103006a; + /** Default dark theme for panel windows (on API level 10 and lower). This removes all + extraneous window decorations, so you basically have an empty rectangle in which + to place your content. It makes the window floating, with a transparent + background, and turns off dimming behind the window. + */ + public static final int Theme_Panel=0x01030059; + /** Theme for a window that looks like a toast. + */ + public static final int Theme_Toast=0x0103047a; + /** Theme for translucent activities (on API level 10 and lower). That is, windows + that allow you to see through them to the windows behind. This sets up the translucent + flag and appropriate animations for your windows. + */ + public static final int Theme_Translucent=0x0103000f; + /** Variant of {@link #Theme_Translucent} with no title bar + */ + public static final int Theme_Translucent_NoTitleBar=0x01030010; + /** Variant of {@link #Theme_Translucent} that has no title bar and + no status bar + */ + public static final int Theme_Translucent_NoTitleBar_Fullscreen=0x01030011; + /** Theme for windows that want to have the user's selected + wallpaper appear behind them (for API level 10 and lower). + */ + public static final int Theme_Wallpaper=0x0103005e; + /** Variant of {@link #Theme_Wallpaper} that has no title bar + */ + public static final int Theme_Wallpaper_NoTitleBar=0x0103005f; + /** Variant of {@link #Theme_Wallpaper} that + has no title bar or status bar. + */ + public static final int Theme_Wallpaper_NoTitleBar_Fullscreen=0x01030060; + /** Theme for a wallpaper's setting activity, which is designed to be a transparent + background with a dark shade, so the previous Activity is visible in the background. + */ + public static final int Theme_WallpaperSettings=0x01030061; + /** Default theme with an Action Bar. + */ + public static final int Theme_WithActionBar=0x01030069; + public static final int ThemeOverlay=0x01030247; + public static final int ThemeOverlay_Material=0x01030248; + /** Theme overlay that replaces the normal control color, which by default is the same as the + secondary text color, with the primary text color. + */ + public static final int ThemeOverlay_Material_ActionBar=0x01030249; + /** Theme overlay that replaces colors with their dark versions but preserves + the value of colorAccent, colorPrimary and its variants. + */ + public static final int ThemeOverlay_Material_Dark=0x0103024b; + /** Theme overlay that replaces colors with their dark versions and replaces the normal + control color, which by default is the same as the secondary text color, with the primary + text color. + */ + public static final int ThemeOverlay_Material_Dark_ActionBar=0x0103024c; + /** Theme overlay that overrides window properties to display as a dialog. + */ + public static final int ThemeOverlay_Material_Dialog=0x010302d6; + public static final int ThemeOverlay_Material_Dialog_Alert=0x010302d7; + /** Theme overlay that replaces colors with their light versions but preserves + the value of colorAccent, colorPrimary and its variants. + */ + public static final int ThemeOverlay_Material_Light=0x0103024a; + /** Widget Styles + */ + public static final int Widget=0x01030012; + public static final int Widget_AbsListView=0x01030013; + public static final int Widget_ActionBar=0x01030082; + public static final int Widget_ActionBar_TabBar=0x010300f4; + public static final int Widget_ActionBar_TabText=0x010300f3; + public static final int Widget_ActionBar_TabView=0x010300f2; + public static final int Widget_ActionButton=0x01030084; + public static final int Widget_ActionButton_CloseMode=0x01030088; + public static final int Widget_ActionButton_Overflow=0x01030087; + public static final int Widget_AutoCompleteTextView=0x01030027; + public static final int Widget_Button=0x01030014; + public static final int Widget_Button_Inset=0x01030015; + public static final int Widget_Button_Small=0x01030016; + public static final int Widget_Button_Toggle=0x01030017; + public static final int Widget_CalendarView=0x010300eb; + public static final int Widget_CompoundButton=0x01030018; + public static final int Widget_CompoundButton_CheckBox=0x01030019; + public static final int Widget_CompoundButton_RadioButton=0x0103001a; + public static final int Widget_CompoundButton_Star=0x0103001b; + public static final int Widget_DatePicker=0x010300ee; + /** Widget Styles + */ + public static final int Widget_DeviceDefault=0x01030140; + public static final int Widget_DeviceDefault_ActionBar=0x0103016b; + public static final int Widget_DeviceDefault_ActionBar_Solid=0x01030173; + public static final int Widget_DeviceDefault_ActionBar_TabBar=0x01030172; + public static final int Widget_DeviceDefault_ActionBar_TabText=0x01030171; + public static final int Widget_DeviceDefault_ActionBar_TabView=0x01030170; + public static final int Widget_DeviceDefault_ActionButton=0x01030166; + public static final int Widget_DeviceDefault_ActionButton_CloseMode=0x0103016a; + public static final int Widget_DeviceDefault_ActionButton_Overflow=0x01030167; + public static final int Widget_DeviceDefault_ActionButton_TextButton=0x01030168; + public static final int Widget_DeviceDefault_ActionMode=0x01030169; + public static final int Widget_DeviceDefault_AutoCompleteTextView=0x01030147; + public static final int Widget_DeviceDefault_Button=0x01030141; + public static final int Widget_DeviceDefault_Button_Borderless=0x0103016c; + public static final int Widget_DeviceDefault_Button_Borderless_Small=0x01030145; + public static final int Widget_DeviceDefault_Button_Inset=0x01030143; + public static final int Widget_DeviceDefault_Button_Small=0x01030142; + public static final int Widget_DeviceDefault_Button_Toggle=0x01030144; + public static final int Widget_DeviceDefault_CalendarView=0x0103016e; + public static final int Widget_DeviceDefault_CheckedTextView=0x010301db; + public static final int Widget_DeviceDefault_CompoundButton_CheckBox=0x01030148; + public static final int Widget_DeviceDefault_CompoundButton_RadioButton=0x01030159; + public static final int Widget_DeviceDefault_CompoundButton_Star=0x0103015d; + public static final int Widget_DeviceDefault_DatePicker=0x0103016f; + public static final int Widget_DeviceDefault_DropDownItem=0x01030161; + public static final int Widget_DeviceDefault_DropDownItem_Spinner=0x01030162; + public static final int Widget_DeviceDefault_EditText=0x0103014a; + public static final int Widget_DeviceDefault_ExpandableListView=0x0103014b; + public static final int Widget_DeviceDefault_FastScroll=0x010301e9; + public static final int Widget_DeviceDefault_GridView=0x0103014c; + public static final int Widget_DeviceDefault_HorizontalScrollView=0x0103015b; + public static final int Widget_DeviceDefault_ImageButton=0x0103014d; + public static final int Widget_DeviceDefault_Light=0x01030174; + public static final int Widget_DeviceDefault_Light_ActionBar=0x010301a3; + public static final int Widget_DeviceDefault_Light_ActionBar_Solid=0x010301a7; + /** @deprecated Action bars are now themed using the inheritable android:theme attribute. + */ + @Deprecated + public static final int Widget_DeviceDefault_Light_ActionBar_Solid_Inverse=0x010301a8; + public static final int Widget_DeviceDefault_Light_ActionBar_TabBar=0x010301a6; + /** @deprecated Action bars are now themed using the inheritable android:theme attribute. + */ + @Deprecated + public static final int Widget_DeviceDefault_Light_ActionBar_TabBar_Inverse=0x010301a9; + public static final int Widget_DeviceDefault_Light_ActionBar_TabText=0x010301a5; + /** @deprecated Action bars are now themed using the inheritable android:theme attribute. + */ + @Deprecated + public static final int Widget_DeviceDefault_Light_ActionBar_TabText_Inverse=0x010301ab; + public static final int Widget_DeviceDefault_Light_ActionBar_TabView=0x010301a4; + /** @deprecated Action bars are now themed using the inheritable android:theme attribute. + */ + @Deprecated + public static final int Widget_DeviceDefault_Light_ActionBar_TabView_Inverse=0x010301aa; + public static final int Widget_DeviceDefault_Light_ActionButton=0x0103019f; + public static final int Widget_DeviceDefault_Light_ActionButton_CloseMode=0x010301a2; + public static final int Widget_DeviceDefault_Light_ActionButton_Overflow=0x010301a0; + public static final int Widget_DeviceDefault_Light_ActionMode=0x010301a1; + /** @deprecated Action bars are now themed using the inheritable android:theme attribute. + */ + @Deprecated + public static final int Widget_DeviceDefault_Light_ActionMode_Inverse=0x010301ac; + public static final int Widget_DeviceDefault_Light_AutoCompleteTextView=0x0103017b; + public static final int Widget_DeviceDefault_Light_Button=0x01030175; + public static final int Widget_DeviceDefault_Light_Button_Borderless_Small=0x01030179; + public static final int Widget_DeviceDefault_Light_Button_Inset=0x01030177; + public static final int Widget_DeviceDefault_Light_Button_Small=0x01030176; + public static final int Widget_DeviceDefault_Light_Button_Toggle=0x01030178; + public static final int Widget_DeviceDefault_Light_CalendarView=0x0103019e; + public static final int Widget_DeviceDefault_Light_CheckedTextView=0x010301dc; + public static final int Widget_DeviceDefault_Light_CompoundButton_CheckBox=0x0103017c; + public static final int Widget_DeviceDefault_Light_CompoundButton_RadioButton=0x01030190; + public static final int Widget_DeviceDefault_Light_CompoundButton_Star=0x01030194; + public static final int Widget_DeviceDefault_Light_DropDownItem=0x01030198; + public static final int Widget_DeviceDefault_Light_DropDownItem_Spinner=0x01030199; + public static final int Widget_DeviceDefault_Light_EditText=0x0103017e; + public static final int Widget_DeviceDefault_Light_ExpandableListView=0x0103017f; + public static final int Widget_DeviceDefault_Light_FastScroll=0x010301eb; + public static final int Widget_DeviceDefault_Light_GridView=0x01030180; + public static final int Widget_DeviceDefault_Light_HorizontalScrollView=0x01030192; + public static final int Widget_DeviceDefault_Light_ImageButton=0x01030181; + public static final int Widget_DeviceDefault_Light_ListPopupWindow=0x0103019b; + public static final int Widget_DeviceDefault_Light_ListView=0x01030182; + public static final int Widget_DeviceDefault_Light_ListView_DropDown=0x0103017d; + public static final int Widget_DeviceDefault_Light_MediaRouteButton=0x010301d8; + public static final int Widget_DeviceDefault_Light_PopupMenu=0x0103019c; + public static final int Widget_DeviceDefault_Light_PopupWindow=0x01030183; + public static final int Widget_DeviceDefault_Light_ProgressBar=0x01030184; + public static final int Widget_DeviceDefault_Light_ProgressBar_Horizontal=0x01030185; + public static final int Widget_DeviceDefault_Light_ProgressBar_Inverse=0x01030189; + public static final int Widget_DeviceDefault_Light_ProgressBar_Large=0x01030188; + public static final int Widget_DeviceDefault_Light_ProgressBar_Large_Inverse=0x0103018b; + public static final int Widget_DeviceDefault_Light_ProgressBar_Small=0x01030186; + public static final int Widget_DeviceDefault_Light_ProgressBar_Small_Inverse=0x0103018a; + public static final int Widget_DeviceDefault_Light_ProgressBar_Small_Title=0x01030187; + public static final int Widget_DeviceDefault_Light_RatingBar=0x0103018d; + public static final int Widget_DeviceDefault_Light_RatingBar_Indicator=0x0103018e; + public static final int Widget_DeviceDefault_Light_RatingBar_Small=0x0103018f; + public static final int Widget_DeviceDefault_Light_ScrollView=0x01030191; + public static final int Widget_DeviceDefault_Light_SeekBar=0x0103018c; + public static final int Widget_DeviceDefault_Light_Spinner=0x01030193; + public static final int Widget_DeviceDefault_Light_StackView=0x010301ec; + public static final int Widget_DeviceDefault_Light_Tab=0x0103019d; + public static final int Widget_DeviceDefault_Light_TabWidget=0x01030195; + public static final int Widget_DeviceDefault_Light_TextView=0x0103017a; + public static final int Widget_DeviceDefault_Light_TextView_SpinnerItem=0x0103019a; + public static final int Widget_DeviceDefault_Light_WebTextView=0x01030196; + public static final int Widget_DeviceDefault_Light_WebView=0x01030197; + public static final int Widget_DeviceDefault_ListPopupWindow=0x01030164; + public static final int Widget_DeviceDefault_ListView=0x0103014e; + public static final int Widget_DeviceDefault_ListView_DropDown=0x01030149; + public static final int Widget_DeviceDefault_MediaRouteButton=0x010301d7; + public static final int Widget_DeviceDefault_PopupMenu=0x01030165; + public static final int Widget_DeviceDefault_PopupWindow=0x0103014f; + public static final int Widget_DeviceDefault_ProgressBar=0x01030150; + public static final int Widget_DeviceDefault_ProgressBar_Horizontal=0x01030151; + public static final int Widget_DeviceDefault_ProgressBar_Large=0x01030154; + public static final int Widget_DeviceDefault_ProgressBar_Small=0x01030152; + public static final int Widget_DeviceDefault_ProgressBar_Small_Title=0x01030153; + public static final int Widget_DeviceDefault_RatingBar=0x01030156; + public static final int Widget_DeviceDefault_RatingBar_Indicator=0x01030157; + public static final int Widget_DeviceDefault_RatingBar_Small=0x01030158; + public static final int Widget_DeviceDefault_ScrollView=0x0103015a; + public static final int Widget_DeviceDefault_SeekBar=0x01030155; + public static final int Widget_DeviceDefault_Spinner=0x0103015c; + public static final int Widget_DeviceDefault_StackView=0x010301ea; + public static final int Widget_DeviceDefault_Tab=0x0103016d; + public static final int Widget_DeviceDefault_TabWidget=0x0103015e; + public static final int Widget_DeviceDefault_TextView=0x01030146; + public static final int Widget_DeviceDefault_TextView_SpinnerItem=0x01030163; + public static final int Widget_DeviceDefault_WebTextView=0x0103015f; + public static final int Widget_DeviceDefault_WebView=0x01030160; + public static final int Widget_DropDownItem=0x0103002b; + public static final int Widget_DropDownItem_Spinner=0x0103002c; + public static final int Widget_EditText=0x01030023; + public static final int Widget_ExpandableListView=0x01030024; + public static final int Widget_FastScroll=0x010301e5; + public static final int Widget_FragmentBreadCrumbs=0x01030089; + public static final int Widget_Gallery=0x01030035; + public static final int Widget_GridView=0x01030032; + /** Widget Styles + */ + public static final int Widget_Holo=0x0103008a; + public static final int Widget_Holo_ActionBar=0x010300b4; + public static final int Widget_Holo_ActionBar_Solid=0x01030121; + public static final int Widget_Holo_ActionBar_TabBar=0x010300f7; + public static final int Widget_Holo_ActionBar_TabText=0x010300f6; + public static final int Widget_Holo_ActionBar_TabView=0x010300f5; + public static final int Widget_Holo_ActionButton=0x010300af; + public static final int Widget_Holo_ActionButton_CloseMode=0x010300b3; + public static final int Widget_Holo_ActionButton_Overflow=0x010300b0; + public static final int Widget_Holo_ActionButton_TextButton=0x010300b1; + public static final int Widget_Holo_ActionMode=0x010300b2; + public static final int Widget_Holo_AutoCompleteTextView=0x01030090; + public static final int Widget_Holo_Button=0x0103008b; + public static final int Widget_Holo_Button_Borderless=0x010300e2; + public static final int Widget_Holo_Button_Borderless_Small=0x0103011a; + public static final int Widget_Holo_Button_Inset=0x0103008d; + public static final int Widget_Holo_Button_Small=0x0103008c; + public static final int Widget_Holo_Button_Toggle=0x0103008e; + public static final int Widget_Holo_CalendarView=0x010300ec; + public static final int Widget_Holo_CheckedTextView=0x010301d9; + public static final int Widget_Holo_CompoundButton_CheckBox=0x01030091; + public static final int Widget_Holo_CompoundButton_RadioButton=0x010300a2; + public static final int Widget_Holo_CompoundButton_Star=0x010300a6; + public static final int Widget_Holo_DatePicker=0x010300ef; + public static final int Widget_Holo_DropDownItem=0x010300aa; + public static final int Widget_Holo_DropDownItem_Spinner=0x010300ab; + public static final int Widget_Holo_EditText=0x01030093; + public static final int Widget_Holo_ExpandableListView=0x01030094; + public static final int Widget_Holo_GridView=0x01030095; + public static final int Widget_Holo_HorizontalScrollView=0x010300a4; + public static final int Widget_Holo_ImageButton=0x01030096; + /** Light widget styles + */ + public static final int Widget_Holo_Light=0x010300b5; + public static final int Widget_Holo_Light_ActionBar=0x010300e1; + public static final int Widget_Holo_Light_ActionBar_Solid=0x01030122; + public static final int Widget_Holo_Light_ActionBar_Solid_Inverse=0x01030123; + public static final int Widget_Holo_Light_ActionBar_TabBar=0x010300fa; + public static final int Widget_Holo_Light_ActionBar_TabBar_Inverse=0x01030124; + public static final int Widget_Holo_Light_ActionBar_TabText=0x010300f9; + public static final int Widget_Holo_Light_ActionBar_TabText_Inverse=0x01030126; + public static final int Widget_Holo_Light_ActionBar_TabView=0x010300f8; + public static final int Widget_Holo_Light_ActionBar_TabView_Inverse=0x01030125; + public static final int Widget_Holo_Light_ActionButton=0x010300dd; + public static final int Widget_Holo_Light_ActionButton_CloseMode=0x010300e0; + public static final int Widget_Holo_Light_ActionButton_Overflow=0x010300de; + public static final int Widget_Holo_Light_ActionMode=0x010300df; + public static final int Widget_Holo_Light_ActionMode_Inverse=0x01030127; + public static final int Widget_Holo_Light_AutoCompleteTextView=0x010300bb; + public static final int Widget_Holo_Light_Button=0x010300b6; + public static final int Widget_Holo_Light_Button_Borderless_Small=0x0103011b; + public static final int Widget_Holo_Light_Button_Inset=0x010300b8; + public static final int Widget_Holo_Light_Button_Small=0x010300b7; + public static final int Widget_Holo_Light_Button_Toggle=0x010300b9; + public static final int Widget_Holo_Light_CalendarView=0x010300ed; + public static final int Widget_Holo_Light_CheckedTextView=0x010301da; + public static final int Widget_Holo_Light_CompoundButton_CheckBox=0x010300bc; + public static final int Widget_Holo_Light_CompoundButton_RadioButton=0x010300d0; + public static final int Widget_Holo_Light_CompoundButton_Star=0x010300d4; + public static final int Widget_Holo_Light_DropDownItem=0x010300d8; + public static final int Widget_Holo_Light_DropDownItem_Spinner=0x010300d9; + public static final int Widget_Holo_Light_EditText=0x010300be; + public static final int Widget_Holo_Light_ExpandableListView=0x010300bf; + public static final int Widget_Holo_Light_GridView=0x010300c0; + public static final int Widget_Holo_Light_HorizontalScrollView=0x010300d2; + public static final int Widget_Holo_Light_ImageButton=0x010300c1; + public static final int Widget_Holo_Light_ListPopupWindow=0x010300db; + public static final int Widget_Holo_Light_ListView=0x010300c2; + public static final int Widget_Holo_Light_ListView_DropDown=0x010300bd; + public static final int Widget_Holo_Light_MediaRouteButton=0x010301d6; + public static final int Widget_Holo_Light_PopupMenu=0x010300dc; + public static final int Widget_Holo_Light_PopupWindow=0x010300c3; + public static final int Widget_Holo_Light_ProgressBar=0x010300c4; + public static final int Widget_Holo_Light_ProgressBar_Horizontal=0x010300c5; + public static final int Widget_Holo_Light_ProgressBar_Inverse=0x010300c9; + public static final int Widget_Holo_Light_ProgressBar_Large=0x010300c8; + public static final int Widget_Holo_Light_ProgressBar_Large_Inverse=0x010300cb; + public static final int Widget_Holo_Light_ProgressBar_Small=0x010300c6; + public static final int Widget_Holo_Light_ProgressBar_Small_Inverse=0x010300ca; + public static final int Widget_Holo_Light_ProgressBar_Small_Title=0x010300c7; + public static final int Widget_Holo_Light_RatingBar=0x010300cd; + public static final int Widget_Holo_Light_RatingBar_Indicator=0x010300ce; + public static final int Widget_Holo_Light_RatingBar_Small=0x010300cf; + public static final int Widget_Holo_Light_ScrollView=0x010300d1; + public static final int Widget_Holo_Light_SeekBar=0x010300cc; + public static final int Widget_Holo_Light_Spinner=0x010300d3; + public static final int Widget_Holo_Light_Tab=0x010300e4; + public static final int Widget_Holo_Light_TabWidget=0x010300d5; + public static final int Widget_Holo_Light_TextView=0x010300ba; + public static final int Widget_Holo_Light_TextView_SpinnerItem=0x010300da; + public static final int Widget_Holo_Light_WebTextView=0x010300d6; + public static final int Widget_Holo_Light_WebView=0x010300d7; + public static final int Widget_Holo_ListPopupWindow=0x010300ad; + public static final int Widget_Holo_ListView=0x01030097; + public static final int Widget_Holo_ListView_DropDown=0x01030092; + public static final int Widget_Holo_MediaRouteButton=0x010301d5; + public static final int Widget_Holo_PopupMenu=0x010300ae; + public static final int Widget_Holo_PopupWindow=0x01030098; + public static final int Widget_Holo_ProgressBar=0x01030099; + public static final int Widget_Holo_ProgressBar_Horizontal=0x0103009a; + public static final int Widget_Holo_ProgressBar_Large=0x0103009d; + public static final int Widget_Holo_ProgressBar_Small=0x0103009b; + public static final int Widget_Holo_ProgressBar_Small_Title=0x0103009c; + public static final int Widget_Holo_RatingBar=0x0103009f; + public static final int Widget_Holo_RatingBar_Indicator=0x010300a0; + public static final int Widget_Holo_RatingBar_Small=0x010300a1; + public static final int Widget_Holo_ScrollView=0x010300a3; + public static final int Widget_Holo_SeekBar=0x0103009e; + public static final int Widget_Holo_Spinner=0x010300a5; + public static final int Widget_Holo_Tab=0x010300e3; + public static final int Widget_Holo_TabWidget=0x010300a7; + public static final int Widget_Holo_TextView=0x0103008f; + public static final int Widget_Holo_TextView_SpinnerItem=0x010300ac; + public static final int Widget_Holo_WebTextView=0x010300a8; + public static final int Widget_Holo_WebView=0x010300a9; + public static final int Widget_ImageButton=0x01030026; + public static final int Widget_ImageWell=0x01030025; + public static final int Widget_KeyboardView=0x01030057; + public static final int Widget_ListPopupWindow=0x01030085; + public static final int Widget_ListView=0x0103002e; + public static final int Widget_ListView_DropDown=0x01030030; + public static final int Widget_ListView_Menu=0x01030031; + public static final int Widget_ListView_White=0x0103002f; + public static final int Widget_Material=0x0103024d; + public static final int Widget_Material_ActionBar=0x0103024e; + public static final int Widget_Material_ActionBar_Solid=0x0103024f; + public static final int Widget_Material_ActionBar_TabBar=0x01030250; + public static final int Widget_Material_ActionBar_TabText=0x01030251; + public static final int Widget_Material_ActionBar_TabView=0x01030252; + public static final int Widget_Material_ActionButton=0x01030253; + public static final int Widget_Material_ActionButton_CloseMode=0x01030254; + public static final int Widget_Material_ActionButton_Overflow=0x01030255; + public static final int Widget_Material_ActionMode=0x01030256; + public static final int Widget_Material_AutoCompleteTextView=0x01030257; + /** Bordered ink button + */ + public static final int Widget_Material_Button=0x01030258; + /** Borderless ink button + */ + public static final int Widget_Material_Button_Borderless=0x01030259; + /** Colored borderless ink button + */ + public static final int Widget_Material_Button_Borderless_Colored=0x0103025a; + /** Small borderless ink button + */ + public static final int Widget_Material_Button_Borderless_Small=0x0103025b; + /** Colored bordered ink button + */ + public static final int Widget_Material_Button_Colored=0x010302d3; + public static final int Widget_Material_Button_Inset=0x0103025c; + /** Small bordered ink button + */ + public static final int Widget_Material_Button_Small=0x0103025d; + public static final int Widget_Material_Button_Toggle=0x0103025e; + public static final int Widget_Material_ButtonBar=0x0103025f; + public static final int Widget_Material_ButtonBar_AlertDialog=0x01030260; + public static final int Widget_Material_CalendarView=0x01030261; + public static final int Widget_Material_CheckedTextView=0x01030262; + public static final int Widget_Material_CompoundButton_CheckBox=0x01030263; + public static final int Widget_Material_CompoundButton_RadioButton=0x01030264; + public static final int Widget_Material_CompoundButton_Star=0x01030265; + public static final int Widget_Material_DatePicker=0x01030266; + public static final int Widget_Material_DropDownItem=0x01030267; + public static final int Widget_Material_DropDownItem_Spinner=0x01030268; + public static final int Widget_Material_EditText=0x01030269; + public static final int Widget_Material_ExpandableListView=0x0103026a; + public static final int Widget_Material_FastScroll=0x0103026b; + public static final int Widget_Material_GridView=0x0103026c; + public static final int Widget_Material_HorizontalScrollView=0x0103026d; + public static final int Widget_Material_ImageButton=0x0103026e; + /** Light widget styles + */ + public static final int Widget_Material_Light=0x0103028e; + public static final int Widget_Material_Light_ActionBar=0x0103028f; + public static final int Widget_Material_Light_ActionBar_Solid=0x01030290; + public static final int Widget_Material_Light_ActionBar_TabBar=0x01030291; + public static final int Widget_Material_Light_ActionBar_TabText=0x01030292; + public static final int Widget_Material_Light_ActionBar_TabView=0x01030293; + public static final int Widget_Material_Light_ActionButton=0x01030294; + public static final int Widget_Material_Light_ActionButton_CloseMode=0x01030295; + public static final int Widget_Material_Light_ActionButton_Overflow=0x01030296; + public static final int Widget_Material_Light_ActionMode=0x01030297; + public static final int Widget_Material_Light_AutoCompleteTextView=0x01030298; + public static final int Widget_Material_Light_Button=0x01030299; + public static final int Widget_Material_Light_Button_Borderless=0x0103029a; + public static final int Widget_Material_Light_Button_Borderless_Colored=0x0103029b; + public static final int Widget_Material_Light_Button_Borderless_Small=0x0103029c; + public static final int Widget_Material_Light_Button_Inset=0x0103029d; + public static final int Widget_Material_Light_Button_Small=0x0103029e; + public static final int Widget_Material_Light_Button_Toggle=0x0103029f; + public static final int Widget_Material_Light_ButtonBar=0x010302a0; + public static final int Widget_Material_Light_ButtonBar_AlertDialog=0x010302a1; + public static final int Widget_Material_Light_CalendarView=0x010302a2; + public static final int Widget_Material_Light_CheckedTextView=0x010302a3; + public static final int Widget_Material_Light_CompoundButton_CheckBox=0x010302a4; + public static final int Widget_Material_Light_CompoundButton_RadioButton=0x010302a5; + public static final int Widget_Material_Light_CompoundButton_Star=0x010302a6; + public static final int Widget_Material_Light_DatePicker=0x010302a7; + public static final int Widget_Material_Light_DropDownItem=0x010302a8; + public static final int Widget_Material_Light_DropDownItem_Spinner=0x010302a9; + public static final int Widget_Material_Light_EditText=0x010302aa; + public static final int Widget_Material_Light_ExpandableListView=0x010302ab; + public static final int Widget_Material_Light_FastScroll=0x010302ac; + public static final int Widget_Material_Light_GridView=0x010302ad; + public static final int Widget_Material_Light_HorizontalScrollView=0x010302ae; + public static final int Widget_Material_Light_ImageButton=0x010302af; + public static final int Widget_Material_Light_ListPopupWindow=0x010302b0; + public static final int Widget_Material_Light_ListView=0x010302b1; + public static final int Widget_Material_Light_ListView_DropDown=0x010302b2; + public static final int Widget_Material_Light_MediaRouteButton=0x010302b3; + public static final int Widget_Material_Light_PopupMenu=0x010302b4; + public static final int Widget_Material_Light_PopupMenu_Overflow=0x010302b5; + public static final int Widget_Material_Light_PopupWindow=0x010302b6; + public static final int Widget_Material_Light_ProgressBar=0x010302b7; + public static final int Widget_Material_Light_ProgressBar_Horizontal=0x010302b8; + public static final int Widget_Material_Light_ProgressBar_Inverse=0x010302b9; + public static final int Widget_Material_Light_ProgressBar_Large=0x010302ba; + public static final int Widget_Material_Light_ProgressBar_Large_Inverse=0x010302bb; + public static final int Widget_Material_Light_ProgressBar_Small=0x010302bc; + public static final int Widget_Material_Light_ProgressBar_Small_Inverse=0x010302bd; + public static final int Widget_Material_Light_ProgressBar_Small_Title=0x010302be; + public static final int Widget_Material_Light_RatingBar=0x010302bf; + public static final int Widget_Material_Light_RatingBar_Indicator=0x010302c0; + public static final int Widget_Material_Light_RatingBar_Small=0x010302c1; + public static final int Widget_Material_Light_ScrollView=0x010302c2; + public static final int Widget_Material_Light_SearchView=0x010302c3; + public static final int Widget_Material_Light_SeekBar=0x010302c4; + public static final int Widget_Material_Light_SegmentedButton=0x010302c5; + public static final int Widget_Material_Light_Spinner=0x010302c7; + public static final int Widget_Material_Light_Spinner_Underlined=0x010302c8; + public static final int Widget_Material_Light_StackView=0x010302c6; + public static final int Widget_Material_Light_Tab=0x010302c9; + public static final int Widget_Material_Light_TabWidget=0x010302ca; + public static final int Widget_Material_Light_TextView=0x010302cb; + public static final int Widget_Material_Light_TextView_SpinnerItem=0x010302cc; + public static final int Widget_Material_Light_TimePicker=0x010302cd; + public static final int Widget_Material_Light_WebTextView=0x010302ce; + public static final int Widget_Material_Light_WebView=0x010302cf; + public static final int Widget_Material_ListPopupWindow=0x0103026f; + public static final int Widget_Material_ListView=0x01030270; + public static final int Widget_Material_ListView_DropDown=0x01030271; + public static final int Widget_Material_MediaRouteButton=0x01030272; + public static final int Widget_Material_PopupMenu=0x01030273; + public static final int Widget_Material_PopupMenu_Overflow=0x01030274; + public static final int Widget_Material_PopupWindow=0x01030275; + public static final int Widget_Material_ProgressBar=0x01030276; + public static final int Widget_Material_ProgressBar_Horizontal=0x01030277; + public static final int Widget_Material_ProgressBar_Large=0x01030278; + public static final int Widget_Material_ProgressBar_Small=0x01030279; + public static final int Widget_Material_ProgressBar_Small_Title=0x0103027a; + public static final int Widget_Material_RatingBar=0x0103027b; + public static final int Widget_Material_RatingBar_Indicator=0x0103027c; + public static final int Widget_Material_RatingBar_Small=0x0103027d; + public static final int Widget_Material_ScrollView=0x0103027e; + public static final int Widget_Material_SearchView=0x0103027f; + public static final int Widget_Material_SeekBar=0x01030280; + public static final int Widget_Material_SegmentedButton=0x01030281; + public static final int Widget_Material_Spinner=0x01030283; + public static final int Widget_Material_Spinner_Underlined=0x01030284; + public static final int Widget_Material_StackView=0x01030282; + public static final int Widget_Material_Tab=0x01030285; + public static final int Widget_Material_TabWidget=0x01030286; + public static final int Widget_Material_TextView=0x01030287; + public static final int Widget_Material_TextView_SpinnerItem=0x01030288; + public static final int Widget_Material_TimePicker=0x01030289; + public static final int Widget_Material_Toolbar=0x0103028a; + public static final int Widget_Material_Toolbar_Button_Navigation=0x0103028b; + public static final int Widget_Material_WebTextView=0x0103028c; + public static final int Widget_Material_WebView=0x0103028d; + public static final int Widget_PopupMenu=0x01030086; + public static final int Widget_PopupWindow=0x01030036; + public static final int Widget_ProgressBar=0x0103001c; + public static final int Widget_ProgressBar_Horizontal=0x0103001f; + public static final int Widget_ProgressBar_Inverse=0x0103005b; + public static final int Widget_ProgressBar_Large=0x0103001d; + public static final int Widget_ProgressBar_Large_Inverse=0x0103005c; + public static final int Widget_ProgressBar_Small=0x0103001e; + public static final int Widget_ProgressBar_Small_Inverse=0x0103005d; + public static final int Widget_RatingBar=0x01030021; + public static final int Widget_ScrollView=0x0103002d; + public static final int Widget_SeekBar=0x01030020; + public static final int Widget_Spinner=0x01030028; + public static final int Widget_Spinner_DropDown=0x01030083; + public static final int Widget_StackView=0x010301e6; + public static final int Widget_TabWidget=0x01030034; + public static final int Widget_TextView=0x01030022; + public static final int Widget_TextView_PopupMenu=0x01030029; + public static final int Widget_TextView_SpinnerItem=0x0103002a; + public static final int Widget_Toolbar=0x010301e7; + public static final int Widget_Toolbar_Button_Navigation=0x010301e8; + public static final int Widget_WebView=0x01030033; + } + public static final class transition { + /** A transition that moves views in or out of the scene to or from the edges when + a view visibility changes. + */ + public static final int explode=0x010f0003; + /** A transition that fades views in and out. + */ + public static final int fade=0x010f0002; + /** A transition that moves and resizes a view + */ + public static final int move=0x010f0001; + /** Used for Activity Transitions, this transition indicates that no Transition + should be used. + */ + public static final int no_transition=0x010f0000; + /** A transition that moves views in or out of the scene to or from the bottom edge when + a view visibility changes. + */ + public static final int slide_bottom=0x010f0004; + /** A transition that moves views in or out of the scene to or from the left edge when + a view visibility changes. + */ + public static final int slide_left=0x010f0007; + /** A transition that moves views in or out of the scene to or from the right edge when + a view visibility changes. + */ + public static final int slide_right=0x010f0006; + /** A transition that moves views in or out of the scene to or from the top edge when + a view visibility changes. + */ + public static final int slide_top=0x010f0005; + } + public static final class xml { + public static final int apns=0x01110000; + public static final int audio_assets=0x01110001; + public static final int autotext=0x01110002; + public static final int bookmarks=0x01110003; + public static final int default_zen_mode_config=0x01110004; + public static final int eri=0x01110005; + public static final int global_keys=0x01110006; + public static final int password_kbd_numeric=0x01110009; + public static final int password_kbd_qwerty=0x0111000b; + public static final int password_kbd_qwerty_shifted=0x0111000c; + public static final int password_kbd_symbols=0x0111000d; + public static final int password_kbd_symbols_shift=0x0111000e; + public static final int power_profile=0x0111000f; + public static final int sms_7bit_translation_table=0x01110011; + public static final int sms_short_codes=0x01110012; + public static final int storage_list=0x01110013; + public static final int time_zones_by_country=0x01110014; + } + public static final class styleable { + /** Attributes that can be used with a AbsListView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AbsListView_cacheColorHint android:cacheColorHint} Indicates that this list will always be drawn on top of solid, single-color + opaque background.
{@link #AbsListView_choiceMode android:choiceMode} Defines the choice behavior for the view.
{@link #AbsListView_drawSelectorOnTop android:drawSelectorOnTop} When set to true, the selector will be drawn over the selected item.
{@link #AbsListView_fastScrollAlwaysVisible android:fastScrollAlwaysVisible} When set to true, the list will always show the fast scroll interface.
{@link #AbsListView_fastScrollEnabled android:fastScrollEnabled} Enables the fast scroll thumb that can be dragged to quickly scroll through + the list.
{@link #AbsListView_fastScrollStyle android:fastScrollStyle} Specifies the style of the fast scroll decorations.
{@link #AbsListView_listSelector android:listSelector} Drawable used to indicate the currently selected item in the list.
{@link #AbsListView_scrollingCache android:scrollingCache} When set to true, the list uses a drawing cache during scrolling.
{@link #AbsListView_smoothScrollbar android:smoothScrollbar} When set to true, the list will use a more refined calculation + method based on the pixels height of the items visible on screen.
{@link #AbsListView_stackFromBottom android:stackFromBottom} Used by ListView and GridView to stack their content from the bottom.
{@link #AbsListView_textFilterEnabled android:textFilterEnabled} When set to true, the list will filter results as the user types.
{@link #AbsListView_transcriptMode android:transcriptMode} Sets the transcript mode for the list.
+ @see #AbsListView_cacheColorHint + @see #AbsListView_choiceMode + @see #AbsListView_drawSelectorOnTop + @see #AbsListView_fastScrollAlwaysVisible + @see #AbsListView_fastScrollEnabled + @see #AbsListView_fastScrollStyle + @see #AbsListView_listSelector + @see #AbsListView_scrollingCache + @see #AbsListView_smoothScrollbar + @see #AbsListView_stackFromBottom + @see #AbsListView_textFilterEnabled + @see #AbsListView_transcriptMode + */ + public static final int[] AbsListView = { + 0x010100fb, 0x010100fc, 0x010100fd, 0x010100fe, + 0x010100ff, 0x01010100, 0x01010101, 0x0101012b, + 0x01010226, 0x01010231, 0x01010335, 0x010103f7 + }; + /** +

+ @attr description + Indicates that this list will always be drawn on top of solid, single-color + opaque background. This allows the list to optimize drawing. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#cacheColorHint}. + @attr name android:cacheColorHint + */ + public static final int AbsListView_cacheColorHint = 6; + /** +

+ @attr description + Defines the choice behavior for the view. By default, lists do not have + any choice behavior. By setting the choiceMode to singleChoice, the list + allows up to one item to be in a chosen state. By setting the choiceMode to + multipleChoice, the list allows any number of items to be chosen. + Finally, by setting the choiceMode to multipleChoiceModal the list allows + any number of items to be chosen in a special selection mode. + The application will supply a + {@link android.widget.AbsListView.MultiChoiceModeListener} using + {@link android.widget.AbsListView#setMultiChoiceModeListener} to control the + selection mode. This uses the {@link android.view.ActionMode} API. + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0 Normal list that does not indicate choices.
singleChoice1 The list allows up to one choice.
multipleChoice2 The list allows multiple choices.
multipleChoiceModal3 The list allows multiple choices in a custom selection mode.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#choiceMode}. + @attr name android:choiceMode + */ + public static final int AbsListView_choiceMode = 7; + /** +

+ @attr description + When set to true, the selector will be drawn over the selected item. + Otherwise the selector is drawn behind the selected item. The default + value is false. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawSelectorOnTop}. + @attr name android:drawSelectorOnTop + */ + public static final int AbsListView_drawSelectorOnTop = 1; + /** +

+ @attr description + When set to true, the list will always show the fast scroll interface. + This setting implies fastScrollEnabled. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fastScrollAlwaysVisible}. + @attr name android:fastScrollAlwaysVisible + */ + public static final int AbsListView_fastScrollAlwaysVisible = 10; + /** +

+ @attr description + Enables the fast scroll thumb that can be dragged to quickly scroll through + the list. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fastScrollEnabled}. + @attr name android:fastScrollEnabled + */ + public static final int AbsListView_fastScrollEnabled = 8; + /** +

+ @attr description + Specifies the style of the fast scroll decorations. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fastScrollStyle}. + @attr name android:fastScrollStyle + */ + public static final int AbsListView_fastScrollStyle = 11; + /** +

+ @attr description + Drawable used to indicate the currently selected item in the list. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#listSelector}. + @attr name android:listSelector + */ + public static final int AbsListView_listSelector = 0; + /** +

+ @attr description + When set to true, the list uses a drawing cache during scrolling. + This makes the rendering faster but uses more memory. The default + value is true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scrollingCache}. + @attr name android:scrollingCache + */ + public static final int AbsListView_scrollingCache = 3; + /** +

+ @attr description + When set to true, the list will use a more refined calculation + method based on the pixels height of the items visible on screen. This + property is set to true by default but should be set to false if your adapter + will display items of varying heights. When this property is set to true and + your adapter displays items of varying heights, the scrollbar thumb will + change size as the user scrolls through the list. When set to fale, the list + will use only the number of items in the adapter and the number of items visible + on screen to determine the scrollbar's properties. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#smoothScrollbar}. + @attr name android:smoothScrollbar + */ + public static final int AbsListView_smoothScrollbar = 9; + /** +

+ @attr description + Used by ListView and GridView to stack their content from the bottom. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#stackFromBottom}. + @attr name android:stackFromBottom + */ + public static final int AbsListView_stackFromBottom = 2; + /** +

+ @attr description + When set to true, the list will filter results as the user types. The + List's adapter must support the Filterable interface for this to work. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textFilterEnabled}. + @attr name android:textFilterEnabled + */ + public static final int AbsListView_textFilterEnabled = 4; + /** +

+ @attr description + Sets the transcript mode for the list. In transcript mode, the list + scrolls to the bottom to make new items visible when they are added. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
disabled0 Disables transcript mode. This is the default value.
normal1 The list will automatically scroll to the bottom when + a data set change notification is received and only if the last item is + already visible on screen.
alwaysScroll2 The list will automatically scroll to the bottom, no matter what items + are currently visible.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#transcriptMode}. + @attr name android:transcriptMode + */ + public static final int AbsListView_transcriptMode = 5; + /** Attributes that can be used with a AbsSpinner. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #AbsSpinner_entries android:entries} Reference to an array resource that will populate the Spinner.
+ @see #AbsSpinner_entries + */ + public static final int[] AbsSpinner = { + 0x010100b2 + }; + /** +

+ @attr description + Reference to an array resource that will populate the Spinner. For static content, + this is simpler than populating the Spinner programmatically. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#entries}. + @attr name android:entries + */ + public static final int AbsSpinner_entries = 0; + /** Attributes that can be used with a AbsoluteLayout_Layout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AbsoluteLayout_Layout_layout_x android:layout_x}
{@link #AbsoluteLayout_Layout_layout_y android:layout_y}
+ @see #AbsoluteLayout_Layout_layout_x + @see #AbsoluteLayout_Layout_layout_y + */ + public static final int[] AbsoluteLayout_Layout = { + 0x0101017f, 0x01010180 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_x} + attribute's value can be found in the {@link #AbsoluteLayout_Layout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:layout_x + */ + public static final int AbsoluteLayout_Layout_layout_x = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_y} + attribute's value can be found in the {@link #AbsoluteLayout_Layout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:layout_y + */ + public static final int AbsoluteLayout_Layout_layout_y = 1; + /** Attributes that can be used with a AccelerateInterpolator. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #AccelerateInterpolator_factor android:factor} This is the amount of deceleration to add when easing in.
+ @see #AccelerateInterpolator_factor + */ + public static final int[] AccelerateInterpolator = { + 0x010101d3 + }; + /** +

+ @attr description + This is the amount of deceleration to add when easing in. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#factor}. + @attr name android:factor + */ + public static final int AccelerateInterpolator_factor = 0; + /** Use accessibility-service as the root tag of the XML resource that + describes an {@link android.accessibilityservice.AccessibilityService} service, + which is referenced from its + {@link android.accessibilityservice.AccessibilityService#SERVICE_META_DATA} + meta-data entry. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #AccessibilityService_accessibilityEventTypes android:accessibilityEventTypes} The event types this serivce would like to receive as specified in + {@link android.view.accessibility.AccessibilityEvent}.
{@link #AccessibilityService_accessibilityFeedbackType android:accessibilityFeedbackType} The feedback types this serivce provides as specified in + {@link android.accessibilityservice.AccessibilityServiceInfo}.
{@link #AccessibilityService_accessibilityFlags android:accessibilityFlags} Additional flags as specified in + {@link android.accessibilityservice.AccessibilityServiceInfo}.
{@link #AccessibilityService_canRequestEnhancedWebAccessibility android:canRequestEnhancedWebAccessibility} Attribute whether the accessibility service wants to be able to request enhanced + web accessibility enhancements.
{@link #AccessibilityService_canRequestFilterKeyEvents android:canRequestFilterKeyEvents} Attribute whether the accessibility service wants to be able to request to + filter key events.
{@link #AccessibilityService_canRequestTouchExplorationMode android:canRequestTouchExplorationMode} Attribute whether the accessibility service wants to be able to request touch + exploration mode in which touched items are spoken aloud and the UI can be + explored via gestures.
{@link #AccessibilityService_canRetrieveWindowContent android:canRetrieveWindowContent} Attribute whether the accessibility service wants to be able to retrieve the + active window content.
{@link #AccessibilityService_description android:description} Short description of the accessibility serivce purpose or behavior.
{@link #AccessibilityService_notificationTimeout android:notificationTimeout} The minimal period in milliseconds between two accessibility events of the same type + are sent to this serivce.
{@link #AccessibilityService_packageNames android:packageNames} Comma separated package names from which this serivce would like to receive events (leave out for all packages).
{@link #AccessibilityService_settingsActivity android:settingsActivity} Component name of an activity that allows the user to modify + the settings for this service.
+ @see #AccessibilityService_accessibilityEventTypes + @see #AccessibilityService_accessibilityFeedbackType + @see #AccessibilityService_accessibilityFlags + @see #AccessibilityService_canRequestEnhancedWebAccessibility + @see #AccessibilityService_canRequestFilterKeyEvents + @see #AccessibilityService_canRequestTouchExplorationMode + @see #AccessibilityService_canRetrieveWindowContent + @see #AccessibilityService_description + @see #AccessibilityService_notificationTimeout + @see #AccessibilityService_packageNames + @see #AccessibilityService_settingsActivity + */ + public static final int[] AccessibilityService = { + 0x01010020, 0x01010225, 0x01010380, 0x01010381, + 0x01010382, 0x01010383, 0x01010384, 0x01010385, + 0x010103d7, 0x010103d8, 0x010103d9 + }; + /** +

+ @attr description + The event types this serivce would like to receive as specified in + {@link android.view.accessibility.AccessibilityEvent}. This setting + can be changed at runtime by calling + {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) + android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + + + + + + + + + + + + + +
ConstantValueDescription
typeViewClicked0x00000001 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_CLICKED} events.
typeViewLongClicked0x00000002 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_LONG_CLICKED} events.
typeViewSelected0x00000004 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_SELECTED} events.
typeViewFocused0x00000008 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_FOCUSED} events.
typeViewTextChanged0x00000010 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_TEXT_CHANGED} events.
typeWindowStateChanged0x00000020 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_WINDOW_STATE_CHANGED} events.
typeNotificationStateChanged0x00000040 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_NOTIFICATION_STATE_CHANGED} events.
typeViewHoverEnter0x00000080 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_HOVER_ENTER} events.
typeViewHoverExit0x00000100 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_HOVER_EXIT} events.
typeTouchExplorationGestureStart0x00000200 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_TOUCH_EXPLORATION_GESTURE_START} events.
typeTouchExplorationGestureEnd0x00000400 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_TOUCH_EXPLORATION_GESTURE_END} events.
typeWindowContentChanged0x00000800 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_WINDOW_CONTENT_CHANGED} events.
typeViewScrolled0x000001000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_SCROLLED} events.
typeViewTextSelectionChanged0x000002000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_TEXT_SELECTION_CHANGED} events.
typeAnnouncement0x00004000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_ANNOUNCEMENT} events.
typeViewAccessibilityFocused0x00008000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_ACCESSIBILITY_FOCUSED} events.
typeViewAccessibilityFocusCleared0x00010000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_ACCESSIBILITY_FOCUS_CLEARED} events.
typeViewTextTraversedAtMovementGranularity0x00020000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_TEXT_TRAVERSED_AT_MOVEMENT_GRANULARITY} events.
typeGestureDetectionStart0x00040000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_GESTURE_DETECTION_START} events.
typeGestureDetectionEnd0x00080000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_GESTURE_DETECTION_END} events.
typeTouchInteractionStart0x00100000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_TOUCH_INTERACTION_START} events.
typeTouchInteractionEnd0x00200000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_TOUCH_INTERACTION_END} events.
typeWindowsChanged0x00400000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_WINDOWS_CHANGED} events.
typeContextClicked0x00800000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_CONTEXT_CLICKED} events.
typeAssistReadingContext0x01000000 Receives {@link android.view.accessibility.AccessibilityEvent#TYPE_ASSIST_READING_CONTEXT} events.
typeAllMask0xffffffff Receives {@link android.view.accessibility.AccessibilityEvent#TYPES_ALL_MASK} i.e. all events.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#accessibilityEventTypes}. + @attr name android:accessibilityEventTypes + */ + public static final int AccessibilityService_accessibilityEventTypes = 2; + /** +

+ @attr description + The feedback types this serivce provides as specified in + {@link android.accessibilityservice.AccessibilityServiceInfo}. This setting + can be changed at runtime by calling + {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) + android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
feedbackSpoken0x00000001 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_SPOKEN} feedback.
feedbackHaptic0x00000002 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_HAPTIC} feedback.
feedbackAudible0x00000004 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_AUDIBLE} feedback.
feedbackVisual0x00000008 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_VISUAL} feedback.
feedbackGeneric0x00000010 Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_GENERIC} feedback.
feedbackAllMask0xffffffff Provides {@link android.accessibilityservice.AccessibilityServiceInfo#FEEDBACK_ALL_MASK} feedback.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#accessibilityFeedbackType}. + @attr name android:accessibilityFeedbackType + */ + public static final int AccessibilityService_accessibilityFeedbackType = 4; + /** +

+ @attr description + Additional flags as specified in + {@link android.accessibilityservice.AccessibilityServiceInfo}. + This setting can be changed at runtime by calling + {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) + android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
flagDefault0x00000001 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#DEFAULT}
flagIncludeNotImportantViews0x00000002 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_INCLUDE_NOT_IMPORTANT_VIEWS}
flagRequestTouchExplorationMode0x00000004 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REQUEST_TOUCH_EXPLORATION_MODE}
flagRequestEnhancedWebAccessibility0x00000008 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REQUEST_ENHANCED_WEB_ACCESSIBILITY}
flagReportViewIds0x00000010 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REPORT_VIEW_IDS}
flagRequestFilterKeyEvents0x00000020 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_REQUEST_FILTER_KEY_EVENTS}
flagRetrieveInteractiveWindows0x00000040 Has flag {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_RETRIEVE_INTERACTIVE_WINDOWS}
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#accessibilityFlags}. + @attr name android:accessibilityFlags + */ + public static final int AccessibilityService_accessibilityFlags = 6; + /** +

+ @attr description + Attribute whether the accessibility service wants to be able to request enhanced + web accessibility enhancements. For example, installing scripts to make app + content more accessible. +

+ Required to allow setting the {@link android.accessibilityservice + #AccessibilityServiceInfo#FLAG_REQUEST_ENHANCED_WEB_ACCESSIBILITY} flag. +

+ + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#canRequestEnhancedWebAccessibility}. + @attr name android:canRequestEnhancedWebAccessibility + */ + public static final int AccessibilityService_canRequestEnhancedWebAccessibility = 9; + /** +

+ @attr description + Attribute whether the accessibility service wants to be able to request to + filter key events. +

+ Required to allow setting the {@link android.accessibilityservice + #AccessibilityServiceInfo#FLAG_REQUEST_FILTER_KEY_EVENTS} flag. +

+ + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#canRequestFilterKeyEvents}. + @attr name android:canRequestFilterKeyEvents + */ + public static final int AccessibilityService_canRequestFilterKeyEvents = 10; + /** +

+ @attr description + Attribute whether the accessibility service wants to be able to request touch + exploration mode in which touched items are spoken aloud and the UI can be + explored via gestures. +

+ Required to allow setting the {@link android.accessibilityservice + #AccessibilityServiceInfo#FLAG_REQUEST_TOUCH_EXPLORATION_MODE} flag. +

+ + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#canRequestTouchExplorationMode}. + @attr name android:canRequestTouchExplorationMode + */ + public static final int AccessibilityService_canRequestTouchExplorationMode = 8; + /** +

+ @attr description + Attribute whether the accessibility service wants to be able to retrieve the + active window content. This setting cannot be changed at runtime. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#canRetrieveWindowContent}. + @attr name android:canRetrieveWindowContent + */ + public static final int AccessibilityService_canRetrieveWindowContent = 7; + /** +

+ @attr description + Short description of the accessibility serivce purpose or behavior. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#description}. + @attr name android:description + */ + public static final int AccessibilityService_description = 0; + /** +

+ @attr description + The minimal period in milliseconds between two accessibility events of the same type + are sent to this serivce. This setting can be changed at runtime by calling + {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) + android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#notificationTimeout}. + @attr name android:notificationTimeout + */ + public static final int AccessibilityService_notificationTimeout = 5; + /** +

+ @attr description + Comma separated package names from which this serivce would like to receive events (leave out for all packages). + {@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo) + android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#packageNames}. + @attr name android:packageNames + */ + public static final int AccessibilityService_packageNames = 3; + /** +

+ @attr description + Component name of an activity that allows the user to modify + the settings for this service. This setting cannot be changed at runtime. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#settingsActivity}. + @attr name android:settingsActivity + */ + public static final int AccessibilityService_settingsActivity = 1; + /** Use account-authenticator as the root tag of the XML resource that + describes an account authenticator. + +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AccountAuthenticator_accountPreferences android:accountPreferences} A preferences.
{@link #AccountAuthenticator_accountType android:accountType} The account type this authenticator handles.
{@link #AccountAuthenticator_customTokens android:customTokens} Account handles its own token storage and permissions.
{@link #AccountAuthenticator_icon android:icon} The icon of the authenticator.
{@link #AccountAuthenticator_label android:label} The user-visible name of the authenticator.
{@link #AccountAuthenticator_smallIcon android:smallIcon} Smaller icon of the authenticator.
+ @see #AccountAuthenticator_accountPreferences + @see #AccountAuthenticator_accountType + @see #AccountAuthenticator_customTokens + @see #AccountAuthenticator_icon + @see #AccountAuthenticator_label + @see #AccountAuthenticator_smallIcon + */ + public static final int[] AccountAuthenticator = { + 0x01010001, 0x01010002, 0x0101028f, 0x0101029e, + 0x0101029f, 0x0101033b + }; + /** +

+ @attr description + A preferences.xml file for authenticator-specific settings. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#accountPreferences}. + @attr name android:accountPreferences + */ + public static final int AccountAuthenticator_accountPreferences = 4; + /** +

+ @attr description + The account type this authenticator handles. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#accountType}. + @attr name android:accountType + */ + public static final int AccountAuthenticator_accountType = 2; + /** +

+ @attr description + Account handles its own token storage and permissions. + Default to false + + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#customTokens}. + @attr name android:customTokens + */ + public static final int AccountAuthenticator_customTokens = 5; + /** +

+ @attr description + The icon of the authenticator. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int AccountAuthenticator_icon = 1; + /** +

+ @attr description + The user-visible name of the authenticator. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#label}. + @attr name android:label + */ + public static final int AccountAuthenticator_label = 0; + /** +

+ @attr description + Smaller icon of the authenticator. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#smallIcon}. + @attr name android:smallIcon + */ + public static final int AccountAuthenticator_smallIcon = 3; + /** Attributes used to style the Action Bar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background android:background} Specifies a background drawable for the action bar.
{@link #ActionBar_backgroundSplit android:backgroundSplit} Specifies a background drawable for the bottom component of a split action bar.
{@link #ActionBar_backgroundStacked android:backgroundStacked} Specifies a background drawable for a second stacked row of the action bar.
{@link #ActionBar_contentInsetEnd android:contentInsetEnd} Minimum inset for content views within a bar.
{@link #ActionBar_contentInsetLeft android:contentInsetLeft} Minimum inset for content views within a bar.
{@link #ActionBar_contentInsetRight android:contentInsetRight} Minimum inset for content views within a bar.
{@link #ActionBar_contentInsetStart android:contentInsetStart} Minimum inset for content views within a bar.
{@link #ActionBar_customNavigationLayout android:customNavigationLayout} Specifies a layout for custom navigation.
{@link #ActionBar_displayOptions android:displayOptions} Options affecting how the action bar is displayed.
{@link #ActionBar_divider android:divider} Specifies the drawable used for item dividers.
{@link #ActionBar_elevation android:elevation} Elevation for the action bar itself
{@link #ActionBar_height android:height} Specifies a fixed height.
{@link #ActionBar_hideOnContentScroll android:hideOnContentScroll} Set true to hide the action bar on a vertical nested scroll of content.
{@link #ActionBar_homeAsUpIndicator android:homeAsUpIndicator} Up navigation glyph
{@link #ActionBar_homeLayout android:homeLayout} Specifies a layout to use for the "home" section of the action bar.
{@link #ActionBar_icon android:icon} Specifies the drawable used for the application icon.
{@link #ActionBar_indeterminateProgressStyle android:indeterminateProgressStyle} Specifies a style resource to use for an indeterminate progress spinner.
{@link #ActionBar_itemPadding android:itemPadding} Specifies padding that should be applied to the left and right sides of + system-provided items in the bar.
{@link #ActionBar_logo android:logo} Specifies the drawable used for the application logo.
{@link #ActionBar_navigationMode android:navigationMode} The type of navigation to use.
{@link #ActionBar_popupTheme android:popupTheme} Reference to a theme that should be used to inflate popups + shown by widgets in the action bar.
{@link #ActionBar_progressBarPadding android:progressBarPadding} Specifies the horizontal padding on either end for an embedded progress bar.
{@link #ActionBar_progressBarStyle android:progressBarStyle} Specifies a style resource to use for an embedded progress bar.
{@link #ActionBar_subtitle android:subtitle} Specifies subtitle text used for navigationMode="normal"
{@link #ActionBar_subtitleTextStyle android:subtitleTextStyle} Specifies a style to use for subtitle text.
{@link #ActionBar_title android:title} Specifies title text used for navigationMode="normal"
{@link #ActionBar_titleTextStyle android:titleTextStyle} Specifies a style to use for title text.
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x01010002, 0x01010077, 0x010100d4, 0x01010129, + 0x01010155, 0x010101e1, 0x010102be, 0x010102cf, + 0x010102d0, 0x010102d1, 0x010102d2, 0x010102f8, + 0x010102f9, 0x0101030b, 0x01010318, 0x01010319, + 0x0101031d, 0x0101032d, 0x0101038a, 0x0101038b, + 0x01010440, 0x01010443, 0x01010453, 0x01010454, + 0x01010455, 0x01010456, 0x010104a9 + }; + /** +

+ @attr description + Specifies a background drawable for the action bar. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#background}. + @attr name android:background + */ + public static final int ActionBar_background = 2; + /** +

+ @attr description + Specifies a background drawable for the bottom component of a split action bar. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#backgroundSplit}. + @attr name android:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 19; + /** +

+ @attr description + Specifies a background drawable for a second stacked row of the action bar. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#backgroundStacked}. + @attr name android:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 18; + /** +

+ @attr description + Minimum inset for content views within a bar. Navigation buttons and + menu views are excepted. Only valid for some themes and configurations. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#contentInsetEnd}. + @attr name android:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 23; + /** +

+ @attr description + Minimum inset for content views within a bar. Navigation buttons and + menu views are excepted. Only valid for some themes and configurations. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#contentInsetLeft}. + @attr name android:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 24; + /** +

+ @attr description + Minimum inset for content views within a bar. Navigation buttons and + menu views are excepted. Only valid for some themes and configurations. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#contentInsetRight}. + @attr name android:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 25; + /** +

+ @attr description + Minimum inset for content views within a bar. Navigation buttons and + menu views are excepted. Only valid for some themes and configurations. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#contentInsetStart}. + @attr name android:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 22; + /** +

+ @attr description + Specifies a layout for custom navigation. Overrides navigationMode. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#customNavigationLayout}. + @attr name android:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 10; + /** +

+ @attr description + Options affecting how the action bar is displayed. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#displayOptions}. + @attr name android:displayOptions + */ + public static final int ActionBar_displayOptions = 8; + /** +

+ @attr description + Specifies the drawable used for item dividers. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#divider}. + @attr name android:divider + */ + public static final int ActionBar_divider = 3; + /** +

+ @attr description + Elevation for the action bar itself + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#elevation}. + @attr name android:elevation + */ + public static final int ActionBar_elevation = 20; + /** +

+ @attr description + Specifies a fixed height. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#height}. + @attr name android:height + */ + public static final int ActionBar_height = 4; + /** +

+ @attr description + Set true to hide the action bar on a vertical nested scroll of content. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#hideOnContentScroll}. + @attr name android:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 21; + /** +

+ @attr description + Up navigation glyph + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#homeAsUpIndicator}. + @attr name android:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 13; + /** +

+ @attr description + Specifies a layout to use for the "home" section of the action bar. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#homeLayout}. + @attr name android:homeLayout + */ + public static final int ActionBar_homeLayout = 16; + /** +

+ @attr description + Specifies the drawable used for the application icon. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int ActionBar_icon = 0; + /** +

+ @attr description + Specifies a style resource to use for an indeterminate progress spinner. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#indeterminateProgressStyle}. + @attr name android:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 14; + /** +

+ @attr description + Specifies padding that should be applied to the left and right sides of + system-provided items in the bar. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#itemPadding}. + @attr name android:itemPadding + */ + public static final int ActionBar_itemPadding = 17; + /** +

+ @attr description + Specifies the drawable used for the application logo. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#logo}. + @attr name android:logo + */ + public static final int ActionBar_logo = 6; + /** +

+ @attr description + The type of navigation to use. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0 Normal static title text
listMode1 The action bar will use a selection list for navigation.
tabMode2 The action bar will use a series of horizontal tabs for navigation.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#navigationMode}. + @attr name android:navigationMode + */ + public static final int ActionBar_navigationMode = 7; + /** +

+ @attr description + Reference to a theme that should be used to inflate popups + shown by widgets in the action bar. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#popupTheme}. + @attr name android:popupTheme + */ + public static final int ActionBar_popupTheme = 26; + /** +

+ @attr description + Specifies the horizontal padding on either end for an embedded progress bar. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#progressBarPadding}. + @attr name android:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 15; + /** +

+ @attr description + Specifies a style resource to use for an embedded progress bar. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#progressBarStyle}. + @attr name android:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 1; + /** +

+ @attr description + Specifies subtitle text used for navigationMode="normal" + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#subtitle}. + @attr name android:subtitle + */ + public static final int ActionBar_subtitle = 9; + /** +

+ @attr description + Specifies a style to use for subtitle text. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#subtitleTextStyle}. + @attr name android:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 12; + /** +

+ @attr description + Specifies title text used for navigationMode="normal" + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#title}. + @attr name android:title + */ + public static final int ActionBar_title = 5; + /** +

+ @attr description + Specifies a style to use for title text. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#titleTextStyle}. + @attr name android:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 11; + /** Attributes that can be used with a ActionBar_LayoutParams. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBar_LayoutParams_layout_gravity android:layout_gravity} Standard gravity constant that a child supplies to its parent.
+ @see #ActionBar_LayoutParams_layout_gravity + */ + public static final int[] ActionBar_LayoutParams = { + 0x010100b3 + }; + /** +

+ @attr description + Standard gravity constant that a child supplies to its parent. + Defines how the child view should be positioned, on both the X and Y axes, within its enclosing layout. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_gravity}. + @attr name android:layout_gravity + */ + public static final int ActionBar_LayoutParams_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_minWidth android:minWidth}
+ @see #ActionMenuItemView_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_minWidth = 0; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background android:background} Specifies a background for the action mode bar.
{@link #ActionMode_backgroundSplit android:backgroundSplit} Specifies a background for the split action mode bar.
{@link #ActionMode_closeItemLayout android:closeItemLayout} Specifies a layout to use for the "close" item at the starting edge.
{@link #ActionMode_height android:height} Specifies a fixed height for the action mode bar.
{@link #ActionMode_subtitleTextStyle android:subtitleTextStyle} Specifies a style to use for subtitle text.
{@link #ActionMode_titleTextStyle android:titleTextStyle} Specifies a style to use for title text.
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x010100d4, 0x01010155, 0x010102f8, 0x010102f9, + 0x0101038b, 0x0116008a + }; + /** +

+ @attr description + Specifies a background for the action mode bar. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#background}. + @attr name android:background + */ + public static final int ActionMode_background = 0; + /** +

+ @attr description + Specifies a background for the split action mode bar. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#backgroundSplit}. + @attr name android:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

+ @attr description + Specifies a layout to use for the "close" item at the starting edge. +

This is a private symbol. + @attr name com.android.internal:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

+ @attr description + Specifies a fixed height for the action mode bar. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#height}. + @attr name android:height + */ + public static final int ActionMode_height = 1; + /** +

+ @attr description + Specifies a style to use for subtitle text. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#subtitleTextStyle}. + @attr name android:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 3; + /** +

+ @attr description + Specifies a style to use for title text. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#titleTextStyle}. + @attr name android:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 2; + /** Attrbitutes for a ActvityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable android:expandActivityOverflowButtonDrawable} The drawable to show in the button for expanding the activities overflow popup.
{@link #ActivityChooserView_initialActivityCount android:initialActivityCount} The maximal number of items initially shown in the activity list.
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x01160082, 0x01160083 + }; + /** +

+ @attr description + The drawable to show in the button for expanding the activities overflow popup. + Note: Clients would like to set this drawable + as a clue about the action the chosen activity will perform. For + example, if share activity is to be chosen the drawable should + give a clue that sharing is to be performed. + +

This is a private symbol. + @attr name com.android.internal:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

+ @attr description + The maximal number of items initially shown in the activity list. +

This is a private symbol. + @attr name com.android.internal:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AdapterViewAnimator. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AdapterViewAnimator_animateFirstView android:animateFirstView} Defines whether to animate the current View when the ViewAnimation + is first displayed.
{@link #AdapterViewAnimator_inAnimation android:inAnimation} Identifier for the animation to use when a view is shown.
{@link #AdapterViewAnimator_loopViews android:loopViews}Defines whether the animator loops to the first view once it + has reached the end of the list.
{@link #AdapterViewAnimator_outAnimation android:outAnimation} Identifier for the animation to use when a view is hidden.
+ @see #AdapterViewAnimator_animateFirstView + @see #AdapterViewAnimator_inAnimation + @see #AdapterViewAnimator_loopViews + @see #AdapterViewAnimator_outAnimation + */ + public static final int[] AdapterViewAnimator = { + 0x01010177, 0x01010178, 0x010102d5, 0x01010307 + }; + /** +

+ @attr description + Defines whether to animate the current View when the ViewAnimation + is first displayed. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#animateFirstView}. + @attr name android:animateFirstView + */ + public static final int AdapterViewAnimator_animateFirstView = 2; + /** +

+ @attr description + Identifier for the animation to use when a view is shown. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#inAnimation}. + @attr name android:inAnimation + */ + public static final int AdapterViewAnimator_inAnimation = 0; + /** +

+ @attr description + Defines whether the animator loops to the first view once it + has reached the end of the list. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#loopViews}. + @attr name android:loopViews + */ + public static final int AdapterViewAnimator_loopViews = 3; + /** +

+ @attr description + Identifier for the animation to use when a view is hidden. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#outAnimation}. + @attr name android:outAnimation + */ + public static final int AdapterViewAnimator_outAnimation = 1; + /** Attributes that can be used with a AdapterViewFlipper. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AdapterViewFlipper_autoStart android:autoStart} When true, automatically start animating
{@link #AdapterViewFlipper_flipInterval android:flipInterval}
+ @see #AdapterViewFlipper_autoStart + @see #AdapterViewFlipper_flipInterval + */ + public static final int[] AdapterViewFlipper = { + 0x01010179, 0x010102b5 + }; + /** +

+ @attr description + When true, automatically start animating + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#autoStart}. + @attr name android:autoStart + */ + public static final int AdapterViewFlipper_autoStart = 1; + /** +

This symbol is the offset where the {@link android.R.attr#flipInterval} + attribute's value can be found in the {@link #AdapterViewFlipper} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:flipInterval + */ + public static final int AdapterViewFlipper_flipInterval = 0; + /** Specify one or more aid-filter elements inside a + aid-group element to specify an ISO7816 Application ID (AID) + your service can handle. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #AidFilter_name android:name} The ISO7816 Application ID.
+ @see #AidFilter_name + */ + public static final int[] AidFilter = { + 0x01010003 + }; + /** +

+ @attr description + The ISO7816 Application ID. This attribute is mandatory. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AidFilter_name = 0; + /** Specify one or more aid-group elements inside a + host-apdu-service or offhost-apdu-service + element to define a group of ISO7816 Application ID (AIDs) that + your service can handle. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AidGroup_category android:category} The category attribute will be used by the Android platform to present + multiple applications that register ISO 7816 Application IDs (AIDs) in the + same category uniformly.
{@link #AidGroup_description android:description} Short description of what the AID group implements.
+ @see #AidGroup_category + @see #AidGroup_description + */ + public static final int[] AidGroup = { + 0x01010020, 0x010103e8 + }; + /** +

+ @attr description + The category attribute will be used by the Android platform to present + multiple applications that register ISO 7816 Application IDs (AIDs) in the + same category uniformly. + Additionally, when a category is specified, Android will ensure that either + all AIDs in this group are routed to this application, or none at all. + This attribute is optional. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#category}. + @attr name android:category + */ + public static final int AidGroup_category = 1; + /** +

+ @attr description + Short description of what the AID group implements. This attribute is mandatory. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#description}. + @attr name android:description + */ + public static final int AidGroup_description = 0; + /** Specify one or more aid-prefix-filter elements inside a + aid-group element to specify an ISO7816 Application ID (AID) + prefix your service can handle. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #AidPrefixFilter_name android:name} The ISO7816 Application ID.
+ @see #AidPrefixFilter_name + */ + public static final int[] AidPrefixFilter = { + 0x01010003 + }; + /** +

+ @attr description + The ISO7816 Application ID. This attribute is mandatory. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AidPrefixFilter_name = 0; + /** The set of attributes that describe a AlertDialog's theme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_bottomBright android:bottomBright}
{@link #AlertDialog_bottomDark android:bottomDark}
{@link #AlertDialog_bottomMedium android:bottomMedium}
{@link #AlertDialog_buttonPanelSideLayout android:buttonPanelSideLayout}
{@link #AlertDialog_centerBright android:centerBright}
{@link #AlertDialog_centerDark android:centerDark}
{@link #AlertDialog_centerMedium android:centerMedium}
{@link #AlertDialog_fullBright android:fullBright}
{@link #AlertDialog_fullDark android:fullDark}
{@link #AlertDialog_horizontalProgressLayout android:horizontalProgressLayout}
{@link #AlertDialog_layout android:layout} Supply an identifier for the layout resource to inflate when the ViewStub + becomes visible or when forced to do so.
{@link #AlertDialog_listItemLayout android:listItemLayout}
{@link #AlertDialog_listLayout android:listLayout}
{@link #AlertDialog_multiChoiceItemLayout android:multiChoiceItemLayout}
{@link #AlertDialog_needsDefaultBackgrounds android:needsDefaultBackgrounds} @hide Whether fullDark, etc.
{@link #AlertDialog_progressLayout android:progressLayout}
{@link #AlertDialog_singleChoiceItemLayout android:singleChoiceItemLayout}
{@link #AlertDialog_topBright android:topBright}
{@link #AlertDialog_topDark android:topDark}
+ @see #AlertDialog_bottomBright + @see #AlertDialog_bottomDark + @see #AlertDialog_bottomMedium + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_centerBright + @see #AlertDialog_centerDark + @see #AlertDialog_centerMedium + @see #AlertDialog_fullBright + @see #AlertDialog_fullDark + @see #AlertDialog_horizontalProgressLayout + @see #AlertDialog_layout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_needsDefaultBackgrounds + @see #AlertDialog_progressLayout + @see #AlertDialog_singleChoiceItemLayout + @see #AlertDialog_topBright + @see #AlertDialog_topDark + */ + public static final int[] AlertDialog = { + 0x010100c6, 0x010100c7, 0x010100c8, 0x010100c9, + 0x010100ca, 0x010100cb, 0x010100cc, 0x010100cd, + 0x010100ce, 0x010100cf, 0x010100f2, 0x0116003d, + 0x0116003e, 0x0116003f, 0x01160040, 0x01160041, + 0x01160042, 0x01160043, 0x01160044 + }; + /** +

This symbol is the offset where the {@link android.R.attr#bottomBright} + attribute's value can be found in the {@link #AlertDialog} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android:bottomBright + */ + public static final int AlertDialog_bottomBright = 7; + /** +

This symbol is the offset where the {@link android.R.attr#bottomDark} + attribute's value can be found in the {@link #AlertDialog} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android:bottomDark + */ + public static final int AlertDialog_bottomDark = 3; + /** +

This symbol is the offset where the {@link android.R.attr#bottomMedium} + attribute's value can be found in the {@link #AlertDialog} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android:bottomMedium + */ + public static final int AlertDialog_bottomMedium = 8; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name com.android.internal:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 11; + /** +

This symbol is the offset where the {@link android.R.attr#centerBright} + attribute's value can be found in the {@link #AlertDialog} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android:centerBright + */ + public static final int AlertDialog_centerBright = 6; + /** +

This symbol is the offset where the {@link android.R.attr#centerDark} + attribute's value can be found in the {@link #AlertDialog} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android:centerDark + */ + public static final int AlertDialog_centerDark = 2; + /** +

This symbol is the offset where the {@link android.R.attr#centerMedium} + attribute's value can be found in the {@link #AlertDialog} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android:centerMedium + */ + public static final int AlertDialog_centerMedium = 9; + /** +

This symbol is the offset where the {@link android.R.attr#fullBright} + attribute's value can be found in the {@link #AlertDialog} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android:fullBright + */ + public static final int AlertDialog_fullBright = 4; + /** +

This symbol is the offset where the {@link android.R.attr#fullDark} + attribute's value can be found in the {@link #AlertDialog} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android:fullDark + */ + public static final int AlertDialog_fullDark = 0; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#horizontalProgressLayout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name com.android.internal:horizontalProgressLayout + */ + public static final int AlertDialog_horizontalProgressLayout = 17; + /** +

+ @attr description + Supply an identifier for the layout resource to inflate when the ViewStub + becomes visible or when forced to do so. The layout resource must be a + valid reference to a layout. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout}. + @attr name android:layout + */ + public static final int AlertDialog_layout = 10; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name com.android.internal:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 15; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name com.android.internal:listLayout + */ + public static final int AlertDialog_listLayout = 12; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name com.android.internal:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 13; + /** +

+ @attr description + @hide Whether fullDark, etc. should use default values if null. +

This is a private symbol. + @attr name com.android.internal:needsDefaultBackgrounds + */ + public static final int AlertDialog_needsDefaultBackgrounds = 18; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#progressLayout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name com.android.internal:progressLayout + */ + public static final int AlertDialog_progressLayout = 16; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name com.android.internal:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 14; + /** +

This symbol is the offset where the {@link android.R.attr#topBright} + attribute's value can be found in the {@link #AlertDialog} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android:topBright + */ + public static final int AlertDialog_topBright = 5; + /** +

This symbol is the offset where the {@link android.R.attr#topDark} + attribute's value can be found in the {@link #AlertDialog} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android:topDark + */ + public static final int AlertDialog_topDark = 1; + /** Attributes that can be used with a AlphaAnimation. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AlphaAnimation_fromAlpha android:fromAlpha}
{@link #AlphaAnimation_toAlpha android:toAlpha}
+ @see #AlphaAnimation_fromAlpha + @see #AlphaAnimation_toAlpha + */ + public static final int[] AlphaAnimation = { + 0x010101ca, 0x010101cb + }; + /** +

This symbol is the offset where the {@link android.R.attr#fromAlpha} + attribute's value can be found in the {@link #AlphaAnimation} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:fromAlpha + */ + public static final int AlphaAnimation_fromAlpha = 0; + /** +

This symbol is the offset where the {@link android.R.attr#toAlpha} + attribute's value can be found in the {@link #AlphaAnimation} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:toAlpha + */ + public static final int AlphaAnimation_toAlpha = 1; + /** Attributes that can be used with a AnalogClock. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AnalogClock_dial android:dial}
{@link #AnalogClock_hand_hour android:hand_hour}
{@link #AnalogClock_hand_minute android:hand_minute}
+ @see #AnalogClock_dial + @see #AnalogClock_hand_hour + @see #AnalogClock_hand_minute + */ + public static final int[] AnalogClock = { + 0x01010102, 0x01010103, 0x01010104 + }; + /** +

This symbol is the offset where the {@link android.R.attr#dial} + attribute's value can be found in the {@link #AnalogClock} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:dial + */ + public static final int AnalogClock_dial = 0; + /** +

This symbol is the offset where the {@link android.R.attr#hand_hour} + attribute's value can be found in the {@link #AnalogClock} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:hand_hour + */ + public static final int AnalogClock_hand_hour = 1; + /** +

This symbol is the offset where the {@link android.R.attr#hand_minute} + attribute's value can be found in the {@link #AnalogClock} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:hand_minute + */ + public static final int AnalogClock_hand_minute = 2; + /** The manifest tag is the root of an + AndroidManifest.xml file, + describing the contents of an Android package (.apk) file. One + attribute must always be supplied: package gives a + unique name for the package, using a Java-style naming convention + to avoid name collisions. For example, applications published + by Google could have names of the form + com.google.app.appname + +

Inside of the manifest tag, may appear the following tags + in any order: {@link #AndroidManifestPermission permission}, + {@link #AndroidManifestPermissionGroup permission-group}, + {@link #AndroidManifestPermissionTree permission-tree}, + {@link #AndroidManifestUsesSdk uses-sdk}, + {@link #AndroidManifestUsesPermission uses-permission}, + {@link #AndroidManifestUsesConfiguration uses-configuration}, + {@link #AndroidManifestApplication application}, + {@link #AndroidManifestInstrumentation instrumentation}, + {@link #AndroidManifestUsesFeature uses-feature}. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AndroidManifest_installLocation android:installLocation} The default install location defined by an application.
{@link #AndroidManifest_revisionCode android:revisionCode} Internal revision code.
{@link #AndroidManifest_sharedUserId android:sharedUserId} Specify the name of a user ID that will be shared between multiple + packages.
{@link #AndroidManifest_sharedUserLabel android:sharedUserLabel} Specify a label for the shared user UID of this package.
{@link #AndroidManifest_versionCode android:versionCode} Internal version code.
{@link #AndroidManifest_versionName android:versionName} The text shown to the user to indicate the version they have.
+ @see #AndroidManifest_installLocation + @see #AndroidManifest_revisionCode + @see #AndroidManifest_sharedUserId + @see #AndroidManifest_sharedUserLabel + @see #AndroidManifest_versionCode + @see #AndroidManifest_versionName + */ + public static final int[] AndroidManifest = { + 0x0101000b, 0x0101021b, 0x0101021c, 0x01010261, + 0x010102b7, 0x010104d5 + }; + /** +

+ @attr description + The default install location defined by an application. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto0 Let the system decide ideal install location
internalOnly1 Explicitly request to be installed on internal phone storage + only.
preferExternal2 Prefer to be installed on SD card. There is no guarantee that + the system will honor this request. The application might end + up being installed on internal storage if external media + is unavailable or too full.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#installLocation}. + @attr name android:installLocation + */ + public static final int AndroidManifest_installLocation = 4; + /** +

+ @attr description + Internal revision code. This number is the number used to determine + whether one APK is more recent than another: it has no other meaning + than that higher numbers are more recent. This value is only meaningful + when the two {@link android.R.attr#versionCode} values are already + identical. When an app is delivered as multiple split APKs, each + APK may have a different revisionCode value. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#revisionCode}. + @attr name android:revisionCode + */ + public static final int AndroidManifest_revisionCode = 5; + /** +

+ @attr description + Specify the name of a user ID that will be shared between multiple + packages. By default, each package gets its own unique user-id. + By setting this value on two or more packages, each of these packages + will be given a single shared user ID, so they can for example run + in the same process. Note that for them to actually get the same + user ID, they must also be signed with the same signature. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#sharedUserId}. + @attr name android:sharedUserId + */ + public static final int AndroidManifest_sharedUserId = 0; + /** +

+ @attr description + Specify a label for the shared user UID of this package. This is + only used if you have also used android:sharedUserId. This must + be a reference to a string resource; it can not be an explicit + string. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#sharedUserLabel}. + @attr name android:sharedUserLabel + */ + public static final int AndroidManifest_sharedUserLabel = 3; + /** +

+ @attr description + Internal version code. This is the number used to determine whether + one version is more recent than another: it has no other meaning than + that higher numbers are more recent. You could use this number to + encode a "x.y" in the lower and upper 16 bits, make it a build + number, simply increase it by one each time a new version is + released, or define it however else you want, as long as each + successive version has a higher number. This is not a version + number generally shown to the user, that is usually supplied + with {@link android.R.attr#versionName}. When an app is delivered + as multiple split APKs, each APK must have the exact same versionCode. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#versionCode}. + @attr name android:versionCode + */ + public static final int AndroidManifest_versionCode = 1; + /** +

+ @attr description + The text shown to the user to indicate the version they have. This + is used for no other purpose than display to the user; the actual + significant version number is given by {@link android.R.attr#versionCode}. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#versionName}. + @attr name android:versionName + */ + public static final int AndroidManifest_versionName = 2; + /** Attributes that can be supplied in an AndroidManifest.xml + action tag, a child of the + {@link #AndroidManifestIntentFilter intent-filter} tag. + See {@link android.content.IntentFilter#addAction} for + more information. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #AndroidManifestAction_name android:name} The name of an action that is handled, using the Java-style + naming convention.
+ @see #AndroidManifestAction_name + */ + public static final int[] AndroidManifestAction = { + 0x01010003 + }; + /** +

+ @attr description + The name of an action that is handled, using the Java-style + naming convention. For example, to support + {@link android.content.Intent#ACTION_VIEW Intent.ACTION_VIEW} + you would put android.intent.action.VIEW here. + Custom actions should generally use a prefix matching the + package name. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestAction_name = 0; + /** The activity tag declares an + {@link android.app.Activity} class that is available + as part of the package's application components, implementing + a part of the application's user interface. + +

Zero or more {@link #AndroidManifestIntentFilter intent-filter} + tags can be included inside of an activity, to specify the Intents + that it can handle. If none are specified, the activity can + only be started through direct specification of its class name. + The activity tag appears as a child tag of the + {@link #AndroidManifestApplication application} tag. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AndroidManifestActivity_allowEmbedded android:allowEmbedded} Indicate that the activity can be launched as the embedded child of another + activity.
{@link #AndroidManifestActivity_allowTaskReparenting android:allowTaskReparenting} Specify that an activity can be moved out of a task it is in to + the task it has an affinity for when appropriate.
{@link #AndroidManifestActivity_alwaysRetainTaskState android:alwaysRetainTaskState} Specify whether an acitivty's task state should always be maintained + by the system, or if it is allowed to reset the task to its initial + state in certain situations.
{@link #AndroidManifestActivity_autoRemoveFromRecents android:autoRemoveFromRecents} Tasks launched by activities with this attribute will remain in the recent tasks + list until the last activity in the task is completed.
{@link #AndroidManifestActivity_banner android:banner} A Drawable resource providing an extended graphical banner for its + associated item.
{@link #AndroidManifestActivity_clearTaskOnLaunch android:clearTaskOnLaunch} Specify whether an activity's task should be cleared when it + is re-launched from the home screen.
{@link #AndroidManifestActivity_configChanges android:configChanges} Specify one or more configuration changes that the activity will + handle itself.
{@link #AndroidManifestActivity_description android:description} Descriptive text for the associated data.
{@link #AndroidManifestActivity_documentLaunchMode android:documentLaunchMode} This attribute specifies that an activity shall become the root activity of a + new task each time it is launched.
{@link #AndroidManifestActivity_enabled android:enabled} Specify whether the activity is enabled or not (that is, can be instantiated by the system).
{@link #AndroidManifestActivity_excludeFromRecents android:excludeFromRecents} Indicates that an Activity should be excluded from the list of + recently launched activities.
{@link #AndroidManifestActivity_exported android:exported} Flag indicating whether the given application component is available + to other applications.
{@link #AndroidManifestActivity_finishOnCloseSystemDialogs android:finishOnCloseSystemDialogs} Specify whether an activity should be finished when a "close system + windows" request has been made.
{@link #AndroidManifestActivity_finishOnTaskLaunch android:finishOnTaskLaunch} Specify whether an activity should be finished when its task is + brought to the foreground by relaunching from the home screen.
{@link #AndroidManifestActivity_hardwareAccelerated android:hardwareAccelerated}

Flag indicating whether the application's rendering should be hardware + accelerated if possible.

{@link #AndroidManifestActivity_icon android:icon} A Drawable resource providing a graphical representation of its + associated item.
{@link #AndroidManifestActivity_immersive android:immersive} Flag declaring this activity to be 'immersive'; immersive activities + should not be interrupted with other activities or notifications.
{@link #AndroidManifestActivity_label android:label} A user-legible name for the given item.
{@link #AndroidManifestActivity_launchMode android:launchMode} Specify how an activity should be launched.
{@link #AndroidManifestActivity_lockTaskMode android:lockTaskMode} This value indicates how tasks rooted at this activity will behave in lockTask mode.
{@link #AndroidManifestActivity_logo android:logo} A Drawable resource providing an extended graphical logo for its + associated item.
{@link #AndroidManifestActivity_maxRecents android:maxRecents} The maximum number of entries of tasks rooted at this activity in the recent task list.
{@link #AndroidManifestActivity_multiprocess android:multiprocess} Specify whether a component is allowed to have multiple instances + of itself running in different processes.
{@link #AndroidManifestActivity_name android:name} Required name of the class implementing the activity, deriving from + {@link android.app.Activity}.
{@link #AndroidManifestActivity_noHistory android:noHistory} Specify whether an activity should be kept in its history stack.
{@link #AndroidManifestActivity_parentActivityName android:parentActivityName} The name of the logical parent of the activity as it appears in the manifest.
{@link #AndroidManifestActivity_permission android:permission} Specify a permission that a client is required to have in order to + use the associated object.
{@link #AndroidManifestActivity_persistableMode android:persistableMode} Define how an activity persist across reboots.
{@link #AndroidManifestActivity_primaryUserOnly android:primaryUserOnly} @hide This broacast receiver will only receive broadcasts for the + primary user.
{@link #AndroidManifestActivity_process android:process} Specify a specific process that the associated code is to run in.
{@link #AndroidManifestActivity_relinquishTaskIdentity android:relinquishTaskIdentity} Tasks whose root has this attribute set to true will replace baseIntent with that of the + next activity in the task.
{@link #AndroidManifestActivity_resizeableActivity android:resizeableActivity} @hide
{@link #AndroidManifestActivity_resumeWhilePausing android:resumeWhilePausing} Indicate that it is okay for this activity be resumed while the previous + activity is in the process of pausing, without waiting for the previous pause + to complete.
{@link #AndroidManifestActivity_screenOrientation android:screenOrientation} Specify the orientation an activity should be run in.
{@link #AndroidManifestActivity_showForAllUsers android:showForAllUsers} Specify that an Activity should be shown even if the current/foreground user + is different from the user of the Activity.
{@link #AndroidManifestActivity_showOnLockScreen android:showOnLockScreen} @deprecated use {@link android.R.attr#showForAllUsers} instead.
{@link #AndroidManifestActivity_singleUser android:singleUser} If set to true, a single instance of this component will run for + all users.
{@link #AndroidManifestActivity_stateNotNeeded android:stateNotNeeded} Indicates that an Activity does not need to have its freeze state + (as returned by {@link android.app.Activity#onSaveInstanceState} + retained in order to be restarted.
{@link #AndroidManifestActivity_taskAffinity android:taskAffinity} Specify a task name that activities have an "affinity" to.
{@link #AndroidManifestActivity_theme android:theme} The overall theme to use for an activity.
{@link #AndroidManifestActivity_uiOptions android:uiOptions} Extra options for an activity's UI.
{@link #AndroidManifestActivity_windowSoftInputMode android:windowSoftInputMode} Specify the default soft-input mode for the main window of + this activity.
+ @see #AndroidManifestActivity_allowEmbedded + @see #AndroidManifestActivity_allowTaskReparenting + @see #AndroidManifestActivity_alwaysRetainTaskState + @see #AndroidManifestActivity_autoRemoveFromRecents + @see #AndroidManifestActivity_banner + @see #AndroidManifestActivity_clearTaskOnLaunch + @see #AndroidManifestActivity_configChanges + @see #AndroidManifestActivity_description + @see #AndroidManifestActivity_documentLaunchMode + @see #AndroidManifestActivity_enabled + @see #AndroidManifestActivity_excludeFromRecents + @see #AndroidManifestActivity_exported + @see #AndroidManifestActivity_finishOnCloseSystemDialogs + @see #AndroidManifestActivity_finishOnTaskLaunch + @see #AndroidManifestActivity_hardwareAccelerated + @see #AndroidManifestActivity_icon + @see #AndroidManifestActivity_immersive + @see #AndroidManifestActivity_label + @see #AndroidManifestActivity_launchMode + @see #AndroidManifestActivity_lockTaskMode + @see #AndroidManifestActivity_logo + @see #AndroidManifestActivity_maxRecents + @see #AndroidManifestActivity_multiprocess + @see #AndroidManifestActivity_name + @see #AndroidManifestActivity_noHistory + @see #AndroidManifestActivity_parentActivityName + @see #AndroidManifestActivity_permission + @see #AndroidManifestActivity_persistableMode + @see #AndroidManifestActivity_primaryUserOnly + @see #AndroidManifestActivity_process + @see #AndroidManifestActivity_relinquishTaskIdentity + @see #AndroidManifestActivity_resizeableActivity + @see #AndroidManifestActivity_resumeWhilePausing + @see #AndroidManifestActivity_screenOrientation + @see #AndroidManifestActivity_showForAllUsers + @see #AndroidManifestActivity_showOnLockScreen + @see #AndroidManifestActivity_singleUser + @see #AndroidManifestActivity_stateNotNeeded + @see #AndroidManifestActivity_taskAffinity + @see #AndroidManifestActivity_theme + @see #AndroidManifestActivity_uiOptions + @see #AndroidManifestActivity_windowSoftInputMode + */ + public static final int[] AndroidManifestActivity = { + 0x01010000, 0x01010001, 0x01010002, 0x01010003, + 0x01010006, 0x0101000e, 0x01010010, 0x01010011, + 0x01010012, 0x01010013, 0x01010014, 0x01010015, + 0x01010016, 0x01010017, 0x0101001d, 0x0101001e, + 0x0101001f, 0x01010020, 0x01010203, 0x01010204, + 0x0101022b, 0x0101022d, 0x010102a7, 0x010102be, + 0x010102c0, 0x010102d3, 0x01010398, 0x010103a7, + 0x010103bf, 0x010103c9, 0x010103f2, 0x010103f5, + 0x0101042d, 0x01010445, 0x01010446, 0x01010447, + 0x01010476, 0x010104b2, 0x010104ed, 0x010104ef, + 0x011600b6, 0x011600b8 + }; + /** +

+ @attr description + Indicate that the activity can be launched as the embedded child of another + activity. Particularly in the case where the child lives in a container + such as a Display owned by another activity. + +

The default value of this attribute is false. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#allowEmbedded}. + @attr name android:allowEmbedded + */ + public static final int AndroidManifestActivity_allowEmbedded = 31; + /** +

+ @attr description + Specify that an activity can be moved out of a task it is in to + the task it has an affinity for when appropriate. Use with the + application tag (to supply a default for all activities in the + application), or with an activity tag (to supply a specific + setting for that component). + +

Normally when an application is started, it is associated with + the task of the activity that started it and stays there for its + entire lifetime. You can use the allowTaskReparenting feature to force an + activity to be re-parented to a different task when the task it is + in goes to the background. Typically this is used to cause the + activities of an application to move back to the main task associated + with that application. The activity is re-parented to the task + with the same {@link android.R.attr#taskAffinity} as it has. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#allowTaskReparenting}. + @attr name android:allowTaskReparenting + */ + public static final int AndroidManifestActivity_allowTaskReparenting = 19; + /** +

+ @attr description + Specify whether an acitivty's task state should always be maintained + by the system, or if it is allowed to reset the task to its initial + state in certain situations. + +

Normally the system will reset a task (remove all activities from + the stack and reset the root activity) in certain situations when + the user re-selects that task from the home screen. Typically this + will be done if the user hasn't visited that task for a certain + amount of time, such as 30 minutes. + +

By setting this attribute, the user will always return to your + task in its last state, regardless of how they get there. This is + useful, for example, in an application like the web browser where there + is a lot of state (such as multiple open tabs) that the application + would not like to lose. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#alwaysRetainTaskState}. + @attr name android:alwaysRetainTaskState + */ + public static final int AndroidManifestActivity_alwaysRetainTaskState = 18; + /** +

+ @attr description + Tasks launched by activities with this attribute will remain in the recent tasks + list until the last activity in the task is completed. When that happens the task + will be automatically removed from the recent tasks list. This overrides the caller's + use of {@link android.content.Intent#FLAG_ACTIVITY_RETAIN_IN_RECENTS + Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS} + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#autoRemoveFromRecents}. + @attr name android:autoRemoveFromRecents + */ + public static final int AndroidManifestActivity_autoRemoveFromRecents = 35; + /** +

+ @attr description + A Drawable resource providing an extended graphical banner for its + associated item. Use with the application tag (to supply a default + banner for all application activities), or with the activity, tag to + supply a banner for a specific activity. + +

The given banner will be used to display to the user a graphical + representation of an activity in the Leanback application launcher. + Since banners are displayed only in the Leanback launcher, they should + only be used with activities (and applications) that support Leanback + mode. These are activities that handle Intents of category + {@link android.content.Intent#CATEGORY_LEANBACK_LAUNCHER + Intent.CATEGORY_LEANBACK_LAUNCHER}. +

This must be a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#banner}. + @attr name android:banner + */ + public static final int AndroidManifestActivity_banner = 30; + /** +

+ @attr description + Specify whether an activity's task should be cleared when it + is re-launched from the home screen. As a result, every time the + user starts the task, they will be brought to its root activity, + regardless of whether they used BACK or HOME to last leave it. + This flag only applies to activities that + are used to start the root of a new task. + +

An example of the use of this flag would be for the case where + a user launches activity A from home, and from there goes to + activity B. They now press home, and then return to activity A. + Normally they would see activity B, since that is what they were + last doing in A's task. However, if A has set this flag to true, + then upon going to the background all of the tasks on top of it (B + in this case) are removed, so when the user next returns to A they + will restart at its original activity. + +

When this option is used in conjunction with + {@link android.R.attr#allowTaskReparenting}, the allowTaskReparenting trumps the + clear. That is, all activities above the root activity of the + task will be removed: those that have an affinity will be moved + to the task they are associated with, otherwise they will simply + be dropped as described here. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#clearTaskOnLaunch}. + @attr name android:clearTaskOnLaunch + */ + public static final int AndroidManifestActivity_clearTaskOnLaunch = 11; + /** +

+ @attr description + Specify one or more configuration changes that the activity will + handle itself. If not specified, the activity will be restarted + if any of these configuration changes happen in the system. Otherwise, + the activity will remain running and its + {@link android.app.Activity#onConfigurationChanged Activity.onConfigurationChanged} + method called with the new configuration. + +

Note that all of these configuration changes can impact the + resource values seen by the application, so you will generally need + to re-retrieve all resources (including view layouts, drawables, etc) + to correctly handle any configuration change. + +

These values must be kept in sync with those in + {@link android.content.pm.ActivityInfo} and + include/utils/ResourceTypes.h. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
mcc0x0001 The IMSI MCC has changed, that is a SIM has been detected and + updated the Mobile Country Code.
mnc0x0002 The IMSI MNC has changed, that is a SIM has been detected and + updated the Mobile Network Code.
locale0x0004 The locale has changed, that is the user has selected a new + language that text should be displayed in.
touchscreen0x0008 The touchscreen has changed. Should never normally happen.
keyboard0x0010 The keyboard type has changed, for example the user has plugged + in an external keyboard.
keyboardHidden0x0020 The keyboard or navigation accessibility has changed, for example + the user has slid the keyboard out to expose it. Note that + despite its name, this applied to any accessibility: keyboard + or navigation.
navigation0x0040 The navigation type has changed. Should never normally happen.
orientation0x0080 The screen orientation has changed, that is the user has + rotated the device.
screenLayout0x0100 The screen layout has changed. This might be caused by a + different display being activated.
uiMode0x0200 The global user interface mode has changed. For example, + going in or out of car mode, night mode changing, etc.
screenSize0x0400 The current available screen size has changed. If applications don't + target at least {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2} + then the activity will always handle this itself (the change + will not result in a restart). This represents a change in the + currently available size, so will change when the user switches + between landscape and portrait.
smallestScreenSize0x0800 The physical screen size has changed. If applications don't + target at least {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2} + then the activity will always handle this itself (the change + will not result in a restart). This represents a change in size + regardless of orientation, so will only change when the actual + physical screen size has changed such as switching to an external + display.
layoutDirection0x2000 The layout direction has changed. For example going from LTR to RTL.
fontScale0x40000000 The font scaling factor has changed, that is the user has + selected a new global font size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#configChanges}. + @attr name android:configChanges + */ + public static final int AndroidManifestActivity_configChanges = 16; + /** +

+ @attr description + Descriptive text for the associated data. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#description}. + @attr name android:description + */ + public static final int AndroidManifestActivity_description = 17; + /** +

+ @attr description + This attribute specifies that an activity shall become the root activity of a + new task each time it is launched. Using this attribute permits the user to + have multiple documents from the same applications appear in the recent tasks list. + +

Such a document is any kind of item for which an application may want to + maintain multiple simultaneous instances. Examples might be text files, web + pages, spreadsheets, or emails. Each such document will be in a separate + task in the recent taskss list. + +

This attribute is equivalent to adding the flag {@link + android.content.Intent#FLAG_ACTIVITY_NEW_DOCUMENT} to every Intent used to launch + the activity. + +

The documentLaunchMode attribute may be assigned one of four values, "none", + "intoExisting", "always" and "never", described in detail below. For values other than + none and never the activity must be defined with + {@link android.R.attr#launchMode} standard. + If this attribute is not specified, none will be used. + Note that none can be overridden at run time if the Intent used + to launch it contains the flag {@link android.content.Intent#FLAG_ACTIVITY_NEW_DOCUMENT + Intent.FLAG_ACTIVITY_NEW_DOCUMENT}. + Similarly intoExisting will be overridden by the flag + {@link android.content.Intent#FLAG_ACTIVITY_NEW_DOCUMENT + Intent.FLAG_ACTIVITY_NEW_DOCUMENT} combined with + {@link android.content.Intent#FLAG_ACTIVITY_MULTIPLE_TASK + Intent.FLAG_ACTIVITY_MULTIPLE_TASK}. If the value of + documentLaunchModes is never then any use of + {@link android.content.Intent#FLAG_ACTIVITY_NEW_DOCUMENT + Intent.FLAG_ACTIVITY_NEW_DOCUMENT} to launch this activity will be ignored. + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0 The default mode, which will create a new task only when + {@link android.content.Intent#FLAG_ACTIVITY_NEW_TASK + Intent.FLAG_ACTIVITY_NEW_TASK} is set.
intoExisting1 All tasks will be searched for one whose base Intent's ComponentName and + data URI match those of the launching Intent. If such a task is found + that task will be cleared and restarted with the root activity receiving a call + to {@link android.app.Activity#onNewIntent Activity.onNewIntent}. If no + such task is found a new task will be created. +

This is the equivalent of launching an activity with {@link + android.content.Intent#FLAG_ACTIVITY_NEW_DOCUMENT Intent.FLAG_ACTIVITY_NEW_DOCUMENT} + set and without {@link android.content.Intent#FLAG_ACTIVITY_MULTIPLE_TASK + Intent.FLAG_ACTIVITY_MULTIPLE_TASK} set.

always2 A new task rooted at this activity will be created. This will happen whether or + not there is an existing task whose ComponentName and data URI match + that of the launcing intent This is the equivalent of launching an activity + with {@link + android.content.Intent#FLAG_ACTIVITY_NEW_DOCUMENT Intent.FLAG_ACTIVITY_NEW_DOCUMENT} + and {@link android.content.Intent#FLAG_ACTIVITY_MULTIPLE_TASK + Intent.FLAG_ACTIVITY_MULTIPLE_TASK} both set.
never3 This activity will not be launched into a new document even if the Intent contains + {@link android.content.Intent#FLAG_ACTIVITY_NEW_DOCUMENT + Intent.FLAG_ACTIVITY_NEW_DOCUMENT}. This gives the activity writer ultimate + control over how their activity is used. Note that applications prior to api + 21 will default to documentLaunchMode="none" so only activities that explicitly + opt out with "never" may do so.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#documentLaunchMode}. + @attr name android:documentLaunchMode + */ + public static final int AndroidManifestActivity_documentLaunchMode = 33; + /** +

+ @attr description + Specify whether the activity is enabled or not (that is, can be instantiated by the system). + It can also be specified for an application as a whole, in which case a value of "false" + will override any component specific values (a value of "true" will not override the + component specific values). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#enabled}. + @attr name android:enabled + */ + public static final int AndroidManifestActivity_enabled = 5; + /** +

+ @attr description + Indicates that an Activity should be excluded from the list of + recently launched activities. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#excludeFromRecents}. + @attr name android:excludeFromRecents + */ + public static final int AndroidManifestActivity_excludeFromRecents = 13; + /** +

+ @attr description + Flag indicating whether the given application component is available + to other applications. If false, it can only be accessed by + applications with its same user id (which usually means only by + code in its own package). If true, it can be invoked by external + entities, though which ones can do so may be controlled through + permissions. The default value is false for activity, receiver, + and service components that do not specify any intent filters; it + is true for activity, receiver, and service components that do + have intent filters (implying they expect to be invoked by others + who do not know their particular component name) and for all + content providers. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#exported}. + @attr name android:exported + */ + public static final int AndroidManifestActivity_exported = 6; + /** +

+ @attr description + Specify whether an activity should be finished when a "close system + windows" request has been made. This happens, for example, when + the home key is pressed, when the device is locked, when a system + dialog showing recent applications is displayed, etc. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#finishOnCloseSystemDialogs}. + @attr name android:finishOnCloseSystemDialogs + */ + public static final int AndroidManifestActivity_finishOnCloseSystemDialogs = 22; + /** +

+ @attr description + Specify whether an activity should be finished when its task is + brought to the foreground by relaunching from the home screen. + +

If both this option and {@link android.R.attr#allowTaskReparenting} are + specified, the finish trumps the affinity: the affinity will be + ignored and the activity simply finished. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#finishOnTaskLaunch}. + @attr name android:finishOnTaskLaunch + */ + public static final int AndroidManifestActivity_finishOnTaskLaunch = 10; + /** +

+ @attr description +

Flag indicating whether the application's rendering should be hardware + accelerated if possible. This flag is turned on by default for applications + that are targeting {@link android.os.Build.VERSION_CODES#ICE_CREAM_SANDWICH} + or later.

+

This flag can be set on the application and any activity declared + in the manifest. When enabled for the application, each activity is + automatically assumed to be hardware accelerated. This flag can be + overridden in the activity tags, either turning it off (if on for the + application) or on (if off for the application.)

+

When this flag is turned on for an activity (either directly or via + the application tag), every window created from the activity, including + the activity's own window, will be hardware accelerated, if possible.

+

Please refer to the documentation of + {@link android.view.WindowManager.LayoutParams#FLAG_HARDWARE_ACCELERATED} + for more information on how to control this flag programmatically.

+ + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#hardwareAccelerated}. + @attr name android:hardwareAccelerated + */ + public static final int AndroidManifestActivity_hardwareAccelerated = 25; + /** +

+ @attr description + A Drawable resource providing a graphical representation of its + associated item. Use with the + application tag (to supply a default icon for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific icon for that component). It may also be + used with the intent-filter tag to supply an icon to show to the + user when an activity is being selected based on a particular Intent. + +

The given icon will be used to display to the user a graphical + representation of its associated component; for example, as the icon + for main activity that is displayed in the launcher. This must be + a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int AndroidManifestActivity_icon = 2; + /** +

+ @attr description + Flag declaring this activity to be 'immersive'; immersive activities + should not be interrupted with other activities or notifications. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#immersive}. + @attr name android:immersive + */ + public static final int AndroidManifestActivity_immersive = 24; + /** +

+ @attr description + A user-legible name for the given item. Use with the + application tag (to supply a default label for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific label for that component). It may also be + used with the intent-filter tag to supply a label to show to the + user when an activity is being selected based on a particular Intent. + +

The given label will be used wherever the user sees information + about its associated component; for example, as the name of a + main activity that is displayed in the launcher. You should + generally set this to a reference to a string resource, so that + it can be localized, however it is also allowed to supply a plain + string for quick and dirty programming. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#label}. + @attr name android:label + */ + public static final int AndroidManifestActivity_label = 1; + /** +

+ @attr description + Specify how an activity should be launched. See the + Tasks and Back + Stack document for important information on how these options impact + the behavior of your application. + +

If this attribute is not specified, standard launch + mode will be used. Note that the particular launch behavior can + be changed in some ways at runtime through the + {@link android.content.Intent} flags + {@link android.content.Intent#FLAG_ACTIVITY_SINGLE_TOP}, + {@link android.content.Intent#FLAG_ACTIVITY_NEW_TASK}, and + {@link android.content.Intent#FLAG_ACTIVITY_MULTIPLE_TASK}. + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
standard0 The default mode, which will usually create a new instance of + the activity when it is started, though this behavior may change + with the introduction of other options such as + {@link android.content.Intent#FLAG_ACTIVITY_NEW_TASK + Intent.FLAG_ACTIVITY_NEW_TASK}.
singleTop1 If, when starting the activity, there is already an + instance of the same activity class in the foreground that is + interacting with the user, then + re-use that instance. This existing instance will receive a call to + {@link android.app.Activity#onNewIntent Activity.onNewIntent()} with + the new Intent that is being started.
singleTask2 If, when starting the activity, there is already a task running + that starts with this activity, then instead of starting a new + instance the current task is brought to the front. The existing + instance will receive a call to {@link android.app.Activity#onNewIntent + Activity.onNewIntent()} + with the new Intent that is being started, and with the + {@link android.content.Intent#FLAG_ACTIVITY_BROUGHT_TO_FRONT + Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT} flag set. This is a superset + of the singleTop mode, where if there is already an instance + of the activity being started at the top of the stack, it will + receive the Intent as described there (without the + FLAG_ACTIVITY_BROUGHT_TO_FRONT flag set). See the + Tasks and Back + Stack document for more details about tasks.
singleInstance3 Only allow one instance of this activity to ever be + running. This activity gets a unique task with only itself running + in it; if it is ever launched again with the same Intent, then that + task will be brought forward and its + {@link android.app.Activity#onNewIntent Activity.onNewIntent()} + method called. If this + activity tries to start a new activity, that new activity will be + launched in a separate task. See the + Tasks and Back + Stack document for more details about tasks.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#launchMode}. + @attr name android:launchMode + */ + public static final int AndroidManifestActivity_launchMode = 14; + /** +

+ @attr description + This value indicates how tasks rooted at this activity will behave in lockTask mode. + While in lockTask mode the system will not launch non-permitted tasks until + lockTask mode is disabled. +

While in lockTask mode with multiple permitted tasks running, each launched task is + permitted to finish, transitioning to the previous locked task, until there is only one + task remaining. At that point the last task running is not permitted to finish, unless it + uses the value always. + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
normal0 This is the default value. Tasks will not launch into lockTask mode but can be + placed there by calling {@link android.app.Activity#startLockTask}. If a task with + this mode has been whitelisted using {@link + android.app.admin.DevicePolicyManager#setLockTaskPackages} then calling + {@link android.app.Activity#startLockTask} will enter lockTask mode immediately, + otherwise the user will be presented with a dialog to approve entering pinned mode. +

If the system is already in lockTask mode when a new task rooted at this activity + is launched that task will or will not start depending on whether the package of this + activity has been whitelisted. +

Tasks rooted at this activity can only exit lockTask mode using + {@link android.app.Activity#stopLockTask}.

never1 Tasks will not launch into lockTask mode and cannot be placed there using + {@link android.app.Activity#startLockTask} or be pinned from the Overview screen. + If the system is already in lockTask mode when a new task rooted at this activity is + launched that task will not be started. +

Note: This mode is only available to system and privileged applications. + Non-privileged apps with this value will be treated as normal. +

always2 Tasks rooted at this activity will always launch into lockTask mode. If the system is + already in lockTask mode when this task is launched then the new task will be launched + on top of the current task. Tasks launched in this mode are capable of exiting + lockTask mode using {@link android.app.Activity#finish()}. +

Note: This mode is only available to system and privileged applications. + Non-privileged apps with this value will be treated as normal. +

if_whitelisted3 If the DevicePolicyManager (DPM) authorizes this package ({@link + android.app.admin.DevicePolicyManager#setLockTaskPackages}) then this mode is + identical to always, except that the activity needs to call + {@link android.app.Activity#stopLockTask} before being able to finish if it is the last + locked task. + If the DPM does not authorize this package then this mode is identical to normal.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#lockTaskMode}. + @attr name android:lockTaskMode + */ + public static final int AndroidManifestActivity_lockTaskMode = 38; + /** +

+ @attr description + A Drawable resource providing an extended graphical logo for its + associated item. Use with the application tag (to supply a default + logo for all application components), or with the activity, receiver, + service, or instrumentation tag (to supply a specific logo for that + component). It may also be used with the intent-filter tag to supply + a logo to show to the user when an activity is being selected based + on a particular Intent. + +

The given logo will be used to display to the user a graphical + representation of its associated component; for example as the + header in the Action Bar. The primary differences between an icon + and a logo are that logos are often wider and more detailed, and are + used without an accompanying text caption. This must be a reference + to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#logo}. + @attr name android:logo + */ + public static final int AndroidManifestActivity_logo = 23; + /** +

+ @attr description + The maximum number of entries of tasks rooted at this activity in the recent task list. + When this number of entries is reached the least recently used instance of this activity + will be removed from recents. The value will be clamped between 1 and 100 inclusive. + The default value for this if it is not specified is 15. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxRecents}. + @attr name android:maxRecents + */ + public static final int AndroidManifestActivity_maxRecents = 34; + /** +

+ @attr description + Specify whether a component is allowed to have multiple instances + of itself running in different processes. Use with the activity + and provider tags. + +

Normally the system will ensure that all instances of a particular + component are only running in a single process. You can use this + attribute to disable that behavior, allowing the system to create + instances wherever they are used (provided permissions allow it). + This is most often used with content providers, so that instances + of a provider can be created in each client process, allowing them + to be used without performing IPC. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#multiprocess}. + @attr name android:multiprocess + */ + public static final int AndroidManifestActivity_multiprocess = 9; + /** +

+ @attr description + Required name of the class implementing the activity, deriving from + {@link android.app.Activity}. This is a fully + qualified class name (for example, com.mycompany.myapp.MyActivity); as a + short-hand if the first character of the class + is a period then it is appended to your package name. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestActivity_name = 3; + /** +

+ @attr description + Specify whether an activity should be kept in its history stack. + If this attribute is set, then as soon as the user navigates away + from the activity it will be finished and they will no longer be + able to return to it. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#noHistory}. + @attr name android:noHistory + */ + public static final int AndroidManifestActivity_noHistory = 21; + /** +

+ @attr description + The name of the logical parent of the activity as it appears in the manifest. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#parentActivityName}. + @attr name android:parentActivityName + */ + public static final int AndroidManifestActivity_parentActivityName = 27; + /** +

+ @attr description + Specify a permission that a client is required to have in order to + use the associated object. If the client does not hold the named + permission, its request will fail. See the + Security and Permissions + document for more information on permissions. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#permission}. + @attr name android:permission + */ + public static final int AndroidManifestActivity_permission = 4; + /** +

+ @attr description + Define how an activity persist across reboots. Activities defined as "never" will not + be persisted. Those defined as "always" will be persisted. Those defined as "taskOnly" + will persist the root activity of the task only. See below for more detail as to + what gets persisted. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
persistRootOnly0 The default. If this activity forms the root of a task then that task will be + persisted across reboots but only the launching intent will be used. If the task + relinquishes its identity then the intent used is that of the topmost inherited + identity. All activities above this activity in the task will not be persisted. + In addition this activity will not be passed a PersistableBundle into which it + could have stored its state.
persistNever1 If this activity forms the root of a task then that task will not be persisted + across reboots
persistAcrossReboots2 If this activity forms the root of a task then the task and this activity will + be persisted across reboots. If the activity above this activity is also + tagged with the attribute "persist" then it will be persisted as well. + And so on up the task stack until either an activity without the + persistableMode="persistAcrossReboots" attribute or one that was launched + with the flag Intent.FLAG_CLEAR_TASK_WHEN_RESET is encountered. + +

Activities that are declared with the persistAcrossReboots attribute will be + provided with a PersistableBundle in onSavedInstanceState(), These activities may + use this PeristableBundle to save their state. Then, following a reboot, that + PersistableBundle will be provided back to the activity in its onCreate() method.

+

This corresponds to the global attribute + resource symbol {@link android.R.attr#persistableMode}. + @attr name android:persistableMode + */ + public static final int AndroidManifestActivity_persistableMode = 32; + /** +

+ @attr description + @hide This broacast receiver will only receive broadcasts for the + primary user. Can only be used with receivers. +

This is a private symbol. + @attr name com.android.internal:primaryUserOnly + */ + public static final int AndroidManifestActivity_primaryUserOnly = 41; + /** +

+ @attr description + Specify a specific process that the associated code is to run in. + Use with the application tag (to supply a default process for all + application components), or with the activity, receiver, service, + or provider tag (to supply a specific icon for that component). + +

Application components are normally run in a single process that + is created for the entire application. You can use this tag to modify + where they run. If the process name begins with a ':' character, + a new process private to that application will be created when needed + to run that component (allowing you to spread your application across + multiple processes). If the process name begins with a lower-case + character, the component will be run in a global process of that name, + provided that you have permission to do so, allowing multiple + applications to share one process to reduce resource usage. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#process}. + @attr name android:process + */ + public static final int AndroidManifestActivity_process = 7; + /** +

+ @attr description + Tasks whose root has this attribute set to true will replace baseIntent with that of the + next activity in the task. If the next activity also has this attribute set to true then + it will yield the baseIntent to any activity that it launches in the same task. This + continues until an activity is encountered which has this attribute set to false. False + is the default. This attribute set to true also permits activity's use of the + TaskDescription to change labels, colors and icons in the recent task list. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#relinquishTaskIdentity}. + @attr name android:relinquishTaskIdentity + */ + public static final int AndroidManifestActivity_relinquishTaskIdentity = 36; + /** +

+ @attr description + @hide +

This is a private symbol. + @attr name com.android.internal:resizeableActivity + */ + public static final int AndroidManifestActivity_resizeableActivity = 40; + /** +

+ @attr description + Indicate that it is okay for this activity be resumed while the previous + activity is in the process of pausing, without waiting for the previous pause + to complete. Use this with caution: your activity can not acquire any exclusive + resources (such as opening the camera or recording audio) when it launches, or it + may conflict with the previous activity and fail. + +

The default value of this attribute is false. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#resumeWhilePausing}. + @attr name android:resumeWhilePausing + */ + public static final int AndroidManifestActivity_resumeWhilePausing = 37; + /** +

+ @attr description + Specify the orientation an activity should be run in. If not + specified, it will run in the current preferred orientation + of the screen. +

This attribute is supported by the {@code <activity>} + element. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + + + + + + + + + + +
ConstantValueDescription
unspecified-1 No preference specified: let the system decide the best + orientation. This will either be the orientation selected + by the activity below, or the user's preferred orientation + if this activity is the bottom of a task. If the user + explicitly turned off sensor based orientation through settings + sensor based device rotation will be ignored. If not by default + sensor based orientation will be taken into account and the + orientation will changed based on how the user rotates the device. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_UNSPECIFIED}.
landscape0 Would like to have the screen in a landscape orientation: that + is, with the display wider than it is tall, ignoring sensor data. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_LANDSCAPE}.
portrait1 Would like to have the screen in a portrait orientation: that + is, with the display taller than it is wide, ignoring sensor data. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_PORTRAIT}.
user2 Use the user's current preferred orientation of the handset. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_USER}.
behind3 Keep the screen in the same orientation as whatever is behind + this activity. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_BEHIND}.
sensor4 Orientation is determined by a physical orientation sensor: + the display will rotate based on how the user moves the device. + Ignores user's setting to turn off sensor-based rotation. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_SENSOR}.
nosensor5 Always ignore orientation determined by orientation sensor: + the display will not rotate when the user moves the device. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_NOSENSOR}.
sensorLandscape6 Would like to have the screen in landscape orientation, but can + use the sensor to change which direction the screen is facing. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_SENSOR_LANDSCAPE}.
sensorPortrait7 Would like to have the screen in portrait orientation, but can + use the sensor to change which direction the screen is facing. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_SENSOR_PORTRAIT}.
reverseLandscape8 Would like to have the screen in landscape orientation, turned in + the opposite direction from normal landscape. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_REVERSE_LANDSCAPE}.
reversePortrait9 Would like to have the screen in portrait orientation, turned in + the opposite direction from normal portrait. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_REVERSE_PORTRAIT}.
fullSensor10 Orientation is determined by a physical orientation sensor: + the display will rotate based on how the user moves the device. + This allows any of the 4 possible rotations, regardless of what + the device will normally do (for example some devices won't + normally use 180 degree rotation). + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_FULL_SENSOR}.
userLandscape11 Would like to have the screen in landscape orientation, but if + the user has enabled sensor-based rotation then we can use the + sensor to change which direction the screen is facing. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_USER_LANDSCAPE}.
userPortrait12 Would like to have the screen in portrait orientation, but if + the user has enabled sensor-based rotation then we can use the + sensor to change which direction the screen is facing. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_USER_PORTRAIT}.
fullUser13 Respect the user's sensor-based rotation preference, but if + sensor-based rotation is enabled then allow the screen to rotate + in all 4 possible directions regardless of what + the device will normally do (for example some devices won't + normally use 180 degree rotation). + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_FULL_USER}.
locked14 Screen is locked to its current rotation, whatever that is. + Corresponds to + {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_LOCKED}.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#screenOrientation}. + @attr name android:screenOrientation + */ + public static final int AndroidManifestActivity_screenOrientation = 15; + /** +

+ @attr description + Specify that an Activity should be shown even if the current/foreground user + is different from the user of the Activity. This will also force the + android.view.LayoutParams.FLAG_SHOW_WHEN_LOCKED flag + to be set for all windows of this activity + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#showForAllUsers}. + @attr name android:showForAllUsers + */ + public static final int AndroidManifestActivity_showForAllUsers = 39; + /** +

+ @attr description + @deprecated use {@link android.R.attr#showForAllUsers} instead. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#showOnLockScreen}. + @attr name android:showOnLockScreen + */ + @Deprecated + public static final int AndroidManifestActivity_showOnLockScreen = 29; + /** +

+ @attr description + If set to true, a single instance of this component will run for + all users. That instance will run as user 0, the default/primary + user. When the app running is in processes for other users and interacts + with this component (by binding to a service for example) those processes will + always interact with the instance running for user 0. Enabling + single user mode forces "exported" of the component to be false, to + help avoid introducing multi-user security bugs. This feature is only + available to applications built in to the system image; you must hold the + permission INTERACT_ACROSS_USERS in order + to use this feature. This flag can only be used with services, + receivers, and providers; it can not be used with activities. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#singleUser}. + @attr name android:singleUser + */ + public static final int AndroidManifestActivity_singleUser = 28; + /** +

+ @attr description + Indicates that an Activity does not need to have its freeze state + (as returned by {@link android.app.Activity#onSaveInstanceState} + retained in order to be restarted. Generally you use this for activities + that do not store any state. When this flag is set, if for some reason + the activity is killed before it has a chance to save its state, + then the system will not remove it from the activity stack like + it normally would. Instead, the next time the user navigates to + it its {@link android.app.Activity#onCreate} method will be called + with a null icicle, just like it was starting for the first time. + +

This is used by the Home activity to make sure it does not get + removed if it crashes for some reason. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#stateNotNeeded}. + @attr name android:stateNotNeeded + */ + public static final int AndroidManifestActivity_stateNotNeeded = 12; + /** +

+ @attr description + Specify a task name that activities have an "affinity" to. + Use with the application tag (to supply a default affinity for all + activities in the application), or with the activity tag (to supply + a specific affinity for that component). + +

The default value for this attribute is the same as the package + name, indicating that all activities in the manifest should generally + be considered a single "application" to the user. You can use this + attribute to modify that behavior: either giving them an affinity + for another task, if the activities are intended to be part of that + task from the user's perspective, or using an empty string for + activities that have no affinity to a task. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#taskAffinity}. + @attr name android:taskAffinity + */ + public static final int AndroidManifestActivity_taskAffinity = 8; + /** +

+ @attr description + The overall theme to use for an activity. Use with either the + application tag (to supply a default theme for all activities) or + the activity tag (to supply a specific theme for that activity). + +

This automatically sets + your activity's Context to use this theme, and may also be used + for "starting" animations prior to the activity being launched (to + better match what the activity actually looks like). It is a reference + to a style resource defining the theme. If not set, the default + system theme will be used. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#theme}. + @attr name android:theme + */ + public static final int AndroidManifestActivity_theme = 0; + /** +

+ @attr description + Extra options for an activity's UI. Applies to either the {@code <activity>} or + {@code <application>} tag. If specified on the {@code <application>} + tag these will be considered defaults for all activities in the + application. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0 No extra UI options. This is the default.
splitActionBarWhenNarrow1 Split the options menu into a separate bar at the bottom of + the screen when severely constrained for horizontal space. + (e.g. portrait mode on a phone.) Instead of a small number + of action buttons appearing in the action bar at the top + of the screen, the action bar will split into the top navigation + section and the bottom menu section. Menu items will not be + split across the two bars; they will always appear together.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#uiOptions}. + @attr name android:uiOptions + */ + public static final int AndroidManifestActivity_uiOptions = 26; + /** +

+ @attr description + Specify the default soft-input mode for the main window of + this activity. A value besides "unspecified" here overrides + any value in the theme. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
stateUnspecified0 Not specified, use what the system thinks is best. This + is the default.
stateUnchanged1 Leave the soft input window as-is, in whatever state it + last was.
stateHidden2 Make the soft input area hidden when normally appropriate + (when the user is navigating forward to your window).
stateAlwaysHidden3 Always make the soft input area hidden when this window + has input focus.
stateVisible4 Make the soft input area visible when normally appropriate + (when the user is navigating forward to your window).
stateAlwaysVisible5 Always make the soft input area visible when this window + has input focus.
adjustUnspecified0x00 The window resize/pan adjustment has not been specified, + the system will automatically select between resize and pan + modes, depending + on whether the content of the window has any layout views + that can scroll their contents. If there is such a view, + then the window will be resized, with the assumption being + that the resizeable area can be reduced to make room for + the input UI.
adjustResize0x10 Always resize the window: the content area of the window is + reduced to make room for the soft input area.
adjustPan0x20 Don't resize the window to make room for the soft input area; + instead pan the contents of the window as focus moves inside + of it so that the user can see what they are typing. This is + generally less desireable than panning because the user may + need to close the input area to get at and interact with + parts of the window.
adjustNothing0x30 Don't resize or pan the window to make room for the + soft input area; the window is never adjusted for it.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowSoftInputMode}. + @attr name android:windowSoftInputMode + */ + public static final int AndroidManifestActivity_windowSoftInputMode = 20; + /** The activity-alias tag declares a new + name for an existing {@link #AndroidManifestActivity activity} + tag. + +

Zero or more {@link #AndroidManifestIntentFilter intent-filter} + tags can be included inside of an activity-alias, to specify the Intents + that it can handle. If none are specified, the activity can + only be started through direct specification of its class name. + The activity-alias tag appears as a child tag of the + {@link #AndroidManifestApplication application} tag. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #AndroidManifestActivityAlias_banner android:banner} A Drawable resource providing an extended graphical banner for its + associated item.
{@link #AndroidManifestActivityAlias_description android:description} Descriptive text for the associated data.
{@link #AndroidManifestActivityAlias_enabled android:enabled} Specify whether the activity-alias is enabled or not (that is, can be instantiated by the system).
{@link #AndroidManifestActivityAlias_exported android:exported} Flag indicating whether the given application component is available + to other applications.
{@link #AndroidManifestActivityAlias_icon android:icon} A Drawable resource providing a graphical representation of its + associated item.
{@link #AndroidManifestActivityAlias_label android:label} A user-legible name for the given item.
{@link #AndroidManifestActivityAlias_logo android:logo} A Drawable resource providing an extended graphical logo for its + associated item.
{@link #AndroidManifestActivityAlias_name android:name} Required name of the class implementing the activity, deriving from + {@link android.app.Activity}.
{@link #AndroidManifestActivityAlias_parentActivityName android:parentActivityName} The name of the logical parent of the activity as it appears in the manifest.
{@link #AndroidManifestActivityAlias_permission android:permission} Specify a permission that a client is required to have in order to + use the associated object.
{@link #AndroidManifestActivityAlias_targetActivity android:targetActivity} The name of the activity this alias should launch.
+ @see #AndroidManifestActivityAlias_banner + @see #AndroidManifestActivityAlias_description + @see #AndroidManifestActivityAlias_enabled + @see #AndroidManifestActivityAlias_exported + @see #AndroidManifestActivityAlias_icon + @see #AndroidManifestActivityAlias_label + @see #AndroidManifestActivityAlias_logo + @see #AndroidManifestActivityAlias_name + @see #AndroidManifestActivityAlias_parentActivityName + @see #AndroidManifestActivityAlias_permission + @see #AndroidManifestActivityAlias_targetActivity + */ + public static final int[] AndroidManifestActivityAlias = { + 0x01010001, 0x01010002, 0x01010003, 0x01010006, + 0x0101000e, 0x01010010, 0x01010020, 0x01010202, + 0x010102be, 0x010103a7, 0x010103f2 + }; + /** +

+ @attr description + A Drawable resource providing an extended graphical banner for its + associated item. Use with the application tag (to supply a default + banner for all application activities), or with the activity, tag to + supply a banner for a specific activity. + +

The given banner will be used to display to the user a graphical + representation of an activity in the Leanback application launcher. + Since banners are displayed only in the Leanback launcher, they should + only be used with activities (and applications) that support Leanback + mode. These are activities that handle Intents of category + {@link android.content.Intent#CATEGORY_LEANBACK_LAUNCHER + Intent.CATEGORY_LEANBACK_LAUNCHER}. +

This must be a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#banner}. + @attr name android:banner + */ + public static final int AndroidManifestActivityAlias_banner = 10; + /** +

+ @attr description + Descriptive text for the associated data. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#description}. + @attr name android:description + */ + public static final int AndroidManifestActivityAlias_description = 6; + /** +

+ @attr description + Specify whether the activity-alias is enabled or not (that is, can be instantiated by the system). + It can also be specified for an application as a whole, in which case a value of "false" + will override any component specific values (a value of "true" will not override the + component specific values). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#enabled}. + @attr name android:enabled + */ + public static final int AndroidManifestActivityAlias_enabled = 4; + /** +

+ @attr description + Flag indicating whether the given application component is available + to other applications. If false, it can only be accessed by + applications with its same user id (which usually means only by + code in its own package). If true, it can be invoked by external + entities, though which ones can do so may be controlled through + permissions. The default value is false for activity, receiver, + and service components that do not specify any intent filters; it + is true for activity, receiver, and service components that do + have intent filters (implying they expect to be invoked by others + who do not know their particular component name) and for all + content providers. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#exported}. + @attr name android:exported + */ + public static final int AndroidManifestActivityAlias_exported = 5; + /** +

+ @attr description + A Drawable resource providing a graphical representation of its + associated item. Use with the + application tag (to supply a default icon for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific icon for that component). It may also be + used with the intent-filter tag to supply an icon to show to the + user when an activity is being selected based on a particular Intent. + +

The given icon will be used to display to the user a graphical + representation of its associated component; for example, as the icon + for main activity that is displayed in the launcher. This must be + a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int AndroidManifestActivityAlias_icon = 1; + /** +

+ @attr description + A user-legible name for the given item. Use with the + application tag (to supply a default label for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific label for that component). It may also be + used with the intent-filter tag to supply a label to show to the + user when an activity is being selected based on a particular Intent. + +

The given label will be used wherever the user sees information + about its associated component; for example, as the name of a + main activity that is displayed in the launcher. You should + generally set this to a reference to a string resource, so that + it can be localized, however it is also allowed to supply a plain + string for quick and dirty programming. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#label}. + @attr name android:label + */ + public static final int AndroidManifestActivityAlias_label = 0; + /** +

+ @attr description + A Drawable resource providing an extended graphical logo for its + associated item. Use with the application tag (to supply a default + logo for all application components), or with the activity, receiver, + service, or instrumentation tag (to supply a specific logo for that + component). It may also be used with the intent-filter tag to supply + a logo to show to the user when an activity is being selected based + on a particular Intent. + +

The given logo will be used to display to the user a graphical + representation of its associated component; for example as the + header in the Action Bar. The primary differences between an icon + and a logo are that logos are often wider and more detailed, and are + used without an accompanying text caption. This must be a reference + to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#logo}. + @attr name android:logo + */ + public static final int AndroidManifestActivityAlias_logo = 8; + /** +

+ @attr description + Required name of the class implementing the activity, deriving from + {@link android.app.Activity}. This is a fully + qualified class name (for example, com.mycompany.myapp.MyActivity); as a + short-hand if the first character of the class + is a period then it is appended to your package name. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestActivityAlias_name = 2; + /** +

+ @attr description + The name of the logical parent of the activity as it appears in the manifest. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#parentActivityName}. + @attr name android:parentActivityName + */ + public static final int AndroidManifestActivityAlias_parentActivityName = 9; + /** +

+ @attr description + Specify a permission that a client is required to have in order to + use the associated object. If the client does not hold the named + permission, its request will fail. See the + Security and Permissions + document for more information on permissions. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#permission}. + @attr name android:permission + */ + public static final int AndroidManifestActivityAlias_permission = 3; + /** +

+ @attr description + The name of the activity this alias should launch. The activity + must be in the same manifest as the alias, and have been defined + in that manifest before the alias here. This must use a Java-style + naming convention to ensure the name is unique, for example + "com.mycompany.MyName". + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#targetActivity}. + @attr name android:targetActivity + */ + public static final int AndroidManifestActivityAlias_targetActivity = 7; + /** The application tag describes application-level components + contained in the package, as well as general application + attributes. Many of the attributes you can supply here (such + as theme, label, icon, permission, process, taskAffinity, + and allowTaskReparenting) serve + as default values for the corresponding attributes of components + declared inside of the application. + +

Inside of this element you specify what the application contains, + using the elements {@link #AndroidManifestProvider provider}, + {@link #AndroidManifestService service}, + {@link #AndroidManifestReceiver receiver}, + {@link #AndroidManifestActivity activity}, + {@link #AndroidManifestActivityAlias activity-alias}, and + {@link #AndroidManifestUsesLibrary uses-library}. The application tag + appears as a child of the root {@link #AndroidManifest manifest} tag. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AndroidManifestApplication_allowBackup android:allowBackup} Whether to allow the application to participate in the backup + and restore infrastructure.
{@link #AndroidManifestApplication_allowClearUserData android:allowClearUserData} Option to let applications specify that user data can/cannot be + cleared.
{@link #AndroidManifestApplication_allowTaskReparenting android:allowTaskReparenting} Specify that an activity can be moved out of a task it is in to + the task it has an affinity for when appropriate.
{@link #AndroidManifestApplication_backupAgent android:backupAgent} The name of the class subclassing BackupAgent to manage + backup and restore of the application's data on external storage.
{@link #AndroidManifestApplication_banner android:banner} A Drawable resource providing an extended graphical banner for its + associated item.
{@link #AndroidManifestApplication_cantSaveState android:cantSaveState} Declare that this application can't participate in the normal + state save/restore mechanism.
{@link #AndroidManifestApplication_debuggable android:debuggable} Flag indicating whether the application can be debugged, even when + running on a device that is running in user mode.
{@link #AndroidManifestApplication_description android:description} Descriptive text for the associated data.
{@link #AndroidManifestApplication_enabled android:enabled} Specify whether the components in this application are enabled or not (that is, can be + instantiated by the system).
{@link #AndroidManifestApplication_extractNativeLibs android:extractNativeLibs} When set installer will extract native libraries.
{@link #AndroidManifestApplication_fullBackupContent android:fullBackupContent} Applications will set this in their manifest to opt-in to or out of full app data back-up + and restore.
{@link #AndroidManifestApplication_fullBackupOnly android:fullBackupOnly} Indicates that even though the application provides a BackupAgent, + only full-data streaming backup operations are to be performed to save the app's + data.
{@link #AndroidManifestApplication_hardwareAccelerated android:hardwareAccelerated}

Flag indicating whether the application's rendering should be hardware + accelerated if possible.

{@link #AndroidManifestApplication_hasCode android:hasCode} Indicate whether this application contains code.
{@link #AndroidManifestApplication_icon android:icon} A Drawable resource providing a graphical representation of its + associated item.
{@link #AndroidManifestApplication_isGame android:isGame} A boolean flag used to indicate if an application is a Game or not.
{@link #AndroidManifestApplication_killAfterRestore android:killAfterRestore} Whether the application in question should be terminated after its + settings have been restored during a full-system restore operation.
{@link #AndroidManifestApplication_label android:label} A user-legible name for the given item.
{@link #AndroidManifestApplication_largeHeap android:largeHeap} Request that your application's processes be created with + a large Dalvik heap.
{@link #AndroidManifestApplication_logo android:logo} A Drawable resource providing an extended graphical logo for its + associated item.
{@link #AndroidManifestApplication_manageSpaceActivity android:manageSpaceActivity} Name of activity to be launched for managing the application's space on the device.
{@link #AndroidManifestApplication_multiArch android:multiArch} Declare that code from this application will need to be loaded into other + applications' processes.
{@link #AndroidManifestApplication_name android:name} An optional name of a class implementing the overall + {@link android.app.Application} for this package.
{@link #AndroidManifestApplication_neverEncrypt android:neverEncrypt}
{@link #AndroidManifestApplication_permission android:permission} Specify a permission that a client is required to have in order to + use the associated object.
{@link #AndroidManifestApplication_persistent android:persistent} Flag to control special persistent mode of an application.
{@link #AndroidManifestApplication_process android:process} Specify a specific process that the associated code is to run in.
{@link #AndroidManifestApplication_requiredAccountType android:requiredAccountType} Declare that this application requires an account of a certain + type.
{@link #AndroidManifestApplication_requiredForAllUsers android:requiredForAllUsers} Flag to specify if this application needs to be present for all users.
{@link #AndroidManifestApplication_restoreAnyVersion android:restoreAnyVersion} Indicate that the application is prepared to attempt a restore of any + backed-up dataset, even if the backup is apparently from a newer version + of the application than is currently installed on the device.
{@link #AndroidManifestApplication_restoreNeedsApplication android:restoreNeedsApplication} @deprecated This attribute is not used by the Android operating system.
{@link #AndroidManifestApplication_restrictedAccountType android:restrictedAccountType} Declare that this application requires access to restricted accounts of a certain + type.
{@link #AndroidManifestApplication_supportsRtl android:supportsRtl} Declare that your application will be able to deal with RTL (right to left) layouts.
{@link #AndroidManifestApplication_taskAffinity android:taskAffinity} Specify a task name that activities have an "affinity" to.
{@link #AndroidManifestApplication_testOnly android:testOnly} Option to indicate this application is only for testing purposes.
{@link #AndroidManifestApplication_theme android:theme} The overall theme to use for an activity.
{@link #AndroidManifestApplication_uiOptions android:uiOptions} Extra options for an activity's UI.
{@link #AndroidManifestApplication_usesCleartextTraffic android:usesCleartextTraffic} Declare that this application may use cleartext traffic, such as HTTP rather than + HTTPS; WebSockets rather than WebSockets Secure; XMPP, IMAP, STMP without STARTTLS or + TLS).
{@link #AndroidManifestApplication_vmSafeMode android:vmSafeMode} Flag indicating whether the application requests the VM to operate in + the safe mode.
+ @see #AndroidManifestApplication_allowBackup + @see #AndroidManifestApplication_allowClearUserData + @see #AndroidManifestApplication_allowTaskReparenting + @see #AndroidManifestApplication_backupAgent + @see #AndroidManifestApplication_banner + @see #AndroidManifestApplication_cantSaveState + @see #AndroidManifestApplication_debuggable + @see #AndroidManifestApplication_description + @see #AndroidManifestApplication_enabled + @see #AndroidManifestApplication_extractNativeLibs + @see #AndroidManifestApplication_fullBackupContent + @see #AndroidManifestApplication_fullBackupOnly + @see #AndroidManifestApplication_hardwareAccelerated + @see #AndroidManifestApplication_hasCode + @see #AndroidManifestApplication_icon + @see #AndroidManifestApplication_isGame + @see #AndroidManifestApplication_killAfterRestore + @see #AndroidManifestApplication_label + @see #AndroidManifestApplication_largeHeap + @see #AndroidManifestApplication_logo + @see #AndroidManifestApplication_manageSpaceActivity + @see #AndroidManifestApplication_multiArch + @see #AndroidManifestApplication_name + @see #AndroidManifestApplication_neverEncrypt + @see #AndroidManifestApplication_permission + @see #AndroidManifestApplication_persistent + @see #AndroidManifestApplication_process + @see #AndroidManifestApplication_requiredAccountType + @see #AndroidManifestApplication_requiredForAllUsers + @see #AndroidManifestApplication_restoreAnyVersion + @see #AndroidManifestApplication_restoreNeedsApplication + @see #AndroidManifestApplication_restrictedAccountType + @see #AndroidManifestApplication_supportsRtl + @see #AndroidManifestApplication_taskAffinity + @see #AndroidManifestApplication_testOnly + @see #AndroidManifestApplication_theme + @see #AndroidManifestApplication_uiOptions + @see #AndroidManifestApplication_usesCleartextTraffic + @see #AndroidManifestApplication_vmSafeMode + */ + public static final int[] AndroidManifestApplication = { + 0x01010000, 0x01010001, 0x01010002, 0x01010003, + 0x01010004, 0x01010005, 0x01010006, 0x0101000c, + 0x0101000d, 0x0101000e, 0x0101000f, 0x01010011, + 0x01010012, 0x01010020, 0x01010204, 0x01010272, + 0x0101027f, 0x01010280, 0x0101029c, 0x0101029d, + 0x010102b8, 0x010102ba, 0x010102be, 0x010102d3, + 0x0101035a, 0x01010398, 0x010103af, 0x010103d0, + 0x010103d5, 0x010103d6, 0x010103f2, 0x010103f4, + 0x01010473, 0x0101048e, 0x010104ea, 0x010104eb, + 0x010104ec, 0x011600b5, 0x011600b7 + }; + /** +

+ @attr description + Whether to allow the application to participate in the backup + and restore infrastructure. If this attribute is set to false, + no backup or restore of the application will ever be performed, even by a + full-system backup that would otherwise cause all application data to be saved + via adb. The default value of this attribute is true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#allowBackup}. + @attr name android:allowBackup + */ + public static final int AndroidManifestApplication_allowBackup = 17; + /** +

+ @attr description + Option to let applications specify that user data can/cannot be + cleared. This flag is turned on by default. + This attribute is usable only by applications + included in the system image. Third-party apps cannot use it. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#allowClearUserData}. + @attr name android:allowClearUserData + */ + public static final int AndroidManifestApplication_allowClearUserData = 5; + /** +

+ @attr description + Specify that an activity can be moved out of a task it is in to + the task it has an affinity for when appropriate. Use with the + application tag (to supply a default for all activities in the + application), or with an activity tag (to supply a specific + setting for that component). + +

Normally when an application is started, it is associated with + the task of the activity that started it and stays there for its + entire lifetime. You can use the allowTaskReparenting feature to force an + activity to be re-parented to a different task when the task it is + in goes to the background. Typically this is used to cause the + activities of an application to move back to the main task associated + with that application. The activity is re-parented to the task + with the same {@link android.R.attr#taskAffinity} as it has. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#allowTaskReparenting}. + @attr name android:allowTaskReparenting + */ + public static final int AndroidManifestApplication_allowTaskReparenting = 14; + /** +

+ @attr description + The name of the class subclassing BackupAgent to manage + backup and restore of the application's data on external storage. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#backupAgent}. + @attr name android:backupAgent + */ + public static final int AndroidManifestApplication_backupAgent = 16; + /** +

+ @attr description + A Drawable resource providing an extended graphical banner for its + associated item. Use with the application tag (to supply a default + banner for all application activities), or with the activity, tag to + supply a banner for a specific activity. + +

The given banner will be used to display to the user a graphical + representation of an activity in the Leanback application launcher. + Since banners are displayed only in the Leanback launcher, they should + only be used with activities (and applications) that support Leanback + mode. These are activities that handle Intents of category + {@link android.content.Intent#CATEGORY_LEANBACK_LAUNCHER + Intent.CATEGORY_LEANBACK_LAUNCHER}. +

This must be a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#banner}. + @attr name android:banner + */ + public static final int AndroidManifestApplication_banner = 30; + /** +

+ @attr description + Declare that this application can't participate in the normal + state save/restore mechanism. Since it is not able to save and + restore its state on demand, + it can not participate in the normal activity lifecycle. It will + not be killed while in the background; the user must explicitly + quit it. Only one such app can be running at a time; if the user + tries to launch a second such app, they will be prompted + to quit the first before doing so. While the + application is running, the user will be informed of this. + @hide +

This is a private symbol. + @attr name com.android.internal:cantSaveState + */ + public static final int AndroidManifestApplication_cantSaveState = 38; + /** +

+ @attr description + Flag indicating whether the application can be debugged, even when + running on a device that is running in user mode. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#debuggable}. + @attr name android:debuggable + */ + public static final int AndroidManifestApplication_debuggable = 10; + /** +

+ @attr description + Descriptive text for the associated data. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#description}. + @attr name android:description + */ + public static final int AndroidManifestApplication_description = 13; + /** +

+ @attr description + Specify whether the components in this application are enabled or not (that is, can be + instantiated by the system). + If "false", it overrides any component specific values (a value of "true" will not + override the component specific values). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#enabled}. + @attr name android:enabled + */ + public static final int AndroidManifestApplication_enabled = 9; + /** +

+ @attr description + When set installer will extract native libraries. If set to false + libraries in the apk must be stored and page-aligned. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#extractNativeLibs}. + @attr name android:extractNativeLibs + */ + public static final int AndroidManifestApplication_extractNativeLibs = 34; + /** +

+ @attr description + Applications will set this in their manifest to opt-in to or out of full app data back-up + and restore. Alternatively they can set it to an xml resource within their app that will + be parsed by the BackupAgent to selectively backup files indicated within that xml. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fullBackupContent}. + @attr name android:fullBackupContent + */ + public static final int AndroidManifestApplication_fullBackupContent = 35; + /** +

+ @attr description + Indicates that even though the application provides a BackupAgent, + only full-data streaming backup operations are to be performed to save the app's + data. This lets the app rely on full-data backups while still participating in + the backup and restore process via the BackupAgent's full-data backup APIs. + When this attribute is true the app's BackupAgent overrides of + the onBackup() and onRestore() callbacks can be empty stubs. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fullBackupOnly}. + @attr name android:fullBackupOnly + */ + public static final int AndroidManifestApplication_fullBackupOnly = 32; + /** +

+ @attr description +

Flag indicating whether the application's rendering should be hardware + accelerated if possible. This flag is turned on by default for applications + that are targeting {@link android.os.Build.VERSION_CODES#ICE_CREAM_SANDWICH} + or later.

+

This flag can be set on the application and any activity declared + in the manifest. When enabled for the application, each activity is + automatically assumed to be hardware accelerated. This flag can be + overridden in the activity tags, either turning it off (if on for the + application) or on (if off for the application.)

+

When this flag is turned on for an activity (either directly or via + the application tag), every window created from the activity, including + the activity's own window, will be hardware accelerated, if possible.

+

Please refer to the documentation of + {@link android.view.WindowManager.LayoutParams#FLAG_HARDWARE_ACCELERATED} + for more information on how to control this flag programmatically.

+ + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#hardwareAccelerated}. + @attr name android:hardwareAccelerated + */ + public static final int AndroidManifestApplication_hardwareAccelerated = 23; + /** +

+ @attr description + Indicate whether this application contains code. If set to false, + there is no code associated with it and thus the system will not + try to load its code when launching components. The default is true + for normal behavior. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#hasCode}. + @attr name android:hasCode + */ + public static final int AndroidManifestApplication_hasCode = 7; + /** +

+ @attr description + A Drawable resource providing a graphical representation of its + associated item. Use with the + application tag (to supply a default icon for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific icon for that component). It may also be + used with the intent-filter tag to supply an icon to show to the + user when an activity is being selected based on a particular Intent. + +

The given icon will be used to display to the user a graphical + representation of its associated component; for example, as the icon + for main activity that is displayed in the launcher. This must be + a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int AndroidManifestApplication_icon = 2; + /** +

+ @attr description + A boolean flag used to indicate if an application is a Game or not. +

This information can be used by the system to group together + applications that are classified as games, and display them separately + from the other applications. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#isGame}. + @attr name android:isGame + */ + public static final int AndroidManifestApplication_isGame = 31; + /** +

+ @attr description + Whether the application in question should be terminated after its + settings have been restored during a full-system restore operation. + Single-package restore operations will never cause the application to + be shut down. Full-system restore operations typically only occur once, + when the phone is first set up. Third-party applications will not usually + need to use this attribute. + +

The default is true, which means that after the application + has finished processing its data during a full-system restore, it will be + terminated. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#killAfterRestore}. + @attr name android:killAfterRestore + */ + public static final int AndroidManifestApplication_killAfterRestore = 18; + /** +

+ @attr description + A user-legible name for the given item. Use with the + application tag (to supply a default label for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific label for that component). It may also be + used with the intent-filter tag to supply a label to show to the + user when an activity is being selected based on a particular Intent. + +

The given label will be used wherever the user sees information + about its associated component; for example, as the name of a + main activity that is displayed in the launcher. You should + generally set this to a reference to a string resource, so that + it can be localized, however it is also allowed to supply a plain + string for quick and dirty programming. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#label}. + @attr name android:label + */ + public static final int AndroidManifestApplication_label = 1; + /** +

+ @attr description + Request that your application's processes be created with + a large Dalvik heap. This applies to all processes + created for the application. It only applies to the first + application loaded into a process; if using a sharedUserId + to allow multiple applications to use a process, they all must + use this option consistently or will get unpredictable results. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#largeHeap}. + @attr name android:largeHeap + */ + public static final int AndroidManifestApplication_largeHeap = 24; + /** +

+ @attr description + A Drawable resource providing an extended graphical logo for its + associated item. Use with the application tag (to supply a default + logo for all application components), or with the activity, receiver, + service, or instrumentation tag (to supply a specific logo for that + component). It may also be used with the intent-filter tag to supply + a logo to show to the user when an activity is being selected based + on a particular Intent. + +

The given logo will be used to display to the user a graphical + representation of its associated component; for example as the + header in the Action Bar. The primary differences between an icon + and a logo are that logos are often wider and more detailed, and are + used without an accompanying text caption. This must be a reference + to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#logo}. + @attr name android:logo + */ + public static final int AndroidManifestApplication_logo = 22; + /** +

+ @attr description + Name of activity to be launched for managing the application's space on the device. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#manageSpaceActivity}. + @attr name android:manageSpaceActivity + */ + public static final int AndroidManifestApplication_manageSpaceActivity = 4; + /** +

+ @attr description + Declare that code from this application will need to be loaded into other + applications' processes. On devices that support multiple instruction sets, + this implies the code might be loaded into a process that's using any of the devices + supported instruction sets. + +

The system might treat such applications specially, for eg., by + extracting the application's native libraries for all supported instruction + sets or by compiling the application's dex code for all supported instruction + sets. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#multiArch}. + @attr name android:multiArch + */ + public static final int AndroidManifestApplication_multiArch = 33; + /** +

+ @attr description + An optional name of a class implementing the overall + {@link android.app.Application} for this package. When the + process for your package is started, this class is instantiated + before any of the other application components. Note that this + is not required, and in fact most applications will probably + not need it. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestApplication_name = 3; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#neverEncrypt} + attribute's value can be found in the {@link #AndroidManifestApplication} array. + @attr name com.android.internal:neverEncrypt + */ + public static final int AndroidManifestApplication_neverEncrypt = 37; + /** +

+ @attr description + Specify a permission that a client is required to have in order to + use the associated object. If the client does not hold the named + permission, its request will fail. See the + Security and Permissions + document for more information on permissions. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#permission}. + @attr name android:permission + */ + public static final int AndroidManifestApplication_permission = 6; + /** +

+ @attr description + Flag to control special persistent mode of an application. This should + not normally be used by applications; it requires that the system keep + your application running at all times. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#persistent}. + @attr name android:persistent + */ + public static final int AndroidManifestApplication_persistent = 8; + /** +

+ @attr description + Specify a specific process that the associated code is to run in. + Use with the application tag (to supply a default process for all + application components), or with the activity, receiver, service, + or provider tag (to supply a specific icon for that component). + +

Application components are normally run in a single process that + is created for the entire application. You can use this tag to modify + where they run. If the process name begins with a ':' character, + a new process private to that application will be created when needed + to run that component (allowing you to spread your application across + multiple processes). If the process name begins with a lower-case + character, the component will be run in a global process of that name, + provided that you have permission to do so, allowing multiple + applications to share one process to reduce resource usage. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#process}. + @attr name android:process + */ + public static final int AndroidManifestApplication_process = 11; + /** +

+ @attr description + Declare that this application requires an account of a certain + type. The default value is null and indicates that the application can work without + any accounts. The type should correspond to the account authenticator type, such as + "com.google". + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#requiredAccountType}. + @attr name android:requiredAccountType + */ + public static final int AndroidManifestApplication_requiredAccountType = 29; + /** +

+ @attr description + Flag to specify if this application needs to be present for all users. Only pre-installed + applications can request this feature. Default value is false. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#requiredForAllUsers}. + @attr name android:requiredForAllUsers + */ + public static final int AndroidManifestApplication_requiredForAllUsers = 27; + /** +

+ @attr description + Indicate that the application is prepared to attempt a restore of any + backed-up dataset, even if the backup is apparently from a newer version + of the application than is currently installed on the device. Setting + this attribute to true will permit the Backup Manager to + attempt restore even when a version mismatch suggests that the data are + incompatible. Use with caution! + +

The default value of this attribute is false. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#restoreAnyVersion}. + @attr name android:restoreAnyVersion + */ + public static final int AndroidManifestApplication_restoreAnyVersion = 21; + /** +

+ @attr description + @deprecated This attribute is not used by the Android operating system. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#restoreNeedsApplication}. + @attr name android:restoreNeedsApplication + */ + @Deprecated + public static final int AndroidManifestApplication_restoreNeedsApplication = 19; + /** +

+ @attr description + Declare that this application requires access to restricted accounts of a certain + type. The default value is null and restricted accounts won\'t be visible to this + application. The type should correspond to the account authenticator type, such as + "com.google". + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#restrictedAccountType}. + @attr name android:restrictedAccountType + */ + public static final int AndroidManifestApplication_restrictedAccountType = 28; + /** +

+ @attr description + Declare that your application will be able to deal with RTL (right to left) layouts. + If set to false (default value), your application will not care about RTL layouts. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#supportsRtl}. + @attr name android:supportsRtl + */ + public static final int AndroidManifestApplication_supportsRtl = 26; + /** +

+ @attr description + Specify a task name that activities have an "affinity" to. + Use with the application tag (to supply a default affinity for all + activities in the application), or with the activity tag (to supply + a specific affinity for that component). + +

The default value for this attribute is the same as the package + name, indicating that all activities in the manifest should generally + be considered a single "application" to the user. You can use this + attribute to modify that behavior: either giving them an affinity + for another task, if the activities are intended to be part of that + task from the user's perspective, or using an empty string for + activities that have no affinity to a task. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#taskAffinity}. + @attr name android:taskAffinity + */ + public static final int AndroidManifestApplication_taskAffinity = 12; + /** +

+ @attr description + Option to indicate this application is only for testing purposes. + For example, it may expose functionality or data outside of itself + that would cause a security hole, but is useful for testing. This + kind of application can not be installed without the + INSTALL_ALLOW_TEST flag, which means only through adb install. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#testOnly}. + @attr name android:testOnly + */ + public static final int AndroidManifestApplication_testOnly = 15; + /** +

+ @attr description + The overall theme to use for an activity. Use with either the + application tag (to supply a default theme for all activities) or + the activity tag (to supply a specific theme for that activity). + +

This automatically sets + your activity's Context to use this theme, and may also be used + for "starting" animations prior to the activity being launched (to + better match what the activity actually looks like). It is a reference + to a style resource defining the theme. If not set, the default + system theme will be used. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#theme}. + @attr name android:theme + */ + public static final int AndroidManifestApplication_theme = 0; + /** +

+ @attr description + Extra options for an activity's UI. Applies to either the {@code <activity>} or + {@code <application>} tag. If specified on the {@code <application>} + tag these will be considered defaults for all activities in the + application. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
none0 No extra UI options. This is the default.
splitActionBarWhenNarrow1 Split the options menu into a separate bar at the bottom of + the screen when severely constrained for horizontal space. + (e.g. portrait mode on a phone.) Instead of a small number + of action buttons appearing in the action bar at the top + of the screen, the action bar will split into the top navigation + section and the bottom menu section. Menu items will not be + split across the two bars; they will always appear together.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#uiOptions}. + @attr name android:uiOptions + */ + public static final int AndroidManifestApplication_uiOptions = 25; + /** +

+ @attr description + Declare that this application may use cleartext traffic, such as HTTP rather than + HTTPS; WebSockets rather than WebSockets Secure; XMPP, IMAP, STMP without STARTTLS or + TLS). Defaults to true. If set to false {@code false}, the application declares that it + does not intend to use cleartext network traffic, in which case platform components + (e.g. HTTP stacks, {@code DownloadManager}, {@code MediaPlayer}) will refuse + applications's requests to use cleartext traffic. Third-party libraries are encouraged + to honor this flag as well. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#usesCleartextTraffic}. + @attr name android:usesCleartextTraffic + */ + public static final int AndroidManifestApplication_usesCleartextTraffic = 36; + /** +

+ @attr description + Flag indicating whether the application requests the VM to operate in + the safe mode. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#vmSafeMode}. + @attr name android:vmSafeMode + */ + public static final int AndroidManifestApplication_vmSafeMode = 20; + /** Attributes that can be supplied in an AndroidManifest.xml + category tag, a child of the + {@link #AndroidManifestIntentFilter intent-filter} tag. + See {@link android.content.IntentFilter#addCategory} for + more information. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #AndroidManifestCategory_name android:name} The name of category that is handled, using the Java-style + naming convention.
+ @see #AndroidManifestCategory_name + */ + public static final int[] AndroidManifestCategory = { + 0x01010003 + }; + /** +

+ @attr description + The name of category that is handled, using the Java-style + naming convention. For example, to support + {@link android.content.Intent#CATEGORY_LAUNCHER Intent.CATEGORY_LAUNCHER} + you would put android.intent.category.LAUNCHER here. + Custom actions should generally use a prefix matching the + package name. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestCategory_name = 0; + /** Attributes that can be supplied in an AndroidManifest.xml + screen tag, a child of compatible-screens, + which is itself a child of the root + {@link #AndroidManifest manifest} tag. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AndroidManifestCompatibleScreensScreen_screenDensity android:screenDensity} Specifies a compatible screen density, as per the device + configuration screen density bins.
{@link #AndroidManifestCompatibleScreensScreen_screenSize android:screenSize} Specifies a compatible screen size, as per the device + configuration screen size bins.
+ @see #AndroidManifestCompatibleScreensScreen_screenDensity + @see #AndroidManifestCompatibleScreensScreen_screenSize + */ + public static final int[] AndroidManifestCompatibleScreensScreen = { + 0x010102ca, 0x010102cb + }; + /** +

+ @attr description + Specifies a compatible screen density, as per the device + configuration screen density bins. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
ldpi120 A low density screen, approximately 120dpi.
mdpi160 A medium density screen, approximately 160dpi.
hdpi240 A high density screen, approximately 240dpi.
xhdpi320 An extra high density screen, approximately 320dpi.
xxhdpi480 An extra extra high density screen, approximately 480dpi.
xxxhdpi640 An extra extra extra high density screen, approximately 640dpi.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#screenDensity}. + @attr name android:screenDensity + */ + public static final int AndroidManifestCompatibleScreensScreen_screenDensity = 1; + /** +

+ @attr description + Specifies a compatible screen size, as per the device + configuration screen size bins. + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
small200 A small screen configuration, at least 240x320dp.
normal300 A normal screen configuration, at least 320x480dp.
large400 A large screen configuration, at least 400x530dp.
xlarge500 An extra large screen configuration, at least 600x800dp.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#screenSize}. + @attr name android:screenSize + */ + public static final int AndroidManifestCompatibleScreensScreen_screenSize = 0; + /** Attributes that can be supplied in an AndroidManifest.xml + data tag, a child of the + {@link #AndroidManifestIntentFilter intent-filter} tag, describing + the types of data that match. This tag can be specified multiple + times to supply multiple data options, as described in the + {@link android.content.IntentFilter} class. Note that all such + tags are adding options to the same IntentFilter so that, for example, + <data android:scheme="myscheme" android:host="me.com" /> + is equivalent to <data android:scheme="myscheme" /> + <data android:host="me.com" />. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #AndroidManifestData_host android:host} Specify a URI authority host that is handled, as per + {@link android.content.IntentFilter#addDataAuthority + IntentFilter.addDataAuthority()}.
{@link #AndroidManifestData_mimeType android:mimeType} Specify a MIME type that is handled, as per + {@link android.content.IntentFilter#addDataType + IntentFilter.addDataType()}.
{@link #AndroidManifestData_path android:path} Specify a URI path that must exactly match, as per + {@link android.content.IntentFilter#addDataPath + IntentFilter.addDataPath()} with + {@link android.os.PatternMatcher#PATTERN_LITERAL}.
{@link #AndroidManifestData_pathPattern android:pathPattern} Specify a URI path that matches a simple pattern, as per + {@link android.content.IntentFilter#addDataPath + IntentFilter.addDataPath()} with + {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}.
{@link #AndroidManifestData_pathPrefix android:pathPrefix} Specify a URI path that must be a prefix to match, as per + {@link android.content.IntentFilter#addDataPath + IntentFilter.addDataPath()} with + {@link android.os.PatternMatcher#PATTERN_PREFIX}.
{@link #AndroidManifestData_port android:port} Specify a URI authority port that is handled, as per + {@link android.content.IntentFilter#addDataAuthority + IntentFilter.addDataAuthority()}.
{@link #AndroidManifestData_scheme android:scheme} Specify a URI scheme that is handled, as per + {@link android.content.IntentFilter#addDataScheme + IntentFilter.addDataScheme()}.
{@link #AndroidManifestData_ssp android:ssp} Specify a URI scheme specific part that must exactly match, as per + {@link android.content.IntentFilter#addDataSchemeSpecificPart + IntentFilter.addDataSchemeSpecificPart()} with + {@link android.os.PatternMatcher#PATTERN_LITERAL}.
{@link #AndroidManifestData_sspPattern android:sspPattern} Specify a URI scheme specific part that matches a simple pattern, as per + {@link android.content.IntentFilter#addDataSchemeSpecificPart + IntentFilter.addDataSchemeSpecificPart()} with + {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}.
{@link #AndroidManifestData_sspPrefix android:sspPrefix} Specify a URI scheme specific part that must be a prefix to match, as per + {@link android.content.IntentFilter#addDataSchemeSpecificPart + IntentFilter.addDataSchemeSpecificPart()} with + {@link android.os.PatternMatcher#PATTERN_PREFIX}.
+ @see #AndroidManifestData_host + @see #AndroidManifestData_mimeType + @see #AndroidManifestData_path + @see #AndroidManifestData_pathPattern + @see #AndroidManifestData_pathPrefix + @see #AndroidManifestData_port + @see #AndroidManifestData_scheme + @see #AndroidManifestData_ssp + @see #AndroidManifestData_sspPattern + @see #AndroidManifestData_sspPrefix + */ + public static final int[] AndroidManifestData = { + 0x01010026, 0x01010027, 0x01010028, 0x01010029, + 0x0101002a, 0x0101002b, 0x0101002c, 0x010103e3, + 0x010103e4, 0x010103e5 + }; + /** +

+ @attr description + Specify a URI authority host that is handled, as per + {@link android.content.IntentFilter#addDataAuthority + IntentFilter.addDataAuthority()}. +

Note: host name matching in the Android framework is + case-sensitive, unlike the formal RFC. As a result, + host names here should always use lower case letters.

+ + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#host}. + @attr name android:host + */ + public static final int AndroidManifestData_host = 2; + /** +

+ @attr description + Specify a MIME type that is handled, as per + {@link android.content.IntentFilter#addDataType + IntentFilter.addDataType()}. +

Note: MIME type matching in the Android framework is + case-sensitive, unlike formal RFC MIME types. As a result, + MIME types here should always use lower case letters.

+ + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#mimeType}. + @attr name android:mimeType + */ + public static final int AndroidManifestData_mimeType = 0; + /** +

+ @attr description + Specify a URI path that must exactly match, as per + {@link android.content.IntentFilter#addDataPath + IntentFilter.addDataPath()} with + {@link android.os.PatternMatcher#PATTERN_LITERAL}. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#path}. + @attr name android:path + */ + public static final int AndroidManifestData_path = 4; + /** +

+ @attr description + Specify a URI path that matches a simple pattern, as per + {@link android.content.IntentFilter#addDataPath + IntentFilter.addDataPath()} with + {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}. + Note that because '\' is used as an escape character when + reading the string from XML (before it is parsed as a pattern), + you will need to double-escape: for example a literal "*" would + be written as "\\*" and a literal "\" would be written as + "\\\\". This is basically the same as what you would need to + write if constructing the string in Java code. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#pathPattern}. + @attr name android:pathPattern + */ + public static final int AndroidManifestData_pathPattern = 6; + /** +

+ @attr description + Specify a URI path that must be a prefix to match, as per + {@link android.content.IntentFilter#addDataPath + IntentFilter.addDataPath()} with + {@link android.os.PatternMatcher#PATTERN_PREFIX}. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#pathPrefix}. + @attr name android:pathPrefix + */ + public static final int AndroidManifestData_pathPrefix = 5; + /** +

+ @attr description + Specify a URI authority port that is handled, as per + {@link android.content.IntentFilter#addDataAuthority + IntentFilter.addDataAuthority()}. If a host is supplied + but not a port, any port is matched. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#port}. + @attr name android:port + */ + public static final int AndroidManifestData_port = 3; + /** +

+ @attr description + Specify a URI scheme that is handled, as per + {@link android.content.IntentFilter#addDataScheme + IntentFilter.addDataScheme()}. +

Note: scheme matching in the Android framework is + case-sensitive, unlike the formal RFC. As a result, + schemes here should always use lower case letters.

+ + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scheme}. + @attr name android:scheme + */ + public static final int AndroidManifestData_scheme = 1; + /** +

+ @attr description + Specify a URI scheme specific part that must exactly match, as per + {@link android.content.IntentFilter#addDataSchemeSpecificPart + IntentFilter.addDataSchemeSpecificPart()} with + {@link android.os.PatternMatcher#PATTERN_LITERAL}. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#ssp}. + @attr name android:ssp + */ + public static final int AndroidManifestData_ssp = 7; + /** +

+ @attr description + Specify a URI scheme specific part that matches a simple pattern, as per + {@link android.content.IntentFilter#addDataSchemeSpecificPart + IntentFilter.addDataSchemeSpecificPart()} with + {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}. + Note that because '\' is used as an escape character when + reading the string from XML (before it is parsed as a pattern), + you will need to double-escape: for example a literal "*" would + be written as "\\*" and a literal "\" would be written as + "\\\\". This is basically the same as what you would need to + write if constructing the string in Java code. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#sspPattern}. + @attr name android:sspPattern + */ + public static final int AndroidManifestData_sspPattern = 9; + /** +

+ @attr description + Specify a URI scheme specific part that must be a prefix to match, as per + {@link android.content.IntentFilter#addDataSchemeSpecificPart + IntentFilter.addDataSchemeSpecificPart()} with + {@link android.os.PatternMatcher#PATTERN_PREFIX}. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#sspPrefix}. + @attr name android:sspPrefix + */ + public static final int AndroidManifestData_sspPrefix = 8; + /** The feature-group tag specifies + a set of one or more uses-feature elements that + the application can utilize. An application uses multiple + feature-group sets to indicate that it can support + different combinations of features. + +

This appears as a child tag of the root + {@link #AndroidManifest manifest} tag. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #AndroidManifestFeatureGroup_label android:label} The human-readable name of the feature group.
+ @see #AndroidManifestFeatureGroup_label + */ + public static final int[] AndroidManifestFeatureGroup = { + 0x01010001 + }; + /** +

+ @attr description + The human-readable name of the feature group. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#label}. + @attr name android:label + */ + public static final int AndroidManifestFeatureGroup_label = 0; + /** Attributes that can be supplied in an AndroidManifest.xml + grant-uri-permission tag, a child of the + {@link #AndroidManifestProvider provider} tag, describing a specific + URI path that can be granted as a permission. This tag can be + specified multiple time to supply multiple paths. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AndroidManifestGrantUriPermission_path android:path} Specify a URI path that must exactly match, as per + {@link android.os.PatternMatcher} with + {@link android.os.PatternMatcher#PATTERN_LITERAL}.
{@link #AndroidManifestGrantUriPermission_pathPattern android:pathPattern} Specify a URI path that matches a simple pattern, as per + {@link android.os.PatternMatcher} with + {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}.
{@link #AndroidManifestGrantUriPermission_pathPrefix android:pathPrefix} Specify a URI path that must be a prefix to match, as per + {@link android.os.PatternMatcher} with + {@link android.os.PatternMatcher#PATTERN_PREFIX}.
+ @see #AndroidManifestGrantUriPermission_path + @see #AndroidManifestGrantUriPermission_pathPattern + @see #AndroidManifestGrantUriPermission_pathPrefix + */ + public static final int[] AndroidManifestGrantUriPermission = { + 0x0101002a, 0x0101002b, 0x0101002c + }; + /** +

+ @attr description + Specify a URI path that must exactly match, as per + {@link android.os.PatternMatcher} with + {@link android.os.PatternMatcher#PATTERN_LITERAL}. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#path}. + @attr name android:path + */ + public static final int AndroidManifestGrantUriPermission_path = 0; + /** +

+ @attr description + Specify a URI path that matches a simple pattern, as per + {@link android.os.PatternMatcher} with + {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}. + Note that because '\' is used as an escape character when + reading the string from XML (before it is parsed as a pattern), + you will need to double-escape: for example a literal "*" would + be written as "\\*" and a literal "\" would be written as + "\\\\". This is basically the same as what you would need to + write if constructing the string in Java code. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#pathPattern}. + @attr name android:pathPattern + */ + public static final int AndroidManifestGrantUriPermission_pathPattern = 2; + /** +

+ @attr description + Specify a URI path that must be a prefix to match, as per + {@link android.os.PatternMatcher} with + {@link android.os.PatternMatcher#PATTERN_PREFIX}. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#pathPrefix}. + @attr name android:pathPrefix + */ + public static final int AndroidManifestGrantUriPermission_pathPrefix = 1; + /** Attributes that can be supplied in an AndroidManifest.xml + instrumentation tag, a child of the root + {@link #AndroidManifest manifest} tag. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #AndroidManifestInstrumentation_banner android:banner} A Drawable resource providing an extended graphical banner for its + associated item.
{@link #AndroidManifestInstrumentation_functionalTest android:functionalTest} Flag indicating that an Instrumentation class should be run as a + functional test.
{@link #AndroidManifestInstrumentation_handleProfiling android:handleProfiling} Flag indicating that an Instrumentation class wants to take care + of starting/stopping profiling itself, rather than relying on + the default behavior of profiling the complete time it is running.
{@link #AndroidManifestInstrumentation_icon android:icon} A Drawable resource providing a graphical representation of its + associated item.
{@link #AndroidManifestInstrumentation_label android:label} A user-legible name for the given item.
{@link #AndroidManifestInstrumentation_logo android:logo} A Drawable resource providing an extended graphical logo for its + associated item.
{@link #AndroidManifestInstrumentation_name android:name} Required name of the class implementing the instrumentation, deriving from + {@link android.app.Instrumentation}.
{@link #AndroidManifestInstrumentation_targetPackage android:targetPackage} The name of the application package that an Instrumentation object + will run against.
+ @see #AndroidManifestInstrumentation_banner + @see #AndroidManifestInstrumentation_functionalTest + @see #AndroidManifestInstrumentation_handleProfiling + @see #AndroidManifestInstrumentation_icon + @see #AndroidManifestInstrumentation_label + @see #AndroidManifestInstrumentation_logo + @see #AndroidManifestInstrumentation_name + @see #AndroidManifestInstrumentation_targetPackage + */ + public static final int[] AndroidManifestInstrumentation = { + 0x01010001, 0x01010002, 0x01010003, 0x01010021, + 0x01010022, 0x01010023, 0x010102be, 0x010103f2 + }; + /** +

+ @attr description + A Drawable resource providing an extended graphical banner for its + associated item. Use with the application tag (to supply a default + banner for all application activities), or with the activity, tag to + supply a banner for a specific activity. + +

The given banner will be used to display to the user a graphical + representation of an activity in the Leanback application launcher. + Since banners are displayed only in the Leanback launcher, they should + only be used with activities (and applications) that support Leanback + mode. These are activities that handle Intents of category + {@link android.content.Intent#CATEGORY_LEANBACK_LAUNCHER + Intent.CATEGORY_LEANBACK_LAUNCHER}. +

This must be a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#banner}. + @attr name android:banner + */ + public static final int AndroidManifestInstrumentation_banner = 7; + /** +

+ @attr description + Flag indicating that an Instrumentation class should be run as a + functional test. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#functionalTest}. + @attr name android:functionalTest + */ + public static final int AndroidManifestInstrumentation_functionalTest = 5; + /** +

+ @attr description + Flag indicating that an Instrumentation class wants to take care + of starting/stopping profiling itself, rather than relying on + the default behavior of profiling the complete time it is running. + This allows it to target profiling data at a specific set of + operations. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#handleProfiling}. + @attr name android:handleProfiling + */ + public static final int AndroidManifestInstrumentation_handleProfiling = 4; + /** +

+ @attr description + A Drawable resource providing a graphical representation of its + associated item. Use with the + application tag (to supply a default icon for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific icon for that component). It may also be + used with the intent-filter tag to supply an icon to show to the + user when an activity is being selected based on a particular Intent. + +

The given icon will be used to display to the user a graphical + representation of its associated component; for example, as the icon + for main activity that is displayed in the launcher. This must be + a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int AndroidManifestInstrumentation_icon = 1; + /** +

+ @attr description + A user-legible name for the given item. Use with the + application tag (to supply a default label for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific label for that component). It may also be + used with the intent-filter tag to supply a label to show to the + user when an activity is being selected based on a particular Intent. + +

The given label will be used wherever the user sees information + about its associated component; for example, as the name of a + main activity that is displayed in the launcher. You should + generally set this to a reference to a string resource, so that + it can be localized, however it is also allowed to supply a plain + string for quick and dirty programming. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#label}. + @attr name android:label + */ + public static final int AndroidManifestInstrumentation_label = 0; + /** +

+ @attr description + A Drawable resource providing an extended graphical logo for its + associated item. Use with the application tag (to supply a default + logo for all application components), or with the activity, receiver, + service, or instrumentation tag (to supply a specific logo for that + component). It may also be used with the intent-filter tag to supply + a logo to show to the user when an activity is being selected based + on a particular Intent. + +

The given logo will be used to display to the user a graphical + representation of its associated component; for example as the + header in the Action Bar. The primary differences between an icon + and a logo are that logos are often wider and more detailed, and are + used without an accompanying text caption. This must be a reference + to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#logo}. + @attr name android:logo + */ + public static final int AndroidManifestInstrumentation_logo = 6; + /** +

+ @attr description + Required name of the class implementing the instrumentation, deriving from + {@link android.app.Instrumentation}. This is a fully + qualified class name (for example, com.mycompany.myapp.MyActivity); as a + short-hand if the first character of the class + is a period then it is appended to your package name. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestInstrumentation_name = 2; + /** +

+ @attr description + The name of the application package that an Instrumentation object + will run against. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#targetPackage}. + @attr name android:targetPackage + */ + public static final int AndroidManifestInstrumentation_targetPackage = 3; + /** The intent-filter tag is used to construct an + {@link android.content.IntentFilter} object that will be used + to determine which component can handle a particular + {@link android.content.Intent} that has been given to the system. + It can be used as a child of the + {@link #AndroidManifestActivity activity}, + {@link #AndroidManifestReceiver receiver} and + {@link #AndroidManifestService service} + tags. + +

Zero or more {@link #AndroidManifestAction action}, + {@link #AndroidManifestCategory category}, and/or + {@link #AndroidManifestData data} tags should be + included inside to describe the contents of the filter. + +

The optional label and icon attributes here are used with + an activity to supply an alternative description of that activity + when it is being started through an Intent matching this filter. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AndroidManifestIntentFilter_autoVerify android:autoVerify} Specify whether an activity intent filter will need to be verified thru its set + of data URIs.
{@link #AndroidManifestIntentFilter_banner android:banner} A Drawable resource providing an extended graphical banner for its + associated item.
{@link #AndroidManifestIntentFilter_icon android:icon} A Drawable resource providing a graphical representation of its + associated item.
{@link #AndroidManifestIntentFilter_label android:label} A user-legible name for the given item.
{@link #AndroidManifestIntentFilter_logo android:logo} A Drawable resource providing an extended graphical logo for its + associated item.
{@link #AndroidManifestIntentFilter_priority android:priority} Specify the relative importance or ability in handling a particular + Intent.
+ @see #AndroidManifestIntentFilter_autoVerify + @see #AndroidManifestIntentFilter_banner + @see #AndroidManifestIntentFilter_icon + @see #AndroidManifestIntentFilter_label + @see #AndroidManifestIntentFilter_logo + @see #AndroidManifestIntentFilter_priority + */ + public static final int[] AndroidManifestIntentFilter = { + 0x01010001, 0x01010002, 0x0101001c, 0x010102be, + 0x010103f2, 0x010104ee + }; + /** +

+ @attr description + Specify whether an activity intent filter will need to be verified thru its set + of data URIs. This will only be used when the Intent's action is set to + {@link android.content.Intent#ACTION_VIEW Intent.ACTION_VIEW} and the Intent's category is + set to {@link android.content.Intent#CATEGORY_BROWSABLE Intent.CATEGORY_BROWSABLE} and the + intern filter data scheme is set to "http" or "https". When set to true, the intent filter + will need to use its data tag for getting the URIs to verify with. + + For each URI, an HTTPS network request will be done to /.well-known/statements.json + host to verify that the web site is okay with the app intercepting the URI. + + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#autoVerify}. + @attr name android:autoVerify + */ + public static final int AndroidManifestIntentFilter_autoVerify = 5; + /** +

+ @attr description + A Drawable resource providing an extended graphical banner for its + associated item. Use with the application tag (to supply a default + banner for all application activities), or with the activity, tag to + supply a banner for a specific activity. + +

The given banner will be used to display to the user a graphical + representation of an activity in the Leanback application launcher. + Since banners are displayed only in the Leanback launcher, they should + only be used with activities (and applications) that support Leanback + mode. These are activities that handle Intents of category + {@link android.content.Intent#CATEGORY_LEANBACK_LAUNCHER + Intent.CATEGORY_LEANBACK_LAUNCHER}. +

This must be a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#banner}. + @attr name android:banner + */ + public static final int AndroidManifestIntentFilter_banner = 4; + /** +

+ @attr description + A Drawable resource providing a graphical representation of its + associated item. Use with the + application tag (to supply a default icon for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific icon for that component). It may also be + used with the intent-filter tag to supply an icon to show to the + user when an activity is being selected based on a particular Intent. + +

The given icon will be used to display to the user a graphical + representation of its associated component; for example, as the icon + for main activity that is displayed in the launcher. This must be + a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int AndroidManifestIntentFilter_icon = 1; + /** +

+ @attr description + A user-legible name for the given item. Use with the + application tag (to supply a default label for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific label for that component). It may also be + used with the intent-filter tag to supply a label to show to the + user when an activity is being selected based on a particular Intent. + +

The given label will be used wherever the user sees information + about its associated component; for example, as the name of a + main activity that is displayed in the launcher. You should + generally set this to a reference to a string resource, so that + it can be localized, however it is also allowed to supply a plain + string for quick and dirty programming. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#label}. + @attr name android:label + */ + public static final int AndroidManifestIntentFilter_label = 0; + /** +

+ @attr description + A Drawable resource providing an extended graphical logo for its + associated item. Use with the application tag (to supply a default + logo for all application components), or with the activity, receiver, + service, or instrumentation tag (to supply a specific logo for that + component). It may also be used with the intent-filter tag to supply + a logo to show to the user when an activity is being selected based + on a particular Intent. + +

The given logo will be used to display to the user a graphical + representation of its associated component; for example as the + header in the Action Bar. The primary differences between an icon + and a logo are that logos are often wider and more detailed, and are + used without an accompanying text caption. This must be a reference + to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#logo}. + @attr name android:logo + */ + public static final int AndroidManifestIntentFilter_logo = 3; + /** +

+ @attr description + Specify the relative importance or ability in handling a particular + Intent. For receivers, this controls the order in which they are + executed to receive a broadcast (note that for + asynchronous broadcasts, this order is ignored). For activities, + this provides information about how good an activity is handling an + Intent; when multiple activities match an intent and have different + priorities, only those with the higher priority value will be + considered a match. + +

Only use if you really need to impose some specific + order in which the broadcasts are received, or want to forcibly + place an activity to always be preferred over others. The value is a + single integer, with higher numbers considered to be better. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#priority}. + @attr name android:priority + */ + public static final int AndroidManifestIntentFilter_priority = 2; + /** Attributes that can be used with a AndroidManifestKeySet. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #AndroidManifestKeySet_name android:name} A unique name for the given item.
+ @see #AndroidManifestKeySet_name + */ + public static final int[] AndroidManifestKeySet = { + 0x01010003 + }; + /** +

+ @attr description + A unique name for the given item. This must use a Java-style naming + convention to ensure the name is unique, for example + "com.mycompany.MyName". + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestKeySet_name = 0; + /** The library tag declares that this apk is providing itself + as a shared library for other applications to use. It can only be used + with apks that are built in to the system image. Other apks can link to + it with the {@link #AndroidManifestUsesLibrary uses-library} tag. + +

This appears as a child tag of the + {@link #AndroidManifestApplication application} tag. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #AndroidManifestLibrary_name android:name} Required public name of the library, which other components and + packages will use when referring to this library.
+ @see #AndroidManifestLibrary_name + */ + public static final int[] AndroidManifestLibrary = { + 0x01010003 + }; + /** +

+ @attr description + Required public name of the library, which other components and + packages will use when referring to this library. This is a string using + Java-style scoping to ensure it is unique. The name should typically + be the same as the apk's package name. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestLibrary_name = 0; + /** The meta-data tag is used to attach additional + arbitrary data to an application component. The data can later + be retrieved programmatically from the + {@link android.content.pm.ComponentInfo#metaData + ComponentInfo.metaData} field. There is no meaning given to this + data by the system. You may supply the data through either the + value or resource attribute; if both + are given, then resource will be used. + +

It is highly recommended that you avoid supplying related data as + multiple separate meta-data entries. Instead, if you have complex + data to associate with a component, then use the resource + attribute to assign an XML resource that the client can parse to + retrieve the complete data. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AndroidManifestMetaData_name android:name} A unique name for the given item.
{@link #AndroidManifestMetaData_resource android:resource} Resource identifier to assign to this piece of named meta-data.
{@link #AndroidManifestMetaData_value android:value} Concrete value to assign to this piece of named meta-data.
+ @see #AndroidManifestMetaData_name + @see #AndroidManifestMetaData_resource + @see #AndroidManifestMetaData_value + */ + public static final int[] AndroidManifestMetaData = { + 0x01010003, 0x01010024, 0x01010025 + }; + /** +

+ @attr description + A unique name for the given item. This must use a Java-style naming + convention to ensure the name is unique, for example + "com.mycompany.MyName". + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestMetaData_name = 0; + /** +

+ @attr description + Resource identifier to assign to this piece of named meta-data. + The resource identifier can later be retrieved from the meta data + Bundle through {@link android.os.Bundle#getInt Bundle.getInt}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#resource}. + @attr name android:resource + */ + public static final int AndroidManifestMetaData_resource = 2; + /** +

+ @attr description + Concrete value to assign to this piece of named meta-data. + The data can later be retrieved from the meta data Bundle + through {@link android.os.Bundle#getString Bundle.getString}, + {@link android.os.Bundle#getInt Bundle.getInt}, + {@link android.os.Bundle#getBoolean Bundle.getBoolean}, + or {@link android.os.Bundle#getFloat Bundle.getFloat} depending + on the type used here. + + +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a boolean value, either "true" or "false". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

May be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#value}. + @attr name android:value + */ + public static final int AndroidManifestMetaData_value = 1; + /** Private tag to declare the original package name that this package is + based on. Only used for packages installed in the system image. If + given, and different than the actual package name, and the given + original package was previously installed on the device but the new + one was not, then the data for the old one will be renamed to be + for the new package. + +

This appears as a child tag of the root + {@link #AndroidManifest manifest} tag. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #AndroidManifestOriginalPackage_name android:name} A unique name for the given item.
+ @see #AndroidManifestOriginalPackage_name + */ + public static final int[] AndroidManifestOriginalPackage = { + 0x01010003 + }; + /** +

+ @attr description + A unique name for the given item. This must use a Java-style naming + convention to ensure the name is unique, for example + "com.mycompany.MyName". + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestOriginalPackage_name = 0; + /** Attributes relating to a package verifier. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AndroidManifestPackageVerifier_name android:name} Specifies the Java-style package name that defines this + package verifier.
{@link #AndroidManifestPackageVerifier_publicKey android:publicKey} The Base64 encoded public key of the package verifier's + signature.
+ @see #AndroidManifestPackageVerifier_name + @see #AndroidManifestPackageVerifier_publicKey + */ + public static final int[] AndroidManifestPackageVerifier = { + 0x01010003, 0x010103a6 + }; + /** +

+ @attr description + Specifies the Java-style package name that defines this + package verifier. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestPackageVerifier_name = 0; + /** +

+ @attr description + The Base64 encoded public key of the package verifier's + signature. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#publicKey}. + @attr name android:publicKey + */ + public static final int AndroidManifestPackageVerifier_publicKey = 1; + /** Attributes that can be supplied in an AndroidManifest.xml + path-permission tag, a child of the + {@link #AndroidManifestProvider provider} tag, describing a permission + that allows access to a specific path in the provider. This tag can be + specified multiple time to supply multiple paths. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AndroidManifestPathPermission_path android:path} Specify a URI path that must exactly match, as per + {@link android.os.PatternMatcher} with + {@link android.os.PatternMatcher#PATTERN_LITERAL}.
{@link #AndroidManifestPathPermission_pathPattern android:pathPattern} Specify a URI path that matches a simple pattern, as per + {@link android.os.PatternMatcher} with + {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}.
{@link #AndroidManifestPathPermission_pathPrefix android:pathPrefix} Specify a URI path that must be a prefix to match, as per + {@link android.os.PatternMatcher} with + {@link android.os.PatternMatcher#PATTERN_PREFIX}.
{@link #AndroidManifestPathPermission_permission android:permission} Specify a permission that a client is required to have in order to + use the associated object.
{@link #AndroidManifestPathPermission_readPermission android:readPermission} A specific {@link android.R.attr#permission} name for read-only + access to a {@link android.content.ContentProvider}.
{@link #AndroidManifestPathPermission_writePermission android:writePermission} A specific {@link android.R.attr#permission} name for write + access to a {@link android.content.ContentProvider}.
+ @see #AndroidManifestPathPermission_path + @see #AndroidManifestPathPermission_pathPattern + @see #AndroidManifestPathPermission_pathPrefix + @see #AndroidManifestPathPermission_permission + @see #AndroidManifestPathPermission_readPermission + @see #AndroidManifestPathPermission_writePermission + */ + public static final int[] AndroidManifestPathPermission = { + 0x01010006, 0x01010007, 0x01010008, 0x0101002a, + 0x0101002b, 0x0101002c + }; + /** +

+ @attr description + Specify a URI path that must exactly match, as per + {@link android.os.PatternMatcher} with + {@link android.os.PatternMatcher#PATTERN_LITERAL}. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#path}. + @attr name android:path + */ + public static final int AndroidManifestPathPermission_path = 3; + /** +

+ @attr description + Specify a URI path that matches a simple pattern, as per + {@link android.os.PatternMatcher} with + {@link android.os.PatternMatcher#PATTERN_SIMPLE_GLOB}. + Note that because '\' is used as an escape character when + reading the string from XML (before it is parsed as a pattern), + you will need to double-escape: for example a literal "*" would + be written as "\\*" and a literal "\" would be written as + "\\\\". This is basically the same as what you would need to + write if constructing the string in Java code. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#pathPattern}. + @attr name android:pathPattern + */ + public static final int AndroidManifestPathPermission_pathPattern = 5; + /** +

+ @attr description + Specify a URI path that must be a prefix to match, as per + {@link android.os.PatternMatcher} with + {@link android.os.PatternMatcher#PATTERN_PREFIX}. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#pathPrefix}. + @attr name android:pathPrefix + */ + public static final int AndroidManifestPathPermission_pathPrefix = 4; + /** +

+ @attr description + Specify a permission that a client is required to have in order to + use the associated object. If the client does not hold the named + permission, its request will fail. See the + Security and Permissions + document for more information on permissions. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#permission}. + @attr name android:permission + */ + public static final int AndroidManifestPathPermission_permission = 0; + /** +

+ @attr description + A specific {@link android.R.attr#permission} name for read-only + access to a {@link android.content.ContentProvider}. See the + Security and Permissions + document for more information on permissions. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#readPermission}. + @attr name android:readPermission + */ + public static final int AndroidManifestPathPermission_readPermission = 1; + /** +

+ @attr description + A specific {@link android.R.attr#permission} name for write + access to a {@link android.content.ContentProvider}. See the + Security and Permissions + document for more information on permissions. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#writePermission}. + @attr name android:writePermission + */ + public static final int AndroidManifestPathPermission_writePermission = 2; + /** The permission tag declares a security permission that can be + used to control access from other packages to specific components or + features in your package (or other packages). See the + Security and Permissions + document for more information on permissions. + +

This appears as a child tag of the root + {@link #AndroidManifest manifest} tag. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #AndroidManifestPermission_banner android:banner} A Drawable resource providing an extended graphical banner for its + associated item.
{@link #AndroidManifestPermission_description android:description} Descriptive text for the associated data.
{@link #AndroidManifestPermission_icon android:icon} A Drawable resource providing a graphical representation of its + associated item.
{@link #AndroidManifestPermission_label android:label} A user-legible name for the given item.
{@link #AndroidManifestPermission_logo android:logo} A Drawable resource providing an extended graphical logo for its + associated item.
{@link #AndroidManifestPermission_name android:name} Required public name of the permission, which other components and + packages will use when referring to this permission.
{@link #AndroidManifestPermission_permissionFlags android:permissionFlags} Flags indicating more context for a permission.
{@link #AndroidManifestPermission_permissionGroup android:permissionGroup} Specified the name of a group that this permission is associated + with.
{@link #AndroidManifestPermission_protectionLevel android:protectionLevel} Characterizes the potential risk implied in a permission and + indicates the procedure the system should follow when determining + whether to grant the permission to an application requesting it.
+ @see #AndroidManifestPermission_banner + @see #AndroidManifestPermission_description + @see #AndroidManifestPermission_icon + @see #AndroidManifestPermission_label + @see #AndroidManifestPermission_logo + @see #AndroidManifestPermission_name + @see #AndroidManifestPermission_permissionFlags + @see #AndroidManifestPermission_permissionGroup + @see #AndroidManifestPermission_protectionLevel + */ + public static final int[] AndroidManifestPermission = { + 0x01010001, 0x01010002, 0x01010003, 0x01010009, + 0x0101000a, 0x01010020, 0x010102be, 0x010103c7, + 0x010103f2 + }; + /** +

+ @attr description + A Drawable resource providing an extended graphical banner for its + associated item. Use with the application tag (to supply a default + banner for all application activities), or with the activity, tag to + supply a banner for a specific activity. + +

The given banner will be used to display to the user a graphical + representation of an activity in the Leanback application launcher. + Since banners are displayed only in the Leanback launcher, they should + only be used with activities (and applications) that support Leanback + mode. These are activities that handle Intents of category + {@link android.content.Intent#CATEGORY_LEANBACK_LAUNCHER + Intent.CATEGORY_LEANBACK_LAUNCHER}. +

This must be a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#banner}. + @attr name android:banner + */ + public static final int AndroidManifestPermission_banner = 8; + /** +

+ @attr description + Descriptive text for the associated data. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#description}. + @attr name android:description + */ + public static final int AndroidManifestPermission_description = 5; + /** +

+ @attr description + A Drawable resource providing a graphical representation of its + associated item. Use with the + application tag (to supply a default icon for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific icon for that component). It may also be + used with the intent-filter tag to supply an icon to show to the + user when an activity is being selected based on a particular Intent. + +

The given icon will be used to display to the user a graphical + representation of its associated component; for example, as the icon + for main activity that is displayed in the launcher. This must be + a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int AndroidManifestPermission_icon = 1; + /** +

+ @attr description + A user-legible name for the given item. Use with the + application tag (to supply a default label for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific label for that component). It may also be + used with the intent-filter tag to supply a label to show to the + user when an activity is being selected based on a particular Intent. + +

The given label will be used wherever the user sees information + about its associated component; for example, as the name of a + main activity that is displayed in the launcher. You should + generally set this to a reference to a string resource, so that + it can be localized, however it is also allowed to supply a plain + string for quick and dirty programming. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#label}. + @attr name android:label + */ + public static final int AndroidManifestPermission_label = 0; + /** +

+ @attr description + A Drawable resource providing an extended graphical logo for its + associated item. Use with the application tag (to supply a default + logo for all application components), or with the activity, receiver, + service, or instrumentation tag (to supply a specific logo for that + component). It may also be used with the intent-filter tag to supply + a logo to show to the user when an activity is being selected based + on a particular Intent. + +

The given logo will be used to display to the user a graphical + representation of its associated component; for example as the + header in the Action Bar. The primary differences between an icon + and a logo are that logos are often wider and more detailed, and are + used without an accompanying text caption. This must be a reference + to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#logo}. + @attr name android:logo + */ + public static final int AndroidManifestPermission_logo = 6; + /** +

+ @attr description + Required public name of the permission, which other components and + packages will use when referring to this permission. This is a string using + Java-style scoping to ensure it is unique. The prefix will often + be the same as our overall package name, for example + "com.mycompany.android.myapp.SomePermission". + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestPermission_name = 2; + /** +

+ @attr description + Flags indicating more context for a permission. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
costsMoney0x0001 Set to indicate that this permission allows an operation that + may cost the user money. Such permissions may be highlighted + when shown to the user with this additional information.
hidden0x2 Additional flag from base permission type: this permission is hidden + and should not show in the UI.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#permissionFlags}. + @attr name android:permissionFlags + */ + public static final int AndroidManifestPermission_permissionFlags = 7; + /** +

+ @attr description + Specified the name of a group that this permission is associated + with. The group must have been defined with the + {@link android.R.styleable#AndroidManifestPermissionGroup permission-group} tag. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#permissionGroup}. + @attr name android:permissionGroup + */ + public static final int AndroidManifestPermission_permissionGroup = 4; + /** +

+ @attr description + Characterizes the potential risk implied in a permission and + indicates the procedure the system should follow when determining + whether to grant the permission to an application requesting it. {@link + android.Manifest.permission Standard permissions} have a predefined and + permanent protectionLevel. If you are creating a custom permission in an + application, you can define a protectionLevel attribute with one of the + values listed below. If no protectionLevel is defined for a custom + permission, the system assigns the default ("normal"). + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + +
ConstantValueDescription
normal0 A lower-risk permission that gives an application access to isolated + application-level features, with minimal risk to other applications, + the system, or the user. The system automatically grants this type + of permission to a requesting application at installation, without + asking for the user's explicit approval (though the user always + has the option to review these permissions before installing).
dangerous1 A higher-risk permission that would give a requesting application + access to private user data or control over the device that can + negatively impact the user. Because this type of permission + introduces potential risk, the system may not automatically + grant it to the requesting application. For example, any dangerous + permissions requested by an application may be displayed to the + user and require confirmation before proceeding, or some other + approach may be taken to avoid the user automatically allowing + the use of such facilities.
signature2 A permission that the system is to grant only if the requesting + application is signed with the same certificate as the application + that declared the permission. If the certificates match, the system + automatically grants the permission without notifying the user or + asking for the user's explicit approval.
signatureOrSystem3 A permission that the system is to grant only to packages in the + Android system image or that are signed with the same + certificates. Please avoid using this option, as the + signature protection level should be sufficient for most needs and + works regardless of exactly where applications are installed. This + permission is used for certain special situations where multiple + vendors have applications built in to a system image which need + to share specific features explicitly because they are being built + together.
privileged0x10 Additional flag from base permission type: this permission can also + be granted to any applications installed as privileged apps on the system image. + Please avoid using this option, as the + signature protection level should be sufficient for most needs and + works regardless of exactly where applications are installed. This + permission flag is used for certain special situations where multiple + vendors have applications built in to a system image which need + to share specific features explicitly because they are being built + together.
system0x10 Old synonym for "privileged".
development0x20 Additional flag from base permission type: this permission can also + (optionally) be granted to development applications.
appop0x40 Additional flag from base permission type: this permission is closely + associated with an app op for controlling access.
pre230x80 Additional flag from base permission type: this permission can be automatically + granted to apps that target API levels below + {@link android.os.Build.VERSION_CODES#M} (before runtime permissions + were introduced).
installer0x100 Additional flag from base permission type: this permission can be automatically + granted to system apps that install packages.
verifier0x200 Additional flag from base permission type: this permission can be automatically + granted to system apps that verify packages.
preinstalled0x400 Additional flag from base permission type: this permission can be automatically + granted any application pre-installed on the system image (not just privileged + apps).
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#protectionLevel}. + @attr name android:protectionLevel + */ + public static final int AndroidManifestPermission_protectionLevel = 3; + /** The permission-group tag declares a logical grouping of + related permissions. + +

Note that this tag does not declare a permission itself, only + a namespace in which further permissions can be placed. See + the {@link #AndroidManifestPermission <permission>} tag for + more information. + +

This appears as a child tag of the root + {@link #AndroidManifest manifest} tag. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #AndroidManifestPermissionGroup_banner android:banner} A Drawable resource providing an extended graphical banner for its + associated item.
{@link #AndroidManifestPermissionGroup_description android:description} Descriptive text for the associated data.
{@link #AndroidManifestPermissionGroup_icon android:icon} A Drawable resource providing a graphical representation of its + associated item.
{@link #AndroidManifestPermissionGroup_label android:label} A user-legible name for the given item.
{@link #AndroidManifestPermissionGroup_logo android:logo} A Drawable resource providing an extended graphical logo for its + associated item.
{@link #AndroidManifestPermissionGroup_name android:name} Required public name of the permission group, permissions will use + to specify the group they are in.
{@link #AndroidManifestPermissionGroup_permissionGroupFlags android:permissionGroupFlags} Flags indicating more context for a permission group.
{@link #AndroidManifestPermissionGroup_priority android:priority} Specify the relative importance or ability in handling a particular + Intent.
+ @see #AndroidManifestPermissionGroup_banner + @see #AndroidManifestPermissionGroup_description + @see #AndroidManifestPermissionGroup_icon + @see #AndroidManifestPermissionGroup_label + @see #AndroidManifestPermissionGroup_logo + @see #AndroidManifestPermissionGroup_name + @see #AndroidManifestPermissionGroup_permissionGroupFlags + @see #AndroidManifestPermissionGroup_priority + */ + public static final int[] AndroidManifestPermissionGroup = { + 0x01010001, 0x01010002, 0x01010003, 0x0101001c, + 0x01010020, 0x010102be, 0x010103c5, 0x010103f2 + }; + /** +

+ @attr description + A Drawable resource providing an extended graphical banner for its + associated item. Use with the application tag (to supply a default + banner for all application activities), or with the activity, tag to + supply a banner for a specific activity. + +

The given banner will be used to display to the user a graphical + representation of an activity in the Leanback application launcher. + Since banners are displayed only in the Leanback launcher, they should + only be used with activities (and applications) that support Leanback + mode. These are activities that handle Intents of category + {@link android.content.Intent#CATEGORY_LEANBACK_LAUNCHER + Intent.CATEGORY_LEANBACK_LAUNCHER}. +

This must be a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#banner}. + @attr name android:banner + */ + public static final int AndroidManifestPermissionGroup_banner = 7; + /** +

+ @attr description + Descriptive text for the associated data. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#description}. + @attr name android:description + */ + public static final int AndroidManifestPermissionGroup_description = 4; + /** +

+ @attr description + A Drawable resource providing a graphical representation of its + associated item. Use with the + application tag (to supply a default icon for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific icon for that component). It may also be + used with the intent-filter tag to supply an icon to show to the + user when an activity is being selected based on a particular Intent. + +

The given icon will be used to display to the user a graphical + representation of its associated component; for example, as the icon + for main activity that is displayed in the launcher. This must be + a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int AndroidManifestPermissionGroup_icon = 1; + /** +

+ @attr description + A user-legible name for the given item. Use with the + application tag (to supply a default label for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific label for that component). It may also be + used with the intent-filter tag to supply a label to show to the + user when an activity is being selected based on a particular Intent. + +

The given label will be used wherever the user sees information + about its associated component; for example, as the name of a + main activity that is displayed in the launcher. You should + generally set this to a reference to a string resource, so that + it can be localized, however it is also allowed to supply a plain + string for quick and dirty programming. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#label}. + @attr name android:label + */ + public static final int AndroidManifestPermissionGroup_label = 0; + /** +

+ @attr description + A Drawable resource providing an extended graphical logo for its + associated item. Use with the application tag (to supply a default + logo for all application components), or with the activity, receiver, + service, or instrumentation tag (to supply a specific logo for that + component). It may also be used with the intent-filter tag to supply + a logo to show to the user when an activity is being selected based + on a particular Intent. + +

The given logo will be used to display to the user a graphical + representation of its associated component; for example as the + header in the Action Bar. The primary differences between an icon + and a logo are that logos are often wider and more detailed, and are + used without an accompanying text caption. This must be a reference + to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#logo}. + @attr name android:logo + */ + public static final int AndroidManifestPermissionGroup_logo = 5; + /** +

+ @attr description + Required public name of the permission group, permissions will use + to specify the group they are in. This is a string using + Java-style scoping to ensure it is unique. The prefix will often + be the same as our overall package name, for example + "com.mycompany.android.myapp.SomePermission". + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestPermissionGroup_name = 2; + /** +

+ @attr description + Flags indicating more context for a permission group. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + +
ConstantValueDescription
personalInfo0x0001 Set to indicate that this permission group contains permissions + protecting access to some information that is considered + personal to the user (such as contacts, e-mails, etc).
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#permissionGroupFlags}. + @attr name android:permissionGroupFlags + */ + public static final int AndroidManifestPermissionGroup_permissionGroupFlags = 6; + /** +

+ @attr description + Specify the relative importance or ability in handling a particular + Intent. For receivers, this controls the order in which they are + executed to receive a broadcast (note that for + asynchronous broadcasts, this order is ignored). For activities, + this provides information about how good an activity is handling an + Intent; when multiple activities match an intent and have different + priorities, only those with the higher priority value will be + considered a match. + +

Only use if you really need to impose some specific + order in which the broadcasts are received, or want to forcibly + place an activity to always be preferred over others. The value is a + single integer, with higher numbers considered to be better. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#priority}. + @attr name android:priority + */ + public static final int AndroidManifestPermissionGroup_priority = 3; + /** The permission-tree tag declares the base of a tree of + permission values: it declares that this package has ownership of + the given permission name, as well as all names underneath it + (separated by '.'). This allows you to use the + {@link android.content.pm.PackageManager#addPermission + PackageManager.addPermission()} method to dynamically add new + permissions under this tree. + +

Note that this tag does not declare a permission itself, only + a namespace in which further permissions can be placed. See + the {@link #AndroidManifestPermission <permission>} tag for + more information. + +

This appears as a child tag of the root + {@link #AndroidManifest manifest} tag. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #AndroidManifestPermissionTree_banner android:banner} A Drawable resource providing an extended graphical banner for its + associated item.
{@link #AndroidManifestPermissionTree_icon android:icon} A Drawable resource providing a graphical representation of its + associated item.
{@link #AndroidManifestPermissionTree_label android:label} A user-legible name for the given item.
{@link #AndroidManifestPermissionTree_logo android:logo} A Drawable resource providing an extended graphical logo for its + associated item.
{@link #AndroidManifestPermissionTree_name android:name} Required public name of the permission tree, which is the base name + of all permissions under it.
+ @see #AndroidManifestPermissionTree_banner + @see #AndroidManifestPermissionTree_icon + @see #AndroidManifestPermissionTree_label + @see #AndroidManifestPermissionTree_logo + @see #AndroidManifestPermissionTree_name + */ + public static final int[] AndroidManifestPermissionTree = { + 0x01010001, 0x01010002, 0x01010003, 0x010102be, + 0x010103f2 + }; + /** +

+ @attr description + A Drawable resource providing an extended graphical banner for its + associated item. Use with the application tag (to supply a default + banner for all application activities), or with the activity, tag to + supply a banner for a specific activity. + +

The given banner will be used to display to the user a graphical + representation of an activity in the Leanback application launcher. + Since banners are displayed only in the Leanback launcher, they should + only be used with activities (and applications) that support Leanback + mode. These are activities that handle Intents of category + {@link android.content.Intent#CATEGORY_LEANBACK_LAUNCHER + Intent.CATEGORY_LEANBACK_LAUNCHER}. +

This must be a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#banner}. + @attr name android:banner + */ + public static final int AndroidManifestPermissionTree_banner = 4; + /** +

+ @attr description + A Drawable resource providing a graphical representation of its + associated item. Use with the + application tag (to supply a default icon for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific icon for that component). It may also be + used with the intent-filter tag to supply an icon to show to the + user when an activity is being selected based on a particular Intent. + +

The given icon will be used to display to the user a graphical + representation of its associated component; for example, as the icon + for main activity that is displayed in the launcher. This must be + a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int AndroidManifestPermissionTree_icon = 1; + /** +

+ @attr description + A user-legible name for the given item. Use with the + application tag (to supply a default label for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific label for that component). It may also be + used with the intent-filter tag to supply a label to show to the + user when an activity is being selected based on a particular Intent. + +

The given label will be used wherever the user sees information + about its associated component; for example, as the name of a + main activity that is displayed in the launcher. You should + generally set this to a reference to a string resource, so that + it can be localized, however it is also allowed to supply a plain + string for quick and dirty programming. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#label}. + @attr name android:label + */ + public static final int AndroidManifestPermissionTree_label = 0; + /** +

+ @attr description + A Drawable resource providing an extended graphical logo for its + associated item. Use with the application tag (to supply a default + logo for all application components), or with the activity, receiver, + service, or instrumentation tag (to supply a specific logo for that + component). It may also be used with the intent-filter tag to supply + a logo to show to the user when an activity is being selected based + on a particular Intent. + +

The given logo will be used to display to the user a graphical + representation of its associated component; for example as the + header in the Action Bar. The primary differences between an icon + and a logo are that logos are often wider and more detailed, and are + used without an accompanying text caption. This must be a reference + to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#logo}. + @attr name android:logo + */ + public static final int AndroidManifestPermissionTree_logo = 3; + /** +

+ @attr description + Required public name of the permission tree, which is the base name + of all permissions under it. This is a string using + Java-style scoping to ensure it is unique. The prefix will often + be the same as our overall package name, for example + "com.mycompany.android.myapp.SomePermission". A permission tree name + must have more than two segments in its path; that is, + "com.me.foo" is okay, but not "com.me" or "com". + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestPermissionTree_name = 2; + /** Private tag to declare system protected broadcast actions. + +

This appears as a child tag of the root + {@link #AndroidManifest manifest} tag. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #AndroidManifestProtectedBroadcast_name android:name} A unique name for the given item.
+ @see #AndroidManifestProtectedBroadcast_name + */ + public static final int[] AndroidManifestProtectedBroadcast = { + 0x01010003 + }; + /** +

+ @attr description + A unique name for the given item. This must use a Java-style naming + convention to ensure the name is unique, for example + "com.mycompany.MyName". + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestProtectedBroadcast_name = 0; + /** The provider tag declares a + {@link android.content.ContentProvider} class that is available + as part of the package's application components, supplying structured + access to data managed by the application. + +

This appears as a child tag of the + {@link #AndroidManifestApplication application} tag. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AndroidManifestProvider_authorities android:authorities} Specify the authorities under which this content provider can be + found.
{@link #AndroidManifestProvider_banner android:banner} A Drawable resource providing an extended graphical banner for its + associated item.
{@link #AndroidManifestProvider_description android:description} Descriptive text for the associated data.
{@link #AndroidManifestProvider_enabled android:enabled} Specify whether this provider is enabled or not (that is, can be instantiated by the system).
{@link #AndroidManifestProvider_exported android:exported} Flag indicating whether the given application component is available + to other applications.
{@link #AndroidManifestProvider_grantUriPermissions android:grantUriPermissions} If true, the {@link android.content.Context#grantUriPermission + Context.grantUriPermission} or corresponding Intent flags can + be used to allow others to access specific URIs in the content + provider, even if they do not have an explicit read or write + permission.
{@link #AndroidManifestProvider_icon android:icon} A Drawable resource providing a graphical representation of its + associated item.
{@link #AndroidManifestProvider_initOrder android:initOrder} Specify the order in which content providers hosted by a process + are instantiated when that process is created.
{@link #AndroidManifestProvider_label android:label} A user-legible name for the given item.
{@link #AndroidManifestProvider_logo android:logo} A Drawable resource providing an extended graphical logo for its + associated item.
{@link #AndroidManifestProvider_multiprocess android:multiprocess} Specify whether a component is allowed to have multiple instances + of itself running in different processes.
{@link #AndroidManifestProvider_name android:name} Required name of the class implementing the provider, deriving from + {@link android.content.ContentProvider}.
{@link #AndroidManifestProvider_permission android:permission} Specify a permission that a client is required to have in order to + use the associated object.
{@link #AndroidManifestProvider_process android:process} Specify a specific process that the associated code is to run in.
{@link #AndroidManifestProvider_readPermission android:readPermission} A specific {@link android.R.attr#permission} name for read-only + access to a {@link android.content.ContentProvider}.
{@link #AndroidManifestProvider_singleUser android:singleUser} If set to true, a single instance of this component will run for + all users.
{@link #AndroidManifestProvider_syncable android:syncable} Flag indicating whether this content provider would like to + participate in data synchronization.
{@link #AndroidManifestProvider_writePermission android:writePermission} A specific {@link android.R.attr#permission} name for write + access to a {@link android.content.ContentProvider}.
+ @see #AndroidManifestProvider_authorities + @see #AndroidManifestProvider_banner + @see #AndroidManifestProvider_description + @see #AndroidManifestProvider_enabled + @see #AndroidManifestProvider_exported + @see #AndroidManifestProvider_grantUriPermissions + @see #AndroidManifestProvider_icon + @see #AndroidManifestProvider_initOrder + @see #AndroidManifestProvider_label + @see #AndroidManifestProvider_logo + @see #AndroidManifestProvider_multiprocess + @see #AndroidManifestProvider_name + @see #AndroidManifestProvider_permission + @see #AndroidManifestProvider_process + @see #AndroidManifestProvider_readPermission + @see #AndroidManifestProvider_singleUser + @see #AndroidManifestProvider_syncable + @see #AndroidManifestProvider_writePermission + */ + public static final int[] AndroidManifestProvider = { + 0x01010001, 0x01010002, 0x01010003, 0x01010006, + 0x01010007, 0x01010008, 0x0101000e, 0x01010010, + 0x01010011, 0x01010013, 0x01010018, 0x01010019, + 0x0101001a, 0x0101001b, 0x01010020, 0x010102be, + 0x010103bf, 0x010103f2 + }; + /** +

+ @attr description + Specify the authorities under which this content provider can be + found. Multiple authorities may be supplied by separating them + with a semicolon. Authority names should use a Java-style naming + convention (such as com.google.provider.MyProvider) + in order to avoid conflicts. Typically this name is the same + as the class implementation describing the provider's data structure. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#authorities}. + @attr name android:authorities + */ + public static final int AndroidManifestProvider_authorities = 10; + /** +

+ @attr description + A Drawable resource providing an extended graphical banner for its + associated item. Use with the application tag (to supply a default + banner for all application activities), or with the activity, tag to + supply a banner for a specific activity. + +

The given banner will be used to display to the user a graphical + representation of an activity in the Leanback application launcher. + Since banners are displayed only in the Leanback launcher, they should + only be used with activities (and applications) that support Leanback + mode. These are activities that handle Intents of category + {@link android.content.Intent#CATEGORY_LEANBACK_LAUNCHER + Intent.CATEGORY_LEANBACK_LAUNCHER}. +

This must be a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#banner}. + @attr name android:banner + */ + public static final int AndroidManifestProvider_banner = 17; + /** +

+ @attr description + Descriptive text for the associated data. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#description}. + @attr name android:description + */ + public static final int AndroidManifestProvider_description = 14; + /** +

+ @attr description + Specify whether this provider is enabled or not (that is, can be instantiated by the system). + It can also be specified for an application as a whole, in which case a value of "false" + will override any component specific values (a value of "true" will not override the + component specific values). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#enabled}. + @attr name android:enabled + */ + public static final int AndroidManifestProvider_enabled = 6; + /** +

+ @attr description + Flag indicating whether the given application component is available + to other applications. If false, it can only be accessed by + applications with its same user id (which usually means only by + code in its own package). If true, it can be invoked by external + entities, though which ones can do so may be controlled through + permissions. The default value is false for activity, receiver, + and service components that do not specify any intent filters; it + is true for activity, receiver, and service components that do + have intent filters (implying they expect to be invoked by others + who do not know their particular component name) and for all + content providers. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#exported}. + @attr name android:exported + */ + public static final int AndroidManifestProvider_exported = 7; + /** +

+ @attr description + If true, the {@link android.content.Context#grantUriPermission + Context.grantUriPermission} or corresponding Intent flags can + be used to allow others to access specific URIs in the content + provider, even if they do not have an explicit read or write + permission. If you are supporting this feature, you must be + sure to call {@link android.content.Context#revokeUriPermission + Context.revokeUriPermission} when URIs are deleted from your + provider. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#grantUriPermissions}. + @attr name android:grantUriPermissions + */ + public static final int AndroidManifestProvider_grantUriPermissions = 13; + /** +

+ @attr description + A Drawable resource providing a graphical representation of its + associated item. Use with the + application tag (to supply a default icon for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific icon for that component). It may also be + used with the intent-filter tag to supply an icon to show to the + user when an activity is being selected based on a particular Intent. + +

The given icon will be used to display to the user a graphical + representation of its associated component; for example, as the icon + for main activity that is displayed in the launcher. This must be + a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int AndroidManifestProvider_icon = 1; + /** +

+ @attr description + Specify the order in which content providers hosted by a process + are instantiated when that process is created. Not needed unless + you have providers with dependencies between each other, to make + sure that they are created in the order needed by those dependencies. + The value is a simple integer, with higher numbers being + initialized first. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#initOrder}. + @attr name android:initOrder + */ + public static final int AndroidManifestProvider_initOrder = 12; + /** +

+ @attr description + A user-legible name for the given item. Use with the + application tag (to supply a default label for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific label for that component). It may also be + used with the intent-filter tag to supply a label to show to the + user when an activity is being selected based on a particular Intent. + +

The given label will be used wherever the user sees information + about its associated component; for example, as the name of a + main activity that is displayed in the launcher. You should + generally set this to a reference to a string resource, so that + it can be localized, however it is also allowed to supply a plain + string for quick and dirty programming. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#label}. + @attr name android:label + */ + public static final int AndroidManifestProvider_label = 0; + /** +

+ @attr description + A Drawable resource providing an extended graphical logo for its + associated item. Use with the application tag (to supply a default + logo for all application components), or with the activity, receiver, + service, or instrumentation tag (to supply a specific logo for that + component). It may also be used with the intent-filter tag to supply + a logo to show to the user when an activity is being selected based + on a particular Intent. + +

The given logo will be used to display to the user a graphical + representation of its associated component; for example as the + header in the Action Bar. The primary differences between an icon + and a logo are that logos are often wider and more detailed, and are + used without an accompanying text caption. This must be a reference + to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#logo}. + @attr name android:logo + */ + public static final int AndroidManifestProvider_logo = 15; + /** +

+ @attr description + Specify whether a component is allowed to have multiple instances + of itself running in different processes. Use with the activity + and provider tags. + +

Normally the system will ensure that all instances of a particular + component are only running in a single process. You can use this + attribute to disable that behavior, allowing the system to create + instances wherever they are used (provided permissions allow it). + This is most often used with content providers, so that instances + of a provider can be created in each client process, allowing them + to be used without performing IPC. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#multiprocess}. + @attr name android:multiprocess + */ + public static final int AndroidManifestProvider_multiprocess = 9; + /** +

+ @attr description + Required name of the class implementing the provider, deriving from + {@link android.content.ContentProvider}. This is a fully + qualified class name (for example, com.mycompany.myapp.MyProvider); as a + short-hand if the first character of the class + is a period then it is appended to your package name. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestProvider_name = 2; + /** +

+ @attr description + Specify a permission that a client is required to have in order to + use the associated object. If the client does not hold the named + permission, its request will fail. See the + Security and Permissions + document for more information on permissions. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#permission}. + @attr name android:permission + */ + public static final int AndroidManifestProvider_permission = 3; + /** +

+ @attr description + Specify a specific process that the associated code is to run in. + Use with the application tag (to supply a default process for all + application components), or with the activity, receiver, service, + or provider tag (to supply a specific icon for that component). + +

Application components are normally run in a single process that + is created for the entire application. You can use this tag to modify + where they run. If the process name begins with a ':' character, + a new process private to that application will be created when needed + to run that component (allowing you to spread your application across + multiple processes). If the process name begins with a lower-case + character, the component will be run in a global process of that name, + provided that you have permission to do so, allowing multiple + applications to share one process to reduce resource usage. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#process}. + @attr name android:process + */ + public static final int AndroidManifestProvider_process = 8; + /** +

+ @attr description + A specific {@link android.R.attr#permission} name for read-only + access to a {@link android.content.ContentProvider}. See the + Security and Permissions + document for more information on permissions. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#readPermission}. + @attr name android:readPermission + */ + public static final int AndroidManifestProvider_readPermission = 4; + /** +

+ @attr description + If set to true, a single instance of this component will run for + all users. That instance will run as user 0, the default/primary + user. When the app running is in processes for other users and interacts + with this component (by binding to a service for example) those processes will + always interact with the instance running for user 0. Enabling + single user mode forces "exported" of the component to be false, to + help avoid introducing multi-user security bugs. This feature is only + available to applications built in to the system image; you must hold the + permission INTERACT_ACROSS_USERS in order + to use this feature. This flag can only be used with services, + receivers, and providers; it can not be used with activities. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#singleUser}. + @attr name android:singleUser + */ + public static final int AndroidManifestProvider_singleUser = 16; + /** +

+ @attr description + Flag indicating whether this content provider would like to + participate in data synchronization. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#syncable}. + @attr name android:syncable + */ + public static final int AndroidManifestProvider_syncable = 11; + /** +

+ @attr description + A specific {@link android.R.attr#permission} name for write + access to a {@link android.content.ContentProvider}. See the + Security and Permissions + document for more information on permissions. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#writePermission}. + @attr name android:writePermission + */ + public static final int AndroidManifestProvider_writePermission = 5; + /** Attributes that can be used with a AndroidManifestPublicKey. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AndroidManifestPublicKey_name android:name} A unique name for the given item.
{@link #AndroidManifestPublicKey_value android:value} Concrete value to assign to this piece of named meta-data.
+ @see #AndroidManifestPublicKey_name + @see #AndroidManifestPublicKey_value + */ + public static final int[] AndroidManifestPublicKey = { + 0x01010003, 0x01010024 + }; + /** +

+ @attr description + A unique name for the given item. This must use a Java-style naming + convention to ensure the name is unique, for example + "com.mycompany.MyName". + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestPublicKey_name = 0; + /** +

+ @attr description + Concrete value to assign to this piece of named meta-data. + The data can later be retrieved from the meta data Bundle + through {@link android.os.Bundle#getString Bundle.getString}, + {@link android.os.Bundle#getInt Bundle.getInt}, + {@link android.os.Bundle#getBoolean Bundle.getBoolean}, + or {@link android.os.Bundle#getFloat Bundle.getFloat} depending + on the type used here. + + +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a boolean value, either "true" or "false". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

May be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#value}. + @attr name android:value + */ + public static final int AndroidManifestPublicKey_value = 1; + /** The receiver tag declares an + {@link android.content.BroadcastReceiver} class that is available + as part of the package's application components, allowing the + application to receive actions or data broadcast by other + applications even if it is not currently running. + +

Zero or more {@link #AndroidManifestIntentFilter intent-filter} + tags can be included inside of a receiver, to specify the Intents + it will receive. If none are specified, the receiver will only + be run when an Intent is broadcast that is directed at its specific + class name. The receiver tag appears as a child tag of the + {@link #AndroidManifestApplication application} tag. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #AndroidManifestReceiver_banner android:banner} A Drawable resource providing an extended graphical banner for its + associated item.
{@link #AndroidManifestReceiver_description android:description} Descriptive text for the associated data.
{@link #AndroidManifestReceiver_enabled android:enabled} Specify whether the receiver is enabled or not (that is, can be instantiated by the system).
{@link #AndroidManifestReceiver_exported android:exported} Flag indicating whether the given application component is available + to other applications.
{@link #AndroidManifestReceiver_icon android:icon} A Drawable resource providing a graphical representation of its + associated item.
{@link #AndroidManifestReceiver_label android:label} A user-legible name for the given item.
{@link #AndroidManifestReceiver_logo android:logo} A Drawable resource providing an extended graphical logo for its + associated item.
{@link #AndroidManifestReceiver_name android:name} Required name of the class implementing the receiver, deriving from + {@link android.content.BroadcastReceiver}.
{@link #AndroidManifestReceiver_permission android:permission} Specify a permission that a client is required to have in order to + use the associated object.
{@link #AndroidManifestReceiver_process android:process} Specify a specific process that the associated code is to run in.
{@link #AndroidManifestReceiver_singleUser android:singleUser} If set to true, a single instance of this component will run for + all users.
+ @see #AndroidManifestReceiver_banner + @see #AndroidManifestReceiver_description + @see #AndroidManifestReceiver_enabled + @see #AndroidManifestReceiver_exported + @see #AndroidManifestReceiver_icon + @see #AndroidManifestReceiver_label + @see #AndroidManifestReceiver_logo + @see #AndroidManifestReceiver_name + @see #AndroidManifestReceiver_permission + @see #AndroidManifestReceiver_process + @see #AndroidManifestReceiver_singleUser + */ + public static final int[] AndroidManifestReceiver = { + 0x01010001, 0x01010002, 0x01010003, 0x01010006, + 0x0101000e, 0x01010010, 0x01010011, 0x01010020, + 0x010102be, 0x010103bf, 0x010103f2 + }; + /** +

+ @attr description + A Drawable resource providing an extended graphical banner for its + associated item. Use with the application tag (to supply a default + banner for all application activities), or with the activity, tag to + supply a banner for a specific activity. + +

The given banner will be used to display to the user a graphical + representation of an activity in the Leanback application launcher. + Since banners are displayed only in the Leanback launcher, they should + only be used with activities (and applications) that support Leanback + mode. These are activities that handle Intents of category + {@link android.content.Intent#CATEGORY_LEANBACK_LAUNCHER + Intent.CATEGORY_LEANBACK_LAUNCHER}. +

This must be a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#banner}. + @attr name android:banner + */ + public static final int AndroidManifestReceiver_banner = 10; + /** +

+ @attr description + Descriptive text for the associated data. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#description}. + @attr name android:description + */ + public static final int AndroidManifestReceiver_description = 7; + /** +

+ @attr description + Specify whether the receiver is enabled or not (that is, can be instantiated by the system). + It can also be specified for an application as a whole, in which case a value of "false" + will override any component specific values (a value of "true" will not override the + component specific values). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#enabled}. + @attr name android:enabled + */ + public static final int AndroidManifestReceiver_enabled = 4; + /** +

+ @attr description + Flag indicating whether the given application component is available + to other applications. If false, it can only be accessed by + applications with its same user id (which usually means only by + code in its own package). If true, it can be invoked by external + entities, though which ones can do so may be controlled through + permissions. The default value is false for activity, receiver, + and service components that do not specify any intent filters; it + is true for activity, receiver, and service components that do + have intent filters (implying they expect to be invoked by others + who do not know their particular component name) and for all + content providers. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#exported}. + @attr name android:exported + */ + public static final int AndroidManifestReceiver_exported = 5; + /** +

+ @attr description + A Drawable resource providing a graphical representation of its + associated item. Use with the + application tag (to supply a default icon for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific icon for that component). It may also be + used with the intent-filter tag to supply an icon to show to the + user when an activity is being selected based on a particular Intent. + +

The given icon will be used to display to the user a graphical + representation of its associated component; for example, as the icon + for main activity that is displayed in the launcher. This must be + a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int AndroidManifestReceiver_icon = 1; + /** +

+ @attr description + A user-legible name for the given item. Use with the + application tag (to supply a default label for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific label for that component). It may also be + used with the intent-filter tag to supply a label to show to the + user when an activity is being selected based on a particular Intent. + +

The given label will be used wherever the user sees information + about its associated component; for example, as the name of a + main activity that is displayed in the launcher. You should + generally set this to a reference to a string resource, so that + it can be localized, however it is also allowed to supply a plain + string for quick and dirty programming. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#label}. + @attr name android:label + */ + public static final int AndroidManifestReceiver_label = 0; + /** +

+ @attr description + A Drawable resource providing an extended graphical logo for its + associated item. Use with the application tag (to supply a default + logo for all application components), or with the activity, receiver, + service, or instrumentation tag (to supply a specific logo for that + component). It may also be used with the intent-filter tag to supply + a logo to show to the user when an activity is being selected based + on a particular Intent. + +

The given logo will be used to display to the user a graphical + representation of its associated component; for example as the + header in the Action Bar. The primary differences between an icon + and a logo are that logos are often wider and more detailed, and are + used without an accompanying text caption. This must be a reference + to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#logo}. + @attr name android:logo + */ + public static final int AndroidManifestReceiver_logo = 8; + /** +

+ @attr description + Required name of the class implementing the receiver, deriving from + {@link android.content.BroadcastReceiver}. This is a fully + qualified class name (for example, com.mycompany.myapp.MyReceiver); as a + short-hand if the first character of the class + is a period then it is appended to your package name. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestReceiver_name = 2; + /** +

+ @attr description + Specify a permission that a client is required to have in order to + use the associated object. If the client does not hold the named + permission, its request will fail. See the + Security and Permissions + document for more information on permissions. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#permission}. + @attr name android:permission + */ + public static final int AndroidManifestReceiver_permission = 3; + /** +

+ @attr description + Specify a specific process that the associated code is to run in. + Use with the application tag (to supply a default process for all + application components), or with the activity, receiver, service, + or provider tag (to supply a specific icon for that component). + +

Application components are normally run in a single process that + is created for the entire application. You can use this tag to modify + where they run. If the process name begins with a ':' character, + a new process private to that application will be created when needed + to run that component (allowing you to spread your application across + multiple processes). If the process name begins with a lower-case + character, the component will be run in a global process of that name, + provided that you have permission to do so, allowing multiple + applications to share one process to reduce resource usage. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#process}. + @attr name android:process + */ + public static final int AndroidManifestReceiver_process = 6; + /** +

+ @attr description + If set to true, a single instance of this component will run for + all users. That instance will run as user 0, the default/primary + user. When the app running is in processes for other users and interacts + with this component (by binding to a service for example) those processes will + always interact with the instance running for user 0. Enabling + single user mode forces "exported" of the component to be false, to + help avoid introducing multi-user security bugs. This feature is only + available to applications built in to the system image; you must hold the + permission INTERACT_ACROSS_USERS in order + to use this feature. This flag can only be used with services, + receivers, and providers; it can not be used with activities. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#singleUser}. + @attr name android:singleUser + */ + public static final int AndroidManifestReceiver_singleUser = 9; + /** Attributes relating to resource overlay packages. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AndroidManifestResourceOverlay_priority android:priority} Load order of overlay package.
{@link #AndroidManifestResourceOverlay_targetPackage android:targetPackage} Package name of base package whose resources will be overlaid.
+ @see #AndroidManifestResourceOverlay_priority + @see #AndroidManifestResourceOverlay_targetPackage + */ + public static final int[] AndroidManifestResourceOverlay = { + 0x0101001c, 0x01010021 + }; + /** +

+ @attr description + Load order of overlay package. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#priority}. + @attr name android:priority + */ + public static final int AndroidManifestResourceOverlay_priority = 0; + /** +

+ @attr description + Package name of base package whose resources will be overlaid. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#targetPackage}. + @attr name android:targetPackage + */ + public static final int AndroidManifestResourceOverlay_targetPackage = 1; + /** The service tag declares a + {@link android.app.Service} class that is available + as part of the package's application components, implementing + long-running background operations or a rich communication API + that can be called by other packages. + +

Zero or more {@link #AndroidManifestIntentFilter intent-filter} + tags can be included inside of a service, to specify the Intents + that can connect with it. If none are specified, the service can + only be accessed by direct specification of its class name. + The service tag appears as a child tag of the + {@link #AndroidManifestApplication application} tag. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AndroidManifestService_banner android:banner} A Drawable resource providing an extended graphical banner for its + associated item.
{@link #AndroidManifestService_description android:description} Descriptive text for the associated data.
{@link #AndroidManifestService_enabled android:enabled} Specify whether the service is enabled or not (that is, can be instantiated by the system).
{@link #AndroidManifestService_exported android:exported} Flag indicating whether the given application component is available + to other applications.
{@link #AndroidManifestService_icon android:icon} A Drawable resource providing a graphical representation of its + associated item.
{@link #AndroidManifestService_isolatedProcess android:isolatedProcess} If set to true, this service will run under a special process + that is isolated from the rest of the system.
{@link #AndroidManifestService_label android:label} A user-legible name for the given item.
{@link #AndroidManifestService_logo android:logo} A Drawable resource providing an extended graphical logo for its + associated item.
{@link #AndroidManifestService_name android:name} Required name of the class implementing the service, deriving from + {@link android.app.Service}.
{@link #AndroidManifestService_permission android:permission} Specify a permission that a client is required to have in order to + use the associated object.
{@link #AndroidManifestService_process android:process} Specify a specific process that the associated code is to run in.
{@link #AndroidManifestService_singleUser android:singleUser} If set to true, a single instance of this component will run for + all users.
{@link #AndroidManifestService_stopWithTask android:stopWithTask} If set to true, this service with be automatically stopped + when the user remove a task rooted in an activity owned by + the application.
+ @see #AndroidManifestService_banner + @see #AndroidManifestService_description + @see #AndroidManifestService_enabled + @see #AndroidManifestService_exported + @see #AndroidManifestService_icon + @see #AndroidManifestService_isolatedProcess + @see #AndroidManifestService_label + @see #AndroidManifestService_logo + @see #AndroidManifestService_name + @see #AndroidManifestService_permission + @see #AndroidManifestService_process + @see #AndroidManifestService_singleUser + @see #AndroidManifestService_stopWithTask + */ + public static final int[] AndroidManifestService = { + 0x01010001, 0x01010002, 0x01010003, 0x01010006, + 0x0101000e, 0x01010010, 0x01010011, 0x01010020, + 0x010102be, 0x0101036a, 0x010103a9, 0x010103bf, + 0x010103f2 + }; + /** +

+ @attr description + A Drawable resource providing an extended graphical banner for its + associated item. Use with the application tag (to supply a default + banner for all application activities), or with the activity, tag to + supply a banner for a specific activity. + +

The given banner will be used to display to the user a graphical + representation of an activity in the Leanback application launcher. + Since banners are displayed only in the Leanback launcher, they should + only be used with activities (and applications) that support Leanback + mode. These are activities that handle Intents of category + {@link android.content.Intent#CATEGORY_LEANBACK_LAUNCHER + Intent.CATEGORY_LEANBACK_LAUNCHER}. +

This must be a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#banner}. + @attr name android:banner + */ + public static final int AndroidManifestService_banner = 12; + /** +

+ @attr description + Descriptive text for the associated data. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#description}. + @attr name android:description + */ + public static final int AndroidManifestService_description = 7; + /** +

+ @attr description + Specify whether the service is enabled or not (that is, can be instantiated by the system). + It can also be specified for an application as a whole, in which case a value of "false" + will override any component specific values (a value of "true" will not override the + component specific values). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#enabled}. + @attr name android:enabled + */ + public static final int AndroidManifestService_enabled = 4; + /** +

+ @attr description + Flag indicating whether the given application component is available + to other applications. If false, it can only be accessed by + applications with its same user id (which usually means only by + code in its own package). If true, it can be invoked by external + entities, though which ones can do so may be controlled through + permissions. The default value is false for activity, receiver, + and service components that do not specify any intent filters; it + is true for activity, receiver, and service components that do + have intent filters (implying they expect to be invoked by others + who do not know their particular component name) and for all + content providers. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#exported}. + @attr name android:exported + */ + public static final int AndroidManifestService_exported = 5; + /** +

+ @attr description + A Drawable resource providing a graphical representation of its + associated item. Use with the + application tag (to supply a default icon for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific icon for that component). It may also be + used with the intent-filter tag to supply an icon to show to the + user when an activity is being selected based on a particular Intent. + +

The given icon will be used to display to the user a graphical + representation of its associated component; for example, as the icon + for main activity that is displayed in the launcher. This must be + a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int AndroidManifestService_icon = 1; + /** +

+ @attr description + If set to true, this service will run under a special process + that is isolated from the rest of the system. The only communication + with it is through the Service API (binding and starting). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#isolatedProcess}. + @attr name android:isolatedProcess + */ + public static final int AndroidManifestService_isolatedProcess = 10; + /** +

+ @attr description + A user-legible name for the given item. Use with the + application tag (to supply a default label for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific label for that component). It may also be + used with the intent-filter tag to supply a label to show to the + user when an activity is being selected based on a particular Intent. + +

The given label will be used wherever the user sees information + about its associated component; for example, as the name of a + main activity that is displayed in the launcher. You should + generally set this to a reference to a string resource, so that + it can be localized, however it is also allowed to supply a plain + string for quick and dirty programming. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#label}. + @attr name android:label + */ + public static final int AndroidManifestService_label = 0; + /** +

+ @attr description + A Drawable resource providing an extended graphical logo for its + associated item. Use with the application tag (to supply a default + logo for all application components), or with the activity, receiver, + service, or instrumentation tag (to supply a specific logo for that + component). It may also be used with the intent-filter tag to supply + a logo to show to the user when an activity is being selected based + on a particular Intent. + +

The given logo will be used to display to the user a graphical + representation of its associated component; for example as the + header in the Action Bar. The primary differences between an icon + and a logo are that logos are often wider and more detailed, and are + used without an accompanying text caption. This must be a reference + to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#logo}. + @attr name android:logo + */ + public static final int AndroidManifestService_logo = 8; + /** +

+ @attr description + Required name of the class implementing the service, deriving from + {@link android.app.Service}. This is a fully + qualified class name (for example, com.mycompany.myapp.MyService); as a + short-hand if the first character of the class + is a period then it is appended to your package name. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestService_name = 2; + /** +

+ @attr description + Specify a permission that a client is required to have in order to + use the associated object. If the client does not hold the named + permission, its request will fail. See the + Security and Permissions + document for more information on permissions. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#permission}. + @attr name android:permission + */ + public static final int AndroidManifestService_permission = 3; + /** +

+ @attr description + Specify a specific process that the associated code is to run in. + Use with the application tag (to supply a default process for all + application components), or with the activity, receiver, service, + or provider tag (to supply a specific icon for that component). + +

Application components are normally run in a single process that + is created for the entire application. You can use this tag to modify + where they run. If the process name begins with a ':' character, + a new process private to that application will be created when needed + to run that component (allowing you to spread your application across + multiple processes). If the process name begins with a lower-case + character, the component will be run in a global process of that name, + provided that you have permission to do so, allowing multiple + applications to share one process to reduce resource usage. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#process}. + @attr name android:process + */ + public static final int AndroidManifestService_process = 6; + /** +

+ @attr description + If set to true, a single instance of this component will run for + all users. That instance will run as user 0, the default/primary + user. When the app running is in processes for other users and interacts + with this component (by binding to a service for example) those processes will + always interact with the instance running for user 0. Enabling + single user mode forces "exported" of the component to be false, to + help avoid introducing multi-user security bugs. This feature is only + available to applications built in to the system image; you must hold the + permission INTERACT_ACROSS_USERS in order + to use this feature. This flag can only be used with services, + receivers, and providers; it can not be used with activities. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#singleUser}. + @attr name android:singleUser + */ + public static final int AndroidManifestService_singleUser = 11; + /** +

+ @attr description + If set to true, this service with be automatically stopped + when the user remove a task rooted in an activity owned by + the application. The default is false. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#stopWithTask}. + @attr name android:stopWithTask + */ + public static final int AndroidManifestService_stopWithTask = 9; + /** The input-type tag is a child of the supports-input tag, which + is itself a child of the root {@link #AndroidManifest manifest} tag. Each + input-type tag specifices the name of a specific input device type. When + grouped with the other elements of the parent supports-input tag it defines + a collection of input devices, which when all used together, are considered a supported + input mechanism for the application. There may be multiple supports-input + tags defined, each containing a different combination of input device types. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #AndroidManifestSupportsInputInputType_name android:name} Specifices the name of the input device type
+ @see #AndroidManifestSupportsInputInputType_name + */ + public static final int[] AndroidManifestSupportsInputInputType = { + 0x01010003 + }; + /** +

+ @attr description + Specifices the name of the input device type + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestSupportsInputInputType_name = 0; + /** The supports-screens specifies the screen dimensions an + application supports. By default a modern application supports all + screen sizes and must explicitly disable certain screen sizes here; + older applications are assumed to only support the traditional normal + (HVGA) screen size. Note that screen size is a separate axis from + density, and is determined as the available pixels to an application + after density scaling has been applied. + +

This appears as a child tag of the + {@link #AndroidManifest manifest} tag. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #AndroidManifestSupportsScreens_anyDensity android:anyDensity} Indicates whether the application can accommodate any screen + density.
{@link #AndroidManifestSupportsScreens_compatibleWidthLimitDp android:compatibleWidthLimitDp} Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}, + this is the new way to specify the largest screens an application is + compatible with.
{@link #AndroidManifestSupportsScreens_largeScreens android:largeScreens} Indicates whether the application supports larger screen form-factors.
{@link #AndroidManifestSupportsScreens_largestWidthLimitDp android:largestWidthLimitDp} Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}, + this is the new way to specify the screens an application is + compatible with.
{@link #AndroidManifestSupportsScreens_normalScreens android:normalScreens} Indicates whether an application supports the normal screen + form-factors.
{@link #AndroidManifestSupportsScreens_requiresSmallestWidthDp android:requiresSmallestWidthDp} Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}, + this is the new way to specify the minimum screen size an application is + compatible with.
{@link #AndroidManifestSupportsScreens_resizeable android:resizeable} Indicates whether the application can resize itself to newer + screen sizes.
{@link #AndroidManifestSupportsScreens_smallScreens android:smallScreens} Indicates whether the application supports smaller screen form-factors.
{@link #AndroidManifestSupportsScreens_xlargeScreens android:xlargeScreens} Indicates whether the application supports extra large screen form-factors.
+ @see #AndroidManifestSupportsScreens_anyDensity + @see #AndroidManifestSupportsScreens_compatibleWidthLimitDp + @see #AndroidManifestSupportsScreens_largeScreens + @see #AndroidManifestSupportsScreens_largestWidthLimitDp + @see #AndroidManifestSupportsScreens_normalScreens + @see #AndroidManifestSupportsScreens_requiresSmallestWidthDp + @see #AndroidManifestSupportsScreens_resizeable + @see #AndroidManifestSupportsScreens_smallScreens + @see #AndroidManifestSupportsScreens_xlargeScreens + */ + public static final int[] AndroidManifestSupportsScreens = { + 0x0101026c, 0x01010284, 0x01010285, 0x01010286, + 0x0101028d, 0x010102bf, 0x01010364, 0x01010365, + 0x01010366 + }; + /** +

+ @attr description + Indicates whether the application can accommodate any screen + density. Older applications are assumed to not be able to, + new ones able to. You can explicitly supply your abilities + here. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#anyDensity}. + @attr name android:anyDensity + */ + public static final int AndroidManifestSupportsScreens_anyDensity = 0; + /** +

+ @attr description + Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}, + this is the new way to specify the largest screens an application is + compatible with. This attribute provides the maximum + "smallest screen width" (as per the -swNNNdp resource configuration) + that the application is designed for. If this value is smaller than + the "smallest screen width" of the device it is running on, the user + is offered to run it in a compatibility mode that emulates a + smaller screen and zooms it to fit the screen. Currently the compatibility mode only + emulates phone screens with a 320dp width, so compatibility mode is not applied if the + value for compatibleWidthLimitDp is larger than 320. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#compatibleWidthLimitDp}. + @attr name android:compatibleWidthLimitDp + */ + public static final int AndroidManifestSupportsScreens_compatibleWidthLimitDp = 7; + /** +

+ @attr description + Indicates whether the application supports larger screen form-factors. + A large screen is defined as a screen that is significantly larger + than a normal phone screen, and thus may require some special care + on the application's part to make good use of it. An example would + be a VGA normal density screen, though even larger screens + are certainly possible. An application that does not support + large screens will be placed as a postage stamp on such a + screen, so that it retains the dimensions it was originally + designed for. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#largeScreens}. + @attr name android:largeScreens + */ + public static final int AndroidManifestSupportsScreens_largeScreens = 3; + /** +

+ @attr description + Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}, + this is the new way to specify the screens an application is + compatible with. This attribute provides the maximum + "smallest screen width" (as per the -swNNNdp resource configuration) + that the application can work well on. If this value is smaller than + the "smallest screen width" of the device it is running on, the + application will be forced in to screen compatibility mode with + no way for the user to turn it off. Currently the compatibility mode only + emulates phone screens with a 320dp width, so compatibility mode is not applied if the + value for largestWidthLimitDp is larger than 320. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#largestWidthLimitDp}. + @attr name android:largestWidthLimitDp + */ + public static final int AndroidManifestSupportsScreens_largestWidthLimitDp = 8; + /** +

+ @attr description + Indicates whether an application supports the normal screen + form-factors. Traditionally this is an HVGA normal density + screen, but WQVGA low density and WVGA high density are also + considered to be normal. This attribute is true by default, + and applications currently should leave it that way. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#normalScreens}. + @attr name android:normalScreens + */ + public static final int AndroidManifestSupportsScreens_normalScreens = 2; + /** +

+ @attr description + Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB_MR2}, + this is the new way to specify the minimum screen size an application is + compatible with. This attribute provides the required minimum + "smallest screen width" (as per the -swNNNdp resource configuration) + that the application can run on. For example, a typical phone + screen is 320, a 7" tablet 600, and a 10" tablet 720. If the + smallest screen width of the device is below the value supplied here, + then the application is considered incompatible with that device. + If not supplied, then any old smallScreens, normalScreens, largeScreens, + or xlargeScreens attributes will be used instead. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#requiresSmallestWidthDp}. + @attr name android:requiresSmallestWidthDp + */ + public static final int AndroidManifestSupportsScreens_requiresSmallestWidthDp = 6; + /** +

+ @attr description + Indicates whether the application can resize itself to newer + screen sizes. This is mostly used to distinguish between old + applications that may not be compatible with newly introduced + screen sizes and newer applications that should be; it will be + set for you automatically based on whether you are targeting + a newer platform that supports more screens. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#resizeable}. + @attr name android:resizeable + */ + public static final int AndroidManifestSupportsScreens_resizeable = 4; + /** +

+ @attr description + Indicates whether the application supports smaller screen form-factors. + A small screen is defined as one with a smaller aspect ratio than + the traditional HVGA screen; that is, for a portrait screen, less + tall than an HVGA screen. In practice, this means a QVGA low + density or VGA high density screen. An application that does + not support small screens will not be available for + small screen devices, since there is little the platform can do + to make such an application work on a smaller screen. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#smallScreens}. + @attr name android:smallScreens + */ + public static final int AndroidManifestSupportsScreens_smallScreens = 1; + /** +

+ @attr description + Indicates whether the application supports extra large screen form-factors. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#xlargeScreens}. + @attr name android:xlargeScreens + */ + public static final int AndroidManifestSupportsScreens_xlargeScreens = 5; + /** Associate declared KeySets with upgrading capability +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #AndroidManifestUpgradeKeySet_name android:name} A unique name for the given item.
+ @see #AndroidManifestUpgradeKeySet_name + */ + public static final int[] AndroidManifestUpgradeKeySet = { + 0x01010003 + }; + /** +

+ @attr description + A unique name for the given item. This must use a Java-style naming + convention to ensure the name is unique, for example + "com.mycompany.MyName". + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestUpgradeKeySet_name = 0; + /** The uses-configuration tag specifies + a specific hardware configuration value used by the application. + For example an application might specify that it requires + a physical keyboard or a particular navigation method like + trackball. Multiple such attribute values can be specified by the + application. + +

This appears as a child tag of the root + {@link #AndroidManifest manifest} tag. + + @deprecated Use feature-group instead. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #AndroidManifestUsesConfiguration_reqFiveWayNav android:reqFiveWayNav} Application's requirement for five way navigation
{@link #AndroidManifestUsesConfiguration_reqHardKeyboard android:reqHardKeyboard} Application's requirement for a hard keyboard
{@link #AndroidManifestUsesConfiguration_reqKeyboardType android:reqKeyboardType} The input method preferred by an application.
{@link #AndroidManifestUsesConfiguration_reqNavigation android:reqNavigation} The navigation device preferred by an application.
{@link #AndroidManifestUsesConfiguration_reqTouchScreen android:reqTouchScreen} The type of touch screen used by an application.
+ @see #AndroidManifestUsesConfiguration_reqFiveWayNav + @see #AndroidManifestUsesConfiguration_reqHardKeyboard + @see #AndroidManifestUsesConfiguration_reqKeyboardType + @see #AndroidManifestUsesConfiguration_reqNavigation + @see #AndroidManifestUsesConfiguration_reqTouchScreen + */ + @Deprecated + public static final int[] AndroidManifestUsesConfiguration = { + 0x01010227, 0x01010228, 0x01010229, 0x0101022a, + 0x01010232 + }; + /** +

+ @attr description + Application's requirement for five way navigation + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#reqFiveWayNav}. + @attr name android:reqFiveWayNav + */ + public static final int AndroidManifestUsesConfiguration_reqFiveWayNav = 4; + /** +

+ @attr description + Application's requirement for a hard keyboard + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#reqHardKeyboard}. + @attr name android:reqHardKeyboard + */ + public static final int AndroidManifestUsesConfiguration_reqHardKeyboard = 2; + /** +

+ @attr description + The input method preferred by an application. + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
undefined0
nokeys1
qwerty2
twelvekey3
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#reqKeyboardType}. + @attr name android:reqKeyboardType + */ + public static final int AndroidManifestUsesConfiguration_reqKeyboardType = 1; + /** +

+ @attr description + The navigation device preferred by an application. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
undefined0
nonav1
dpad2
trackball3
wheel4
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#reqNavigation}. + @attr name android:reqNavigation + */ + public static final int AndroidManifestUsesConfiguration_reqNavigation = 3; + /** +

+ @attr description + The type of touch screen used by an application. + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
undefined0
notouch1
stylus2
finger3
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#reqTouchScreen}. + @attr name android:reqTouchScreen + */ + public static final int AndroidManifestUsesConfiguration_reqTouchScreen = 0; + /** The uses-feature tag specifies + a specific feature used by the application. + For example an application might specify that it requires + specific version of OpenGL. Multiple such attribute + values can be specified by the application. + +

This appears as a child tag of the root + {@link #AndroidManifest manifest} tag. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AndroidManifestUsesFeature_glEsVersion android:glEsVersion} The GLES driver version number needed by an application.
{@link #AndroidManifestUsesFeature_name android:name} The name of the feature that is being used.
{@link #AndroidManifestUsesFeature_required android:required} Specify whether this feature is required for the application.
+ @see #AndroidManifestUsesFeature_glEsVersion + @see #AndroidManifestUsesFeature_name + @see #AndroidManifestUsesFeature_required + */ + public static final int[] AndroidManifestUsesFeature = { + 0x01010003, 0x01010281, 0x0101028e + }; + /** +

+ @attr description + The GLES driver version number needed by an application. + The higher 16 bits represent the major number and the lower 16 bits + represent the minor number. For example for GL 1.2 referring to + 0x00000102, the actual value should be set as 0x00010002. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#glEsVersion}. + @attr name android:glEsVersion + */ + public static final int AndroidManifestUsesFeature_glEsVersion = 1; + /** +

+ @attr description + The name of the feature that is being used. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestUsesFeature_name = 0; + /** +

+ @attr description + Specify whether this feature is required for the application. + The default is true, meaning the application requires the + feature, and does not want to be installed on devices that + don't support it. If you set this to false, then this will + not impose a restriction on where the application can be + installed. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#required}. + @attr name android:required + */ + public static final int AndroidManifestUsesFeature_required = 2; + /** The uses-libraries specifies a shared library that this + package requires to be linked against. Specifying this flag tells the + system to include this library's code in your class loader. + +

This appears as a child tag of the + {@link #AndroidManifestApplication application} tag. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AndroidManifestUsesLibrary_name android:name} Required name of the library you use.
{@link #AndroidManifestUsesLibrary_required android:required} Specify whether this library is required for the application.
+ @see #AndroidManifestUsesLibrary_name + @see #AndroidManifestUsesLibrary_required + */ + public static final int[] AndroidManifestUsesLibrary = { + 0x01010003, 0x0101028e + }; + /** +

+ @attr description + Required name of the library you use. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestUsesLibrary_name = 0; + /** +

+ @attr description + Specify whether this library is required for the application. + The default is true, meaning the application requires the + library, and does not want to be installed on devices that + don't support it. If you set this to false, then this will + allow the application to be installed even if the library + doesn't exist, and you will need to check for its presence + dynamically at runtime. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#required}. + @attr name android:required + */ + public static final int AndroidManifestUsesLibrary_required = 1; + /** The uses-permission tag requests a + {@link #AndroidManifestPermission <permission>} that the containing + package must be granted in order for it to operate correctly. For runtime + permissions, i.e. ones with dangerous protection level, on a + platform that supports runtime permissions, the permission will not be + granted until the app explicitly requests it at runtime and the user approves + the grant. You cannot request at runtime permissions that are not declared + as used in the manifest. See the + Security and Permissions + document for more information on permissions. Also available is a + {@link android.Manifest.permission list of permissions} included + with the base platform. + +

This appears as a child tag of the root + {@link #AndroidManifest manifest} tag. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AndroidManifestUsesPermission_maxSdkVersion android:maxSdkVersion} Optional: specify the maximum version of the Android OS for which the + application wishes to request the permission.
{@link #AndroidManifestUsesPermission_name android:name} Required name of the permission you use, as published with the + corresponding name attribute of a + {@link android.R.styleable#AndroidManifestPermission <permission>} + tag; often this is one of the {@link android.Manifest.permission standard + system permissions}.
+ @see #AndroidManifestUsesPermission_maxSdkVersion + @see #AndroidManifestUsesPermission_name + */ + public static final int[] AndroidManifestUsesPermission = { + 0x01010003, 0x01010271 + }; + /** +

+ @attr description + Optional: specify the maximum version of the Android OS for which the + application wishes to request the permission. When running on a version + of Android higher than the number given here, the permission will not + be requested. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxSdkVersion}. + @attr name android:maxSdkVersion + */ + public static final int AndroidManifestUsesPermission_maxSdkVersion = 1; + /** +

+ @attr description + Required name of the permission you use, as published with the + corresponding name attribute of a + {@link android.R.styleable#AndroidManifestPermission <permission>} + tag; often this is one of the {@link android.Manifest.permission standard + system permissions}. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AndroidManifestUsesPermission_name = 0; + /** The uses-sdk tag describes the SDK features that the + containing package must be running on to operate correctly. + +

This appears as a child tag of the root + {@link #AndroidManifest manifest} tag. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AndroidManifestUsesSdk_maxSdkVersion android:maxSdkVersion} This is the maximum SDK version number that an application works + on.
{@link #AndroidManifestUsesSdk_minSdkVersion android:minSdkVersion} This is the minimum SDK version number that the application + requires.
{@link #AndroidManifestUsesSdk_targetSdkVersion android:targetSdkVersion} This is the SDK version number that the application is targeting.
+ @see #AndroidManifestUsesSdk_maxSdkVersion + @see #AndroidManifestUsesSdk_minSdkVersion + @see #AndroidManifestUsesSdk_targetSdkVersion + */ + public static final int[] AndroidManifestUsesSdk = { + 0x0101020c, 0x01010270, 0x01010271 + }; + /** +

+ @attr description + This is the maximum SDK version number that an application works + on. You can use this to ensure your application is filtered out + of later versions of the platform when you know you have + incompatibility with them. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxSdkVersion}. + @attr name android:maxSdkVersion + */ + public static final int AndroidManifestUsesSdk_maxSdkVersion = 2; + /** +

+ @attr description + This is the minimum SDK version number that the application + requires. This number is an abstract integer, from the list + in {@link android.os.Build.VERSION_CODES} If + not supplied, the application will work on any SDK. This + may also be string (such as "Donut") if the application was built + against a development branch, in which case it will only work against + the development builds. + + +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#minSdkVersion}. + @attr name android:minSdkVersion + */ + public static final int AndroidManifestUsesSdk_minSdkVersion = 0; + /** +

+ @attr description + This is the SDK version number that the application is targeting. + It is able to run on older versions (down to minSdkVersion), but + was explicitly tested to work with the version specified here. + Specifying this version allows the platform to disable compatibility + code that are not required or enable newer features that are not + available to older applications. This may also be a string + (such as "Donut") if this is built against a development + branch, in which case minSdkVersion is also forced to be that + string. + + +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#targetSdkVersion}. + @attr name android:targetSdkVersion + */ + public static final int AndroidManifestUsesSdk_targetSdkVersion = 1; + /** Attributes that can be used with a AnimatedRotateDrawable. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AnimatedRotateDrawable_drawable android:drawable} Reference to a drawable resource to use for the frame.
{@link #AnimatedRotateDrawable_frameDuration android:frameDuration}
{@link #AnimatedRotateDrawable_framesCount android:framesCount}
{@link #AnimatedRotateDrawable_pivotX android:pivotX}
{@link #AnimatedRotateDrawable_pivotY android:pivotY}
{@link #AnimatedRotateDrawable_visible android:visible} Provides initial visibility state of the drawable; the default + value is false.
+ @see #AnimatedRotateDrawable_drawable + @see #AnimatedRotateDrawable_frameDuration + @see #AnimatedRotateDrawable_framesCount + @see #AnimatedRotateDrawable_pivotX + @see #AnimatedRotateDrawable_pivotY + @see #AnimatedRotateDrawable_visible + */ + public static final int[] AnimatedRotateDrawable = { + 0x01010194, 0x01010199, 0x010101b5, 0x010101b6, + 0x01160077, 0x01160078 + }; + /** +

+ @attr description + Reference to a drawable resource to use for the frame. If not + given, the drawable must be defined by the first child tag. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawable}. + @attr name android:drawable + */ + public static final int AnimatedRotateDrawable_drawable = 1; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#frameDuration} + attribute's value can be found in the {@link #AnimatedRotateDrawable} array. + @attr name com.android.internal:frameDuration + */ + public static final int AnimatedRotateDrawable_frameDuration = 4; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#framesCount} + attribute's value can be found in the {@link #AnimatedRotateDrawable} array. + @attr name com.android.internal:framesCount + */ + public static final int AnimatedRotateDrawable_framesCount = 5; + /** +

This symbol is the offset where the {@link android.R.attr#pivotX} + attribute's value can be found in the {@link #AnimatedRotateDrawable} array. + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:pivotX + */ + public static final int AnimatedRotateDrawable_pivotX = 2; + /** +

This symbol is the offset where the {@link android.R.attr#pivotY} + attribute's value can be found in the {@link #AnimatedRotateDrawable} array. + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:pivotY + */ + public static final int AnimatedRotateDrawable_pivotY = 3; + /** +

+ @attr description + Provides initial visibility state of the drawable; the default + value is false. See + {@link android.graphics.drawable.Drawable#setVisible}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#visible}. + @attr name android:visible + */ + public static final int AnimatedRotateDrawable_visible = 0; + /** Drawable used to render several states with animated transitions. Each state + is represented by a child drawable with an optional keyframe ID. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #AnimatedStateListDrawable_autoMirrored android:autoMirrored} Indicates if the drawable needs to be mirrored when its layout direction is + RTL (right-to-left).
{@link #AnimatedStateListDrawable_constantSize android:constantSize} If true, the drawable's reported internal size will remain + constant as the state changes; the size is the maximum of all + of the states.
{@link #AnimatedStateListDrawable_dither android:dither} Enables or disables dithering of the bitmap if the bitmap does not have the + same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with + an RGB 565 screen).
{@link #AnimatedStateListDrawable_enterFadeDuration android:enterFadeDuration} Amount of time (in milliseconds) to fade in a new state drawable.
{@link #AnimatedStateListDrawable_exitFadeDuration android:exitFadeDuration} Amount of time (in milliseconds) to fade out an old state drawable.
{@link #AnimatedStateListDrawable_variablePadding android:variablePadding} If true, allows the drawable's padding to change based on the + current state that is selected.
{@link #AnimatedStateListDrawable_visible android:visible} Indicates whether the drawable should be initially visible.
+ @see #AnimatedStateListDrawable_autoMirrored + @see #AnimatedStateListDrawable_constantSize + @see #AnimatedStateListDrawable_dither + @see #AnimatedStateListDrawable_enterFadeDuration + @see #AnimatedStateListDrawable_exitFadeDuration + @see #AnimatedStateListDrawable_variablePadding + @see #AnimatedStateListDrawable_visible + */ + public static final int[] AnimatedStateListDrawable = { + 0x0101011c, 0x01010194, 0x01010195, 0x01010196, + 0x0101030c, 0x0101030d, 0x010103ea + }; + /** +

+ @attr description + Indicates if the drawable needs to be mirrored when its layout direction is + RTL (right-to-left). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#autoMirrored}. + @attr name android:autoMirrored + */ + public static final int AnimatedStateListDrawable_autoMirrored = 6; + /** +

+ @attr description + If true, the drawable's reported internal size will remain + constant as the state changes; the size is the maximum of all + of the states. If false, the size will vary based on the + current state. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#constantSize}. + @attr name android:constantSize + */ + public static final int AnimatedStateListDrawable_constantSize = 3; + /** +

+ @attr description + Enables or disables dithering of the bitmap if the bitmap does not have the + same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with + an RGB 565 screen). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dither}. + @attr name android:dither + */ + public static final int AnimatedStateListDrawable_dither = 0; + /** +

+ @attr description + Amount of time (in milliseconds) to fade in a new state drawable. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#enterFadeDuration}. + @attr name android:enterFadeDuration + */ + public static final int AnimatedStateListDrawable_enterFadeDuration = 4; + /** +

+ @attr description + Amount of time (in milliseconds) to fade out an old state drawable. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#exitFadeDuration}. + @attr name android:exitFadeDuration + */ + public static final int AnimatedStateListDrawable_exitFadeDuration = 5; + /** +

+ @attr description + If true, allows the drawable's padding to change based on the + current state that is selected. If false, the padding will + stay the same (based on the maximum padding of all the states). + Enabling this feature requires that the owner of the drawable + deal with performing layout when the state changes, which is + often not supported. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#variablePadding}. + @attr name android:variablePadding + */ + public static final int AnimatedStateListDrawable_variablePadding = 2; + /** +

+ @attr description + Indicates whether the drawable should be initially visible. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#visible}. + @attr name android:visible + */ + public static final int AnimatedStateListDrawable_visible = 1; + /** Transition used to animate between states with keyframe IDs. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AnimatedStateListDrawableItem_drawable android:drawable} Reference to a drawable resource to use for the frame.
{@link #AnimatedStateListDrawableItem_id android:id} Keyframe identifier for use in specifying transitions.
+ @see #AnimatedStateListDrawableItem_drawable + @see #AnimatedStateListDrawableItem_id + */ + public static final int[] AnimatedStateListDrawableItem = { + 0x010100d0, 0x01010199 + }; + /** +

+ @attr description + Reference to a drawable resource to use for the frame. If not + given, the drawable must be defined by the first child tag. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawable}. + @attr name android:drawable + */ + public static final int AnimatedStateListDrawableItem_drawable = 1; + /** +

+ @attr description + Keyframe identifier for use in specifying transitions. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#id}. + @attr name android:id + */ + public static final int AnimatedStateListDrawableItem_id = 0; + /** Transition used to animate between states with keyframe IDs. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #AnimatedStateListDrawableTransition_drawable android:drawable} Reference to a animation drawable resource to use for the frame.
{@link #AnimatedStateListDrawableTransition_fromId android:fromId} Keyframe identifier for the starting state.
{@link #AnimatedStateListDrawableTransition_reversible android:reversible} Whether this transition is reversible.
{@link #AnimatedStateListDrawableTransition_toId android:toId} Keyframe identifier for the ending state.
+ @see #AnimatedStateListDrawableTransition_drawable + @see #AnimatedStateListDrawableTransition_fromId + @see #AnimatedStateListDrawableTransition_reversible + @see #AnimatedStateListDrawableTransition_toId + */ + public static final int[] AnimatedStateListDrawableTransition = { + 0x01010199, 0x01010449, 0x0101044a, 0x0101044b + }; + /** +

+ @attr description + Reference to a animation drawable resource to use for the frame. If not + given, the animation drawable must be defined by the first child tag. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawable}. + @attr name android:drawable + */ + public static final int AnimatedStateListDrawableTransition_drawable = 0; + /** +

+ @attr description + Keyframe identifier for the starting state. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fromId}. + @attr name android:fromId + */ + public static final int AnimatedStateListDrawableTransition_fromId = 2; + /** +

+ @attr description + Whether this transition is reversible. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#reversible}. + @attr name android:reversible + */ + public static final int AnimatedStateListDrawableTransition_reversible = 3; + /** +

+ @attr description + Keyframe identifier for the ending state. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#toId}. + @attr name android:toId + */ + public static final int AnimatedStateListDrawableTransition_toId = 1; + /** Define the AnimatedVectorDrawable. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #AnimatedVectorDrawable_drawable android:drawable} The static vector drawable.
+ @see #AnimatedVectorDrawable_drawable + */ + public static final int[] AnimatedVectorDrawable = { + 0x01010199 + }; + /** +

+ @attr description + The static vector drawable. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawable}. + @attr name android:drawable + */ + public static final int AnimatedVectorDrawable_drawable = 0; + /** Defines the target used in the AnimatedVectorDrawable. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AnimatedVectorDrawableTarget_animation android:animation} The animation for the target path, group or vector drawable
{@link #AnimatedVectorDrawableTarget_name android:name} The name of the target path, group or vector drawable
+ @see #AnimatedVectorDrawableTarget_animation + @see #AnimatedVectorDrawableTarget_name + */ + public static final int[] AnimatedVectorDrawableTarget = { + 0x01010003, 0x010101cd + }; + /** +

+ @attr description + The animation for the target path, group or vector drawable + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#animation}. + @attr name android:animation + */ + public static final int AnimatedVectorDrawableTarget_animation = 1; + /** +

+ @attr description + The name of the target path, group or vector drawable + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int AnimatedVectorDrawableTarget_name = 0; + /** Attributes that can be used with a Animation. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #Animation_background android:background} Special background behind animation.
{@link #Animation_detachWallpaper android:detachWallpaper} Special option for window animations: if this window is on top + of a wallpaper, don't animate the wallpaper with it.
{@link #Animation_duration android:duration} Amount of time (in milliseconds) for the animation to run.
{@link #Animation_fillAfter android:fillAfter} When set to true, the animation transformation is applied after the animation is + over.
{@link #Animation_fillBefore android:fillBefore} When set to true or when fillEnabled is not set to true, the animation transformation + is applied before the animation has started.
{@link #Animation_fillEnabled android:fillEnabled} When set to true, the value of fillBefore is taken into account.
{@link #Animation_interpolator android:interpolator} Defines the interpolator used to smooth the animation movement in time.
{@link #Animation_repeatCount android:repeatCount} Defines how many times the animation should repeat.
{@link #Animation_repeatMode android:repeatMode} Defines the animation behavior when it reaches the end and the repeat count is + greater than 0 or infinite.
{@link #Animation_startOffset android:startOffset} Delay in milliseconds before the animation runs, once start time is reached.
{@link #Animation_zAdjustment android:zAdjustment} Allows for an adjustment of the Z ordering of the content being + animated for the duration of the animation.
+ @see #Animation_background + @see #Animation_detachWallpaper + @see #Animation_duration + @see #Animation_fillAfter + @see #Animation_fillBefore + @see #Animation_fillEnabled + @see #Animation_interpolator + @see #Animation_repeatCount + @see #Animation_repeatMode + @see #Animation_startOffset + @see #Animation_zAdjustment + */ + public static final int[] Animation = { + 0x010100d4, 0x01010141, 0x01010198, 0x010101bc, + 0x010101bd, 0x010101be, 0x010101bf, 0x010101c0, + 0x010101c1, 0x0101024f, 0x010102a6 + }; + /** +

+ @attr description + Special background behind animation. Only for use with window + animations. Can only be a color, and only black. If 0, the + default, there is no background. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#background}. + @attr name android:background + */ + public static final int Animation_background = 0; + /** +

+ @attr description + Special option for window animations: if this window is on top + of a wallpaper, don't animate the wallpaper with it. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#detachWallpaper}. + @attr name android:detachWallpaper + */ + public static final int Animation_detachWallpaper = 10; + /** +

+ @attr description + Amount of time (in milliseconds) for the animation to run. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#duration}. + @attr name android:duration + */ + public static final int Animation_duration = 2; + /** +

+ @attr description + When set to true, the animation transformation is applied after the animation is + over. The default value is false. If fillEnabled is not set to true and the + animation is not set on a View, fillAfter is assumed to be true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fillAfter}. + @attr name android:fillAfter + */ + public static final int Animation_fillAfter = 4; + /** +

+ @attr description + When set to true or when fillEnabled is not set to true, the animation transformation + is applied before the animation has started. The default value is true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fillBefore}. + @attr name android:fillBefore + */ + public static final int Animation_fillBefore = 3; + /** +

+ @attr description + When set to true, the value of fillBefore is taken into account. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fillEnabled}. + @attr name android:fillEnabled + */ + public static final int Animation_fillEnabled = 9; + /** +

+ @attr description + Defines the interpolator used to smooth the animation movement in time. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#interpolator}. + @attr name android:interpolator + */ + public static final int Animation_interpolator = 1; + /** +

+ @attr description + Defines how many times the animation should repeat. The default value is 0. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
infinite-1
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#repeatCount}. + @attr name android:repeatCount + */ + public static final int Animation_repeatCount = 6; + /** +

+ @attr description + Defines the animation behavior when it reaches the end and the repeat count is + greater than 0 or infinite. The default value is restart. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
restart1 The animation starts again from the beginning.
reverse2 The animation plays backward.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#repeatMode}. + @attr name android:repeatMode + */ + public static final int Animation_repeatMode = 7; + /** +

+ @attr description + Delay in milliseconds before the animation runs, once start time is reached. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startOffset}. + @attr name android:startOffset + */ + public static final int Animation_startOffset = 5; + /** +

+ @attr description + Allows for an adjustment of the Z ordering of the content being + animated for the duration of the animation. The default value is normal. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0 The content being animated be kept in its current Z order.
top1 The content being animated is forced on top of all other + content for the duration of the animation.
bottom-1 The content being animated is forced under all other + content for the duration of the animation.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#zAdjustment}. + @attr name android:zAdjustment + */ + public static final int Animation_zAdjustment = 8; + /** Drawable used to render several animated frames. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AnimationDrawable_oneshot android:oneshot} If true, the animation will only run a single time and then + stop.
{@link #AnimationDrawable_variablePadding android:variablePadding} If true, allows the drawable's padding to change based on the + current state that is selected.
{@link #AnimationDrawable_visible android:visible} Provides initial visibility state of the drawable; the default + value is false.
+ @see #AnimationDrawable_oneshot + @see #AnimationDrawable_variablePadding + @see #AnimationDrawable_visible + */ + public static final int[] AnimationDrawable = { + 0x01010194, 0x01010195, 0x01010197 + }; + /** +

+ @attr description + If true, the animation will only run a single time and then + stop. If false (the default), it will continually run, + restarting at the first frame after the last has finished. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#oneshot}. + @attr name android:oneshot + */ + public static final int AnimationDrawable_oneshot = 2; + /** +

+ @attr description + If true, allows the drawable's padding to change based on the + current state that is selected. If false, the padding will + stay the same (based on the maximum padding of all the states). + Enabling this feature requires that the owner of the drawable + deal with performing layout when the state changes, which is + often not supported. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#variablePadding}. + @attr name android:variablePadding + */ + public static final int AnimationDrawable_variablePadding = 1; + /** +

+ @attr description + Provides initial visibility state of the drawable; the default + value is false. See + {@link android.graphics.drawable.Drawable#setVisible}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#visible}. + @attr name android:visible + */ + public static final int AnimationDrawable_visible = 0; + /** Represents a single frame inside an AnimationDrawable. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AnimationDrawableItem_drawable android:drawable} Reference to a drawable resource to use for the frame.
{@link #AnimationDrawableItem_duration android:duration} Amount of time (in milliseconds) to display this frame.
+ @see #AnimationDrawableItem_drawable + @see #AnimationDrawableItem_duration + */ + public static final int[] AnimationDrawableItem = { + 0x01010198, 0x01010199 + }; + /** +

+ @attr description + Reference to a drawable resource to use for the frame. If not + given, the drawable must be defined by the first child tag. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawable}. + @attr name android:drawable + */ + public static final int AnimationDrawableItem_drawable = 1; + /** +

+ @attr description + Amount of time (in milliseconds) to display this frame. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#duration}. + @attr name android:duration + */ + public static final int AnimationDrawableItem_duration = 0; + /** Attributes that can be used with a AnimationSet. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AnimationSet_duration android:duration} Amount of time (in milliseconds) to display this frame.
{@link #AnimationSet_fillAfter android:fillAfter} When set to true, the animation transformation is applied after the animation is + over.
{@link #AnimationSet_fillBefore android:fillBefore} When set to true or when fillEnabled is not set to true, the animation transformation + is applied before the animation has started.
{@link #AnimationSet_repeatMode android:repeatMode} Defines the animation behavior when it reaches the end and the repeat count is + greater than 0 or infinite.
{@link #AnimationSet_shareInterpolator android:shareInterpolator}
{@link #AnimationSet_startOffset android:startOffset} Delay in milliseconds before the animation runs, once start time is reached.
+ @see #AnimationSet_duration + @see #AnimationSet_fillAfter + @see #AnimationSet_fillBefore + @see #AnimationSet_repeatMode + @see #AnimationSet_shareInterpolator + @see #AnimationSet_startOffset + */ + public static final int[] AnimationSet = { + 0x01010198, 0x010101bb, 0x010101bc, 0x010101bd, + 0x010101be, 0x010101c0 + }; + /** +

+ @attr description + Amount of time (in milliseconds) to display this frame. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#duration}. + @attr name android:duration + */ + public static final int AnimationSet_duration = 0; + /** +

+ @attr description + When set to true, the animation transformation is applied after the animation is + over. The default value is false. If fillEnabled is not set to true and the + animation is not set on a View, fillAfter is assumed to be true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fillAfter}. + @attr name android:fillAfter + */ + public static final int AnimationSet_fillAfter = 3; + /** +

+ @attr description + When set to true or when fillEnabled is not set to true, the animation transformation + is applied before the animation has started. The default value is true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fillBefore}. + @attr name android:fillBefore + */ + public static final int AnimationSet_fillBefore = 2; + /** +

+ @attr description + Defines the animation behavior when it reaches the end and the repeat count is + greater than 0 or infinite. The default value is restart. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
restart1 The animation starts again from the beginning.
reverse2 The animation plays backward.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#repeatMode}. + @attr name android:repeatMode + */ + public static final int AnimationSet_repeatMode = 5; + /** +

This symbol is the offset where the {@link android.R.attr#shareInterpolator} + attribute's value can be found in the {@link #AnimationSet} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:shareInterpolator + */ + public static final int AnimationSet_shareInterpolator = 1; + /** +

+ @attr description + Delay in milliseconds before the animation runs, once start time is reached. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startOffset}. + @attr name android:startOffset + */ + public static final int AnimationSet_startOffset = 4; + /** Attributes that can be used with a Animator. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #Animator_duration android:duration} Amount of time (in milliseconds) for the animation to run.
{@link #Animator_interpolator android:interpolator} Defines the interpolator used to smooth the animation movement in time.
{@link #Animator_removeBeforeMRelease android:removeBeforeMRelease} Placeholder for a deleted attribute.
{@link #Animator_repeatCount android:repeatCount} Defines how many times the animation should repeat.
{@link #Animator_repeatMode android:repeatMode} Defines the animation behavior when it reaches the end and the repeat count is + greater than 0 or infinite.
{@link #Animator_startOffset android:startOffset} Delay in milliseconds before the animation runs, once start time is reached.
{@link #Animator_valueFrom android:valueFrom} Value the animation starts from.
{@link #Animator_valueTo android:valueTo} Value the animation animates to.
{@link #Animator_valueType android:valueType} The type of valueFrom and valueTo.
+ @see #Animator_duration + @see #Animator_interpolator + @see #Animator_removeBeforeMRelease + @see #Animator_repeatCount + @see #Animator_repeatMode + @see #Animator_startOffset + @see #Animator_valueFrom + @see #Animator_valueTo + @see #Animator_valueType + */ + public static final int[] Animator = { + 0x01010141, 0x01010198, 0x010101be, 0x010101bf, + 0x010101c0, 0x010102de, 0x010102df, 0x010102e0, + 0x01160080 + }; + /** +

+ @attr description + Amount of time (in milliseconds) for the animation to run. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#duration}. + @attr name android:duration + */ + public static final int Animator_duration = 1; + /** +

+ @attr description + Defines the interpolator used to smooth the animation movement in time. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#interpolator}. + @attr name android:interpolator + */ + public static final int Animator_interpolator = 0; + /** +

+ @attr description + Placeholder for a deleted attribute. This should be removed before M release. +

This is a private symbol. + @attr name com.android.internal:removeBeforeMRelease + */ + public static final int Animator_removeBeforeMRelease = 8; + /** +

+ @attr description + Defines how many times the animation should repeat. The default value is 0. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
infinite-1
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#repeatCount}. + @attr name android:repeatCount + */ + public static final int Animator_repeatCount = 3; + /** +

+ @attr description + Defines the animation behavior when it reaches the end and the repeat count is + greater than 0 or infinite. The default value is restart. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
restart1 The animation starts again from the beginning.
reverse2 The animation plays backward.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#repeatMode}. + @attr name android:repeatMode + */ + public static final int Animator_repeatMode = 4; + /** +

+ @attr description + Delay in milliseconds before the animation runs, once start time is reached. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startOffset}. + @attr name android:startOffset + */ + public static final int Animator_startOffset = 2; + /** +

+ @attr description + Value the animation starts from. + + +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

May be a floating point value, such as "1.2". +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#valueFrom}. + @attr name android:valueFrom + */ + public static final int Animator_valueFrom = 5; + /** +

+ @attr description + Value the animation animates to. + + +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

May be a floating point value, such as "1.2". +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#valueTo}. + @attr name android:valueTo + */ + public static final int Animator_valueTo = 6; + /** +

+ @attr description + The type of valueFrom and valueTo. + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
floatType0 The given values are floats. This is the default value if valueType is + unspecified. Note that if any value attribute has a color value + (beginning with "#"), then this attribute is ignored and the color values are + interpreted as integers.
intType1 values are integers.
pathType2 values are paths defined as strings. + This type is used for path morphing in AnimatedVectorDrawable.
colorType3 values are colors, which are integers starting with "#".
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#valueType}. + @attr name android:valueType + */ + public static final int Animator_valueType = 7; + /** Attributes that can be used with a AnimatorSet. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #AnimatorSet_ordering android:ordering} Name of the property being animated.
+ @see #AnimatorSet_ordering + */ + public static final int[] AnimatorSet = { + 0x010102e2 + }; + /** +

+ @attr description + Name of the property being animated. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
together0 child animations should be played together.
sequentially1 child animations should be played sequentially, in the same order as the xml.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#ordering}. + @attr name android:ordering + */ + public static final int AnimatorSet_ordering = 0; + /** Attributes that can be used with a AnticipateInterpolator. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #AnticipateInterpolator_tension android:tension} This is the amount of tension.
+ @see #AnticipateInterpolator_tension + */ + public static final int[] AnticipateInterpolator = { + 0x0101026a + }; + /** +

+ @attr description + This is the amount of tension. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tension}. + @attr name android:tension + */ + public static final int AnticipateInterpolator_tension = 0; + /** Attributes that can be used with a AnticipateOvershootInterpolator. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AnticipateOvershootInterpolator_extraTension android:extraTension} This is the amount by which to multiply the tension.
{@link #AnticipateOvershootInterpolator_tension android:tension} This is the amount of tension.
+ @see #AnticipateOvershootInterpolator_extraTension + @see #AnticipateOvershootInterpolator_tension + */ + public static final int[] AnticipateOvershootInterpolator = { + 0x0101026a, 0x0101026b + }; + /** +

+ @attr description + This is the amount by which to multiply the tension. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#extraTension}. + @attr name android:extraTension + */ + public static final int AnticipateOvershootInterpolator_extraTension = 1; + /** +

+ @attr description + This is the amount of tension. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tension}. + @attr name android:tension + */ + public static final int AnticipateOvershootInterpolator_tension = 0; + /** Use appwidget-provider as the root tag of the XML resource that + describes an AppWidget provider. See {@link android.appwidget android.appwidget} + package for more info. + +

Includes the following attributes:

+ + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppWidgetProviderInfo_autoAdvanceViewId android:autoAdvanceViewId} The view id of the AppWidget subview which should be auto-advanced.
{@link #AppWidgetProviderInfo_configure android:configure} A class name in the AppWidget's package to be launched to configure.
{@link #AppWidgetProviderInfo_initialKeyguardLayout android:initialKeyguardLayout} A resource id of a layout.
{@link #AppWidgetProviderInfo_initialLayout android:initialLayout} A resource id of a layout.
{@link #AppWidgetProviderInfo_minHeight android:minHeight} Minimum height of the AppWidget.
{@link #AppWidgetProviderInfo_minResizeHeight android:minResizeHeight} Minimum height that the AppWidget can be resized to.
{@link #AppWidgetProviderInfo_minResizeWidth android:minResizeWidth} Minimum width that the AppWidget can be resized to.
{@link #AppWidgetProviderInfo_minWidth android:minWidth} Minimum width of the AppWidget.
{@link #AppWidgetProviderInfo_previewImage android:previewImage} A preview of what the AppWidget will look like after it's configured.
{@link #AppWidgetProviderInfo_resizeMode android:resizeMode} Optional parameter which indicates if and how this widget can be + resized.
{@link #AppWidgetProviderInfo_updatePeriodMillis android:updatePeriodMillis} Update period in milliseconds, or 0 if the AppWidget will update itself.
{@link #AppWidgetProviderInfo_widgetCategory android:widgetCategory} Optional parameter which indicates where this widget can be shown, + ie.
+ @see #AppWidgetProviderInfo_autoAdvanceViewId + @see #AppWidgetProviderInfo_configure + @see #AppWidgetProviderInfo_initialKeyguardLayout + @see #AppWidgetProviderInfo_initialLayout + @see #AppWidgetProviderInfo_minHeight + @see #AppWidgetProviderInfo_minResizeHeight + @see #AppWidgetProviderInfo_minResizeWidth + @see #AppWidgetProviderInfo_minWidth + @see #AppWidgetProviderInfo_previewImage + @see #AppWidgetProviderInfo_resizeMode + @see #AppWidgetProviderInfo_updatePeriodMillis + @see #AppWidgetProviderInfo_widgetCategory + */ + public static final int[] AppWidgetProviderInfo = { + 0x0101013f, 0x01010140, 0x01010250, 0x01010251, + 0x0101025d, 0x010102da, 0x0101030f, 0x01010363, + 0x01010395, 0x01010396, 0x010103c2, 0x010103c4 + }; + /** +

+ @attr description + The view id of the AppWidget subview which should be auto-advanced. + by the widget's host. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#autoAdvanceViewId}. + @attr name android:autoAdvanceViewId + */ + public static final int AppWidgetProviderInfo_autoAdvanceViewId = 6; + /** +

+ @attr description + A class name in the AppWidget's package to be launched to configure. + If not supplied, then no activity will be launched. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#configure}. + @attr name android:configure + */ + public static final int AppWidgetProviderInfo_configure = 4; + /** +

+ @attr description + A resource id of a layout. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#initialKeyguardLayout}. + @attr name android:initialKeyguardLayout + */ + public static final int AppWidgetProviderInfo_initialKeyguardLayout = 10; + /** +

+ @attr description + A resource id of a layout. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#initialLayout}. + @attr name android:initialLayout + */ + public static final int AppWidgetProviderInfo_initialLayout = 3; + /** +

+ @attr description + Minimum height of the AppWidget. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#minHeight}. + @attr name android:minHeight + */ + public static final int AppWidgetProviderInfo_minHeight = 1; + /** +

+ @attr description + Minimum height that the AppWidget can be resized to. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#minResizeHeight}. + @attr name android:minResizeHeight + */ + public static final int AppWidgetProviderInfo_minResizeHeight = 9; + /** +

+ @attr description + Minimum width that the AppWidget can be resized to. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#minResizeWidth}. + @attr name android:minResizeWidth + */ + public static final int AppWidgetProviderInfo_minResizeWidth = 8; + /** +

+ @attr description + Minimum width of the AppWidget. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#minWidth}. + @attr name android:minWidth + */ + public static final int AppWidgetProviderInfo_minWidth = 0; + /** +

+ @attr description + A preview of what the AppWidget will look like after it's configured. + If not supplied, the AppWidget's icon will be used. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#previewImage}. + @attr name android:previewImage + */ + public static final int AppWidgetProviderInfo_previewImage = 5; + /** +

+ @attr description + Optional parameter which indicates if and how this widget can be + resized. Supports combined values using | operator. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0x0
horizontal0x1
vertical0x2
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#resizeMode}. + @attr name android:resizeMode + */ + public static final int AppWidgetProviderInfo_resizeMode = 7; + /** +

+ @attr description + Update period in milliseconds, or 0 if the AppWidget will update itself. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#updatePeriodMillis}. + @attr name android:updatePeriodMillis + */ + public static final int AppWidgetProviderInfo_updatePeriodMillis = 2; + /** +

+ @attr description + Optional parameter which indicates where this widget can be shown, + ie. home screen, keyguard, search bar or any combination thereof. + Supports combined values using | operator. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
home_screen0x1
keyguard0x2
searchbox0x4
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#widgetCategory}. + @attr name android:widgetCategory + */ + public static final int AppWidgetProviderInfo_widgetCategory = 11; + /** Use arcMotion as the root tag of the XML resource that + describes a {@link android.transition.ArcMotion}. This must be used + within a transition with which the PathMotion should be associated. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ArcMotion_maximumAngle android:maximumAngle} The maximum arc angle in degrees between the start and end points.
{@link #ArcMotion_minimumHorizontalAngle android:minimumHorizontalAngle} The minimum arc angle in degrees between the start and end points when + they are close to horizontal.
{@link #ArcMotion_minimumVerticalAngle android:minimumVerticalAngle} The minimum arc angle in degrees between the start and end points when + they are close to vertical.
+ @see #ArcMotion_maximumAngle + @see #ArcMotion_minimumHorizontalAngle + @see #ArcMotion_minimumVerticalAngle + */ + public static final int[] ArcMotion = { + 0x0101047d, 0x0101047e, 0x0101047f + }; + /** +

+ @attr description + The maximum arc angle in degrees between the start and end points. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maximumAngle}. + @attr name android:maximumAngle + */ + public static final int ArcMotion_maximumAngle = 2; + /** +

+ @attr description + The minimum arc angle in degrees between the start and end points when + they are close to horizontal. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#minimumHorizontalAngle}. + @attr name android:minimumHorizontalAngle + */ + public static final int ArcMotion_minimumHorizontalAngle = 0; + /** +

+ @attr description + The minimum arc angle in degrees between the start and end points when + they are close to vertical. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#minimumVerticalAngle}. + @attr name android:minimumVerticalAngle + */ + public static final int ArcMotion_minimumVerticalAngle = 1; + /** Attributes that can be used with a AutoCompleteTextView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #AutoCompleteTextView_completionHint android:completionHint} Defines the hint displayed in the drop down menu.
{@link #AutoCompleteTextView_completionHintView android:completionHintView} Defines the hint view displayed in the drop down menu.
{@link #AutoCompleteTextView_completionThreshold android:completionThreshold} Defines the number of characters that the user must type before + completion suggestions are displayed in a drop down menu.
{@link #AutoCompleteTextView_dropDownAnchor android:dropDownAnchor} View to anchor the auto-complete dropdown to.
{@link #AutoCompleteTextView_dropDownHeight android:dropDownHeight} Specifies the basic height of the dropdown.
{@link #AutoCompleteTextView_dropDownSelector android:dropDownSelector} Selector in a drop down list.
{@link #AutoCompleteTextView_dropDownWidth android:dropDownWidth} Specifies the basic width of the dropdown.
{@link #AutoCompleteTextView_inputType android:inputType} The type of data being placed in a text field, used to help an + input method decide how to let the user enter text.
+ @see #AutoCompleteTextView_completionHint + @see #AutoCompleteTextView_completionHintView + @see #AutoCompleteTextView_completionThreshold + @see #AutoCompleteTextView_dropDownAnchor + @see #AutoCompleteTextView_dropDownHeight + @see #AutoCompleteTextView_dropDownSelector + @see #AutoCompleteTextView_dropDownWidth + @see #AutoCompleteTextView_inputType + */ + public static final int[] AutoCompleteTextView = { + 0x01010172, 0x01010173, 0x01010174, 0x01010175, + 0x01010220, 0x01010262, 0x01010263, 0x01010283 + }; + /** +

+ @attr description + Defines the hint displayed in the drop down menu. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#completionHint}. + @attr name android:completionHint + */ + public static final int AutoCompleteTextView_completionHint = 0; + /** +

+ @attr description + Defines the hint view displayed in the drop down menu. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#completionHintView}. + @attr name android:completionHintView + */ + public static final int AutoCompleteTextView_completionHintView = 1; + /** +

+ @attr description + Defines the number of characters that the user must type before + completion suggestions are displayed in a drop down menu. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#completionThreshold}. + @attr name android:completionThreshold + */ + public static final int AutoCompleteTextView_completionThreshold = 2; + /** +

+ @attr description + View to anchor the auto-complete dropdown to. If not specified, the text view itself + is used. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dropDownAnchor}. + @attr name android:dropDownAnchor + */ + public static final int AutoCompleteTextView_dropDownAnchor = 6; + /** +

+ @attr description + Specifies the basic height of the dropdown. Its value may + be a dimension (such as "12dip") for a constant height, + fill_parent or match_parent to fill the height of the + screen, or wrap_content to match the height of + the content of the drop down. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
fill_parent-1 The dropdown should fit the height of the screen. + This constant is deprecated starting from API Level 8 and + is replaced by {@code match_parent}.
match_parent-1 The dropdown should fit the height of the screen. + Introduced in API Level 8.
wrap_content-2 The dropdown should fit the height of the content.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#dropDownHeight}. + @attr name android:dropDownHeight + */ + public static final int AutoCompleteTextView_dropDownHeight = 7; + /** +

+ @attr description + Selector in a drop down list. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dropDownSelector}. + @attr name android:dropDownSelector + */ + public static final int AutoCompleteTextView_dropDownSelector = 3; + /** +

+ @attr description + Specifies the basic width of the dropdown. Its value may + be a dimension (such as "12dip") for a constant width, + fill_parent or match_parent to match the width of the + screen, or wrap_content to match the width of + the anchored view. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
fill_parent-1 The dropdown should fill the width of the screen. + This constant is deprecated starting from API Level 8 and + is replaced by {@code match_parent}.
match_parent-1 The dropdown should fit the width of the screen. + Introduced in API Level 8.
wrap_content-2 The dropdown should fit the width of its anchor.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#dropDownWidth}. + @attr name android:dropDownWidth + */ + public static final int AutoCompleteTextView_dropDownWidth = 5; + /** +

+ @attr description + The type of data being placed in a text field, used to help an + input method decide how to let the user enter text. The constants + here correspond to those defined by + {@link android.text.InputType}. Generally you can select + a single value, though some can be combined together as + indicated. Setting this attribute to anything besides + none also implies that the text is editable. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ConstantValueDescription
none0x00000000 There is no content type. The text is not editable.
text0x00000001 Just plain old text. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_NORMAL}.
textCapCharacters0x00001001 Can be combined with text and its variations to + request capitalization of all characters. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_CHARACTERS}.
textCapWords0x00002001 Can be combined with text and its variations to + request capitalization of the first character of every word. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_WORDS}.
textCapSentences0x00004001 Can be combined with text and its variations to + request capitalization of the first character of every sentence. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_SENTENCES}.
textAutoCorrect0x00008001 Can be combined with text and its variations to + request auto-correction of text being input. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_CORRECT}.
textAutoComplete0x00010001 Can be combined with text and its variations to + specify that this field will be doing its own auto-completion and + talking with the input method appropriately. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_COMPLETE}.
textMultiLine0x00020001 Can be combined with text and its variations to + allow multiple lines of text in the field. If this flag is not set, + the text field will be constrained to a single line. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_MULTI_LINE}.
textImeMultiLine0x00040001 Can be combined with text and its variations to + indicate that though the regular text view should not be multiple + lines, the IME should provide multiple lines if it can. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_IME_MULTI_LINE}.
textNoSuggestions0x00080001 Can be combined with text and its variations to + indicate that the IME should not show any + dictionary-based word suggestions. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_NO_SUGGESTIONS}.
textUri0x00000011 Text that will be used as a URI. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_URI}.
textEmailAddress0x00000021 Text that will be used as an e-mail address. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_ADDRESS}.
textEmailSubject0x00000031 Text that is being supplied as the subject of an e-mail. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_SUBJECT}.
textShortMessage0x00000041 Text that is the content of a short message. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_SHORT_MESSAGE}.
textLongMessage0x00000051 Text that is the content of a long message. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_LONG_MESSAGE}.
textPersonName0x00000061 Text that is the name of a person. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_PERSON_NAME}.
textPostalAddress0x00000071 Text that is being supplied as a postal mailing address. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_POSTAL_ADDRESS}.
textPassword0x00000081 Text that is a password. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_PASSWORD}.
textVisiblePassword0x00000091 Text that is a password that should be visible. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_VISIBLE_PASSWORD}.
textWebEditText0x000000a1 Text that is being supplied as text in a web form. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EDIT_TEXT}.
textFilter0x000000b1 Text that is filtering some other data. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_FILTER}.
textPhonetic0x000000c1 Text that is for phonetic pronunciation, such as a phonetic name + field in a contact entry. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_PHONETIC}.
textWebEmailAddress0x000000d1 Text that will be used as an e-mail address on a web form. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS}.
textWebPassword0x000000e1 Text that will be used as a password on a web form. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_PASSWORD}.
number0x00000002 A numeric only field. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_VARIATION_NORMAL}.
numberSigned0x00001002 Can be combined with number and its other options to + allow a signed number. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_FLAG_SIGNED}.
numberDecimal0x00002002 Can be combined with number and its other options to + allow a decimal (fractional) number. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_FLAG_DECIMAL}.
numberPassword0x00000012 A numeric password field. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_VARIATION_PASSWORD}.
phone0x00000003 For entering a phone number. Corresponds to + {@link android.text.InputType#TYPE_CLASS_PHONE}.
datetime0x00000004 For entering a date and time. Corresponds to + {@link android.text.InputType#TYPE_CLASS_DATETIME} | + {@link android.text.InputType#TYPE_DATETIME_VARIATION_NORMAL}.
date0x00000014 For entering a date. Corresponds to + {@link android.text.InputType#TYPE_CLASS_DATETIME} | + {@link android.text.InputType#TYPE_DATETIME_VARIATION_DATE}.
time0x00000024 For entering a time. Corresponds to + {@link android.text.InputType#TYPE_CLASS_DATETIME} | + {@link android.text.InputType#TYPE_DATETIME_VARIATION_TIME}.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#inputType}. + @attr name android:inputType + */ + public static final int AutoCompleteTextView_inputType = 4; + /** Drawable used to draw bitmaps. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #BitmapDrawable_alpha android:alpha} Specifies the alpha multiplier to apply to the base drawable.
{@link #BitmapDrawable_antialias android:antialias} Enables or disables antialiasing.
{@link #BitmapDrawable_autoMirrored android:autoMirrored} Indicates if the drawable needs to be mirrored when its layout direction is + RTL (right-to-left).
{@link #BitmapDrawable_dither android:dither} Enables or disables dithering of the bitmap if the bitmap does not have the + same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with + an RGB 565 screen).
{@link #BitmapDrawable_filter android:filter} Enables or disables bitmap filtering.
{@link #BitmapDrawable_gravity android:gravity} Defines the gravity for the bitmap.
{@link #BitmapDrawable_mipMap android:mipMap} Enables or disables the mipmap hint.
{@link #BitmapDrawable_src android:src} Identifier of the bitmap file.
{@link #BitmapDrawable_tileMode android:tileMode} Defines the tile mode.
{@link #BitmapDrawable_tileModeX android:tileModeX} Defines the horizontal tile mode.
{@link #BitmapDrawable_tileModeY android:tileModeY} Defines the vertical tile mode.
{@link #BitmapDrawable_tint android:tint} If set, specifies the color to apply to the drawable as a tint.
{@link #BitmapDrawable_tintMode android:tintMode} When a tint color is set, specifies its Porter-Duff blending mode.
+ @see #BitmapDrawable_alpha + @see #BitmapDrawable_antialias + @see #BitmapDrawable_autoMirrored + @see #BitmapDrawable_dither + @see #BitmapDrawable_filter + @see #BitmapDrawable_gravity + @see #BitmapDrawable_mipMap + @see #BitmapDrawable_src + @see #BitmapDrawable_tileMode + @see #BitmapDrawable_tileModeX + @see #BitmapDrawable_tileModeY + @see #BitmapDrawable_tint + @see #BitmapDrawable_tintMode + */ + public static final int[] BitmapDrawable = { + 0x010100af, 0x01010119, 0x0101011a, 0x0101011b, + 0x0101011c, 0x01010121, 0x01010201, 0x0101031f, + 0x010103cd, 0x010103ea, 0x010103fb, 0x01010477, + 0x01010478 + }; + /** +

+ @attr description + Specifies the alpha multiplier to apply to the base drawable. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#alpha}. + @attr name android:alpha + */ + public static final int BitmapDrawable_alpha = 7; + /** +

+ @attr description + Enables or disables antialiasing. Antialiasing can be used to smooth the + edges of a bitmap when rotated. Default value is false. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#antialias}. + @attr name android:antialias + */ + public static final int BitmapDrawable_antialias = 2; + /** +

+ @attr description + Indicates if the drawable needs to be mirrored when its layout direction is + RTL (right-to-left). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#autoMirrored}. + @attr name android:autoMirrored + */ + public static final int BitmapDrawable_autoMirrored = 9; + /** +

+ @attr description + Enables or disables dithering of the bitmap if the bitmap does not have the + same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with + an RGB 565 screen). Default value is true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dither}. + @attr name android:dither + */ + public static final int BitmapDrawable_dither = 4; + /** +

+ @attr description + Enables or disables bitmap filtering. Filtering is used when the bitmap is + shrunk or stretched to smooth its apperance. Default value is true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#filter}. + @attr name android:filter + */ + public static final int BitmapDrawable_filter = 3; + /** +

+ @attr description + Defines the gravity for the bitmap. The gravity indicates where to position + the drawable in its container if the bitmap is smaller than the container. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#gravity}. + @attr name android:gravity + */ + public static final int BitmapDrawable_gravity = 0; + /** +

+ @attr description + Enables or disables the mipmap hint. See + {@link android.graphics.Bitmap#setHasMipMap(boolean)} for more information. + Default value is false. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#mipMap}. + @attr name android:mipMap + */ + public static final int BitmapDrawable_mipMap = 8; + /** +

+ @attr description + Identifier of the bitmap file. This attribute is mandatory. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#src}. + @attr name android:src + */ + public static final int BitmapDrawable_src = 1; + /** +

+ @attr description + Defines the tile mode. When the tile mode is enabled, the bitmap is repeated. + Gravity is ignored when the tile mode is enabled. Default value is "disabled". + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
disabled-1 Do not tile the bitmap. This is the default value.
clamp0 Replicates the edge color.
repeat1 Repeats the bitmap in both direction.
mirror2 Repeats the shader's image horizontally and vertically, alternating + mirror images so that adjacent images always seam.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#tileMode}. + @attr name android:tileMode + */ + public static final int BitmapDrawable_tileMode = 6; + /** +

+ @attr description + Defines the horizontal tile mode. When the tile mode is enabled, the bitmap is repeated. + Gravity is ignored when the tile mode is enabled. Default value is "disabled". + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
disabled-1 Do not tile the bitmap. This is the default value.
clamp0 Replicates the edge color.
repeat1 Repeats the bitmap horizontally.
mirror2 Repeats the shader's image horizontally, alternating + mirror images so that adjacent images always seam.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#tileModeX}. + @attr name android:tileModeX + */ + public static final int BitmapDrawable_tileModeX = 11; + /** +

+ @attr description + Defines the vertical tile mode. When the tile mode is enabled, the bitmap is repeated. + Gravity is ignored when the tile mode is enabled. Default value is "disabled". + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
disabled-1 Do not tile the bitmap. This is the default value.
clamp0 Replicates the edge color.
repeat1 Repeats the bitmap vertically.
mirror2 Repeats the shader's image vertically, alternating + mirror images so that adjacent images always seam.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#tileModeY}. + @attr name android:tileModeY + */ + public static final int BitmapDrawable_tileModeY = 12; + /** +

+ @attr description + If set, specifies the color to apply to the drawable as a tint. By default, + no tint is applied. May be a color state list. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tint}. + @attr name android:tint + */ + public static final int BitmapDrawable_tint = 5; + /** +

+ @attr description + When a tint color is set, specifies its Porter-Duff blending mode. The + default value is src_in, which treats the drawable as an alpha mask. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#tintMode}. + @attr name android:tintMode + */ + public static final int BitmapDrawable_tintMode = 10; + /** Attributes that can be used with a Button. + */ + public static final int[] Button = { + + }; + /** @hide +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking android:allowStacking} Whether to automatically stack the buttons when there is not + enough space to lay them out side-by-side.
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x01160045 + }; + /** +

+ @attr description + Whether to automatically stack the buttons when there is not + enough space to lay them out side-by-side. +

This is a private symbol. + @attr name com.android.internal:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CalendarView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CalendarView_calendarViewMode android:calendarViewMode} @hide Which style of calendar delegate to use.
{@link #CalendarView_dateTextAppearance android:dateTextAppearance} The text appearance for the day numbers in the calendar grid.
{@link #CalendarView_dayHighlightColor android:dayHighlightColor} @hide The background color used for the day highlight indicator.
{@link #CalendarView_daySelectorColor android:daySelectorColor} @hide The background color used for the day selection indicator.
{@link #CalendarView_firstDayOfWeek android:firstDayOfWeek} The first day of week according to {@link java.util.Calendar}.
{@link #CalendarView_focusedMonthDateColor android:focusedMonthDateColor} @deprecated The color for the dates of the focused month.
{@link #CalendarView_maxDate android:maxDate} The minimal date shown by this calendar view in mm/dd/yyyy format.
{@link #CalendarView_minDate android:minDate} The minimal date shown by this calendar view in mm/dd/yyyy format.
{@link #CalendarView_monthTextAppearance android:monthTextAppearance} The text appearance for the month and year in the calendar header.
{@link #CalendarView_selectedDateVerticalBar android:selectedDateVerticalBar} @deprecated Drawable for the vertical bar shown at the beginning and at the end of the selected date.
{@link #CalendarView_selectedWeekBackgroundColor android:selectedWeekBackgroundColor} @deprecated The background color for the selected week.
{@link #CalendarView_showWeekNumber android:showWeekNumber} @deprecated Whether do show week numbers.
{@link #CalendarView_shownWeekCount android:shownWeekCount} @deprecated The number of weeks to be shown.
{@link #CalendarView_unfocusedMonthDateColor android:unfocusedMonthDateColor} @deprecated The color for the dates of an unfocused month.
{@link #CalendarView_weekDayTextAppearance android:weekDayTextAppearance} The text appearance for the week day abbreviation in the calendar header.
{@link #CalendarView_weekNumberColor android:weekNumberColor} @deprecated The color for the week numbers.
{@link #CalendarView_weekSeparatorLineColor android:weekSeparatorLineColor} @deprecated The color for the separator line between weeks.
+ @see #CalendarView_calendarViewMode + @see #CalendarView_dateTextAppearance + @see #CalendarView_dayHighlightColor + @see #CalendarView_daySelectorColor + @see #CalendarView_firstDayOfWeek + @see #CalendarView_focusedMonthDateColor + @see #CalendarView_maxDate + @see #CalendarView_minDate + @see #CalendarView_monthTextAppearance + @see #CalendarView_selectedDateVerticalBar + @see #CalendarView_selectedWeekBackgroundColor + @see #CalendarView_showWeekNumber + @see #CalendarView_shownWeekCount + @see #CalendarView_unfocusedMonthDateColor + @see #CalendarView_weekDayTextAppearance + @see #CalendarView_weekNumberColor + @see #CalendarView_weekSeparatorLineColor + */ + public static final int[] CalendarView = { + 0x0101033d, 0x0101033e, 0x0101033f, 0x01010340, + 0x01010341, 0x01010342, 0x01010343, 0x01010344, + 0x01010345, 0x01010346, 0x01010347, 0x01010348, + 0x01010349, 0x01160069, 0x0116006a, 0x0116006b, + 0x0116006c + }; + /** +

+ @attr description + @hide Which style of calendar delegate to use. +

This is a private symbol. + @attr name com.android.internal:calendarViewMode + */ + public static final int CalendarView_calendarViewMode = 16; + /** +

+ @attr description + The text appearance for the day numbers in the calendar grid. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dateTextAppearance}. + @attr name android:dateTextAppearance + */ + public static final int CalendarView_dateTextAppearance = 12; + /** +

+ @attr description + @hide The background color used for the day highlight indicator. +

This is a private symbol. + @attr name com.android.internal:dayHighlightColor + */ + public static final int CalendarView_dayHighlightColor = 15; + /** +

+ @attr description + @hide The background color used for the day selection indicator. +

This is a private symbol. + @attr name com.android.internal:daySelectorColor + */ + public static final int CalendarView_daySelectorColor = 14; + /** +

+ @attr description + The first day of week according to {@link java.util.Calendar}. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#firstDayOfWeek}. + @attr name android:firstDayOfWeek + */ + public static final int CalendarView_firstDayOfWeek = 0; + /** +

+ @attr description + @deprecated The color for the dates of the focused month. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#focusedMonthDateColor}. + @attr name android:focusedMonthDateColor + */ + @Deprecated + public static final int CalendarView_focusedMonthDateColor = 6; + /** +

+ @attr description + The minimal date shown by this calendar view in mm/dd/yyyy format. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxDate}. + @attr name android:maxDate + */ + public static final int CalendarView_maxDate = 3; + /** +

+ @attr description + The minimal date shown by this calendar view in mm/dd/yyyy format. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#minDate}. + @attr name android:minDate + */ + public static final int CalendarView_minDate = 2; + /** +

+ @attr description + The text appearance for the month and year in the calendar header. +

This is a private symbol. + @attr name com.android.internal:monthTextAppearance + */ + public static final int CalendarView_monthTextAppearance = 13; + /** +

+ @attr description + @deprecated Drawable for the vertical bar shown at the beginning and at the end of the selected date. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#selectedDateVerticalBar}. + @attr name android:selectedDateVerticalBar + */ + @Deprecated + public static final int CalendarView_selectedDateVerticalBar = 10; + /** +

+ @attr description + @deprecated The background color for the selected week. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#selectedWeekBackgroundColor}. + @attr name android:selectedWeekBackgroundColor + */ + @Deprecated + public static final int CalendarView_selectedWeekBackgroundColor = 5; + /** +

+ @attr description + @deprecated Whether do show week numbers. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#showWeekNumber}. + @attr name android:showWeekNumber + */ + @Deprecated + public static final int CalendarView_showWeekNumber = 1; + /** +

+ @attr description + @deprecated The number of weeks to be shown. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#shownWeekCount}. + @attr name android:shownWeekCount + */ + @Deprecated + public static final int CalendarView_shownWeekCount = 4; + /** +

+ @attr description + @deprecated The color for the dates of an unfocused month. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#unfocusedMonthDateColor}. + @attr name android:unfocusedMonthDateColor + */ + @Deprecated + public static final int CalendarView_unfocusedMonthDateColor = 7; + /** +

+ @attr description + The text appearance for the week day abbreviation in the calendar header. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#weekDayTextAppearance}. + @attr name android:weekDayTextAppearance + */ + public static final int CalendarView_weekDayTextAppearance = 11; + /** +

+ @attr description + @deprecated The color for the week numbers. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#weekNumberColor}. + @attr name android:weekNumberColor + */ + @Deprecated + public static final int CalendarView_weekNumberColor = 8; + /** +

+ @attr description + @deprecated The color for the separator line between weeks. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#weekSeparatorLineColor}. + @attr name android:weekSeparatorLineColor + */ + @Deprecated + public static final int CalendarView_weekSeparatorLineColor = 9; + /** Use changeBoundsas the root tag of the XML resource that + describes a {@link android.transition.ChangeBounds} transition. + The attributes of the {@link android.R.styleable#Transition Transition} + resource are available in addition to the specific attributes of ChangeBounds + described here. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ChangeBounds_resizeClip android:resizeClip} Resize the view by adjusting the clipBounds rather than changing the + dimensions of the view itself.
+ @see #ChangeBounds_resizeClip + */ + public static final int[] ChangeBounds = { + 0x010104cf + }; + /** +

+ @attr description + Resize the view by adjusting the clipBounds rather than changing the + dimensions of the view itself. The default value is false. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#resizeClip}. + @attr name android:resizeClip + */ + public static final int ChangeBounds_resizeClip = 0; + /** Use changeTransform as the root tag of the XML resource that + describes a {@link android.transition.ChangeTransform} transition. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ChangeTransform_reparent android:reparent} Tells ChangeTransform to track parent changes.
{@link #ChangeTransform_reparentWithOverlay android:reparentWithOverlay} A parent change should use an overlay or affect the transform of the + transitionining View.
+ @see #ChangeTransform_reparent + @see #ChangeTransform_reparentWithOverlay + */ + public static final int[] ChangeTransform = { + 0x010104bc, 0x010104bd + }; + /** +

+ @attr description + Tells ChangeTransform to track parent changes. Default is true. Corresponds to + {@link android.transition.ChangeTransform#setReparent(boolean)}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#reparent}. + @attr name android:reparent + */ + public static final int ChangeTransform_reparent = 0; + /** +

+ @attr description + A parent change should use an overlay or affect the transform of the + transitionining View. Default is true. Corresponds to + {@link android.transition.ChangeTransform#setReparentWithOverlay(boolean)}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#reparentWithOverlay}. + @attr name android:reparentWithOverlay + */ + public static final int ChangeTransform_reparentWithOverlay = 1; + /** Base attributes available to CheckBoxPreference. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CheckBoxPreference_disableDependentsState android:disableDependentsState} The state (true for on, or false for off) that causes dependents to be disabled.
{@link #CheckBoxPreference_summaryOff android:summaryOff} The summary for the Preference in a PreferenceActivity screen when the + CheckBoxPreference is unchecked.
{@link #CheckBoxPreference_summaryOn android:summaryOn} The summary for the Preference in a PreferenceActivity screen when the + CheckBoxPreference is checked.
+ @see #CheckBoxPreference_disableDependentsState + @see #CheckBoxPreference_summaryOff + @see #CheckBoxPreference_summaryOn + */ + public static final int[] CheckBoxPreference = { + 0x010101ef, 0x010101f0, 0x010101f1 + }; + /** +

+ @attr description + The state (true for on, or false for off) that causes dependents to be disabled. By default, + dependents will be disabled when this is unchecked, so the value of this preference is false. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#disableDependentsState}. + @attr name android:disableDependentsState + */ + public static final int CheckBoxPreference_disableDependentsState = 2; + /** +

+ @attr description + The summary for the Preference in a PreferenceActivity screen when the + CheckBoxPreference is unchecked. If separate on/off summaries are not + needed, the summary attribute can be used instead. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#summaryOff}. + @attr name android:summaryOff + */ + public static final int CheckBoxPreference_summaryOff = 1; + /** +

+ @attr description + The summary for the Preference in a PreferenceActivity screen when the + CheckBoxPreference is checked. If separate on/off summaries are not + needed, the summary attribute can be used instead. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#summaryOn}. + @attr name android:summaryOn + */ + public static final int CheckBoxPreference_summaryOn = 0; + /** Attributes that can be used with a CheckedTextView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #CheckedTextView_checkMark android:checkMark} Drawable used for the check mark graphic.
{@link #CheckedTextView_checkMarkGravity android:checkMarkGravity} Gravity for aligning a CheckedTextView's checkmark to one side or the other.
{@link #CheckedTextView_checkMarkTint android:checkMarkTint} Tint to apply to the check mark.
{@link #CheckedTextView_checkMarkTintMode android:checkMarkTintMode} Blending mode used to apply the check mark tint.
{@link #CheckedTextView_checked android:checked} Indicates the initial checked state of this text.
+ @see #CheckedTextView_checkMark + @see #CheckedTextView_checkMarkGravity + @see #CheckedTextView_checkMarkTint + @see #CheckedTextView_checkMarkTintMode + @see #CheckedTextView_checked + */ + public static final int[] CheckedTextView = { + 0x01010106, 0x01010108, 0x010104a7, 0x010104a8, + 0x01160047 + }; + /** +

+ @attr description + Drawable used for the check mark graphic. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#checkMark}. + @attr name android:checkMark + */ + public static final int CheckedTextView_checkMark = 1; + /** +

+ @attr description + Gravity for aligning a CheckedTextView's checkmark to one side or the other. +

This is a private symbol. + @attr name com.android.internal:checkMarkGravity + */ + public static final int CheckedTextView_checkMarkGravity = 4; + /** +

+ @attr description + Tint to apply to the check mark. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#checkMarkTint}. + @attr name android:checkMarkTint + */ + public static final int CheckedTextView_checkMarkTint = 2; + /** +

+ @attr description + Blending mode used to apply the check mark tint. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#checkMarkTintMode}. + @attr name android:checkMarkTintMode + */ + public static final int CheckedTextView_checkMarkTintMode = 3; + /** +

+ @attr description + Indicates the initial checked state of this text. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#checked}. + @attr name android:checked + */ + public static final int CheckedTextView_checked = 0; + /** Attributes that can be used with a Chronometer. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #Chronometer_format android:format} Format string: if specified, the Chronometer will display this + string, with the first "%s" replaced by the current timer value + in "MM:SS" or "H:MM:SS" form.
+ @see #Chronometer_format + */ + public static final int[] Chronometer = { + 0x01010105 + }; + /** +

+ @attr description + Format string: if specified, the Chronometer will display this + string, with the first "%s" replaced by the current timer value + in "MM:SS" or "H:MM:SS" form. + If no format string is specified, the Chronometer will simply display + "MM:SS" or "H:MM:SS". + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#format}. + @attr name android:format + */ + public static final int Chronometer_format = 0; + /** Attributes that can be used with a ClipDrawable. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ClipDrawable_clipOrientation android:clipOrientation} The orientation for the clip.
{@link #ClipDrawable_drawable android:drawable} Reference to a drawable resource to draw with the specified scale.
{@link #ClipDrawable_gravity android:gravity} Specifies where to clip within the drawable.
+ @see #ClipDrawable_clipOrientation + @see #ClipDrawable_drawable + @see #ClipDrawable_gravity + */ + public static final int[] ClipDrawable = { + 0x010100af, 0x01010199, 0x0101020a + }; + /** +

+ @attr description + The orientation for the clip. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
horizontal1 Clip the drawable horizontally.
vertical2 Clip the drawable vertically.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#clipOrientation}. + @attr name android:clipOrientation + */ + public static final int ClipDrawable_clipOrientation = 2; + /** +

+ @attr description + Reference to a drawable resource to draw with the specified scale. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawable}. + @attr name android:drawable + */ + public static final int ClipDrawable_drawable = 1; + /** +

+ @attr description + Specifies where to clip within the drawable. The default value is + left. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#gravity}. + @attr name android:gravity + */ + public static final int ClipDrawable_gravity = 0; + /** Drawable used to draw a single color. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ColorDrawable_color android:color} The color to use.
+ @see #ColorDrawable_color + */ + public static final int[] ColorDrawable = { + 0x010101a5 + }; + /** +

+ @attr description + The color to use. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int ColorDrawable_color = 0; + /** Attributes that can be assigned to a ColorStateList item. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ColorStateListItem_alpha android:alpha} Alpha multiplier applied to the base color.
{@link #ColorStateListItem_color android:color} Base color for this state.
+ @see #ColorStateListItem_alpha + @see #ColorStateListItem_color + */ + public static final int[] ColorStateListItem = { + 0x010101a5, 0x0101031f + }; + /** +

+ @attr description + Alpha multiplier applied to the base color. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#alpha}. + @attr name android:alpha + */ + public static final int ColorStateListItem_alpha = 1; + /** +

+ @attr description + Base color for this state. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int ColorStateListItem_color = 0; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #CompoundButton_button android:button} Drawable used for the button graphic (e.
{@link #CompoundButton_buttonTint android:buttonTint} Tint to apply to the button graphic.
{@link #CompoundButton_buttonTintMode android:buttonTintMode} Blending mode used to apply the button graphic tint.
{@link #CompoundButton_checked android:checked} Indicates the initial checked state of this button.
+ @see #CompoundButton_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + @see #CompoundButton_checked + */ + public static final int[] CompoundButton = { + 0x01010106, 0x01010107, 0x0101046f, 0x01010470 + }; + /** +

+ @attr description + Drawable used for the button graphic (e.g. checkbox, radio button, etc). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#button}. + @attr name android:button + */ + public static final int CompoundButton_button = 1; + /** +

+ @attr description + Tint to apply to the button graphic. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#buttonTint}. + @attr name android:buttonTint + */ + public static final int CompoundButton_buttonTint = 2; + /** +

+ @attr description + Blending mode used to apply the button graphic tint. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#buttonTintMode}. + @attr name android:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 3; + /** +

+ @attr description + Indicates the initial checked state of this button. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#checked}. + @attr name android:checked + */ + public static final int CompoundButton_checked = 0; + /** Maps a specific contact data MIME-type to styling information. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ContactsDataKind_allContactsName android:allContactsName} Resource representing the term "All Contacts" (e.
{@link #ContactsDataKind_detailColumn android:detailColumn} Column in data table that contains details for this data.
{@link #ContactsDataKind_detailSocialSummary android:detailSocialSummary} Flag indicating that detail should be built from SocialProvider.
{@link #ContactsDataKind_icon android:icon} Icon used to represent data of this kind.
{@link #ContactsDataKind_mimeType android:mimeType} Mime-type handled by this mapping.
{@link #ContactsDataKind_summaryColumn android:summaryColumn} Column in data table that summarizes this data.
+ @see #ContactsDataKind_allContactsName + @see #ContactsDataKind_detailColumn + @see #ContactsDataKind_detailSocialSummary + @see #ContactsDataKind_icon + @see #ContactsDataKind_mimeType + @see #ContactsDataKind_summaryColumn + */ + public static final int[] ContactsDataKind = { + 0x01010002, 0x01010026, 0x010102a2, 0x010102a3, + 0x010102a4, 0x010102cc + }; + /** +

+ @attr description + Resource representing the term "All Contacts" (e.g. "All Friends" or + "All connections"). Optional (Default is "All Contacts"). + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#allContactsName}. + @attr name android:allContactsName + */ + public static final int ContactsDataKind_allContactsName = 5; + /** +

+ @attr description + Column in data table that contains details for this data. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#detailColumn}. + @attr name android:detailColumn + */ + public static final int ContactsDataKind_detailColumn = 3; + /** +

+ @attr description + Flag indicating that detail should be built from SocialProvider. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#detailSocialSummary}. + @attr name android:detailSocialSummary + */ + public static final int ContactsDataKind_detailSocialSummary = 4; + /** +

+ @attr description + Icon used to represent data of this kind. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int ContactsDataKind_icon = 0; + /** +

+ @attr description + Mime-type handled by this mapping. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#mimeType}. + @attr name android:mimeType + */ + public static final int ContactsDataKind_mimeType = 1; + /** +

+ @attr description + Column in data table that summarizes this data. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#summaryColumn}. + @attr name android:summaryColumn + */ + public static final int ContactsDataKind_summaryColumn = 2; + /** Attributes that can be used with a CycleInterpolator. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #CycleInterpolator_cycles android:cycles}
+ @see #CycleInterpolator_cycles + */ + public static final int[] CycleInterpolator = { + 0x010101d4 + }; + /** +

This symbol is the offset where the {@link android.R.attr#cycles} + attribute's value can be found in the {@link #CycleInterpolator} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:cycles + */ + public static final int CycleInterpolator_cycles = 0; + /** Attributes that can be used with a DatePicker. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #DatePicker_calendarTextColor android:calendarTextColor} The text color list of the calendar.
{@link #DatePicker_calendarViewShown android:calendarViewShown} Whether the calendar view is shown.
{@link #DatePicker_datePickerMode android:datePickerMode} Defines the look of the widget.
{@link #DatePicker_dayOfWeekBackground android:dayOfWeekBackground} The background color for the header's day of week.
{@link #DatePicker_dayOfWeekTextAppearance android:dayOfWeekTextAppearance} The text color for the header's day of week.
{@link #DatePicker_endYear android:endYear} The last year (inclusive), for example "2010".
{@link #DatePicker_firstDayOfWeek android:firstDayOfWeek} The first day of week according to {@link java.util.Calendar}.
{@link #DatePicker_headerBackground android:headerBackground} The background for the selected date header.
{@link #DatePicker_headerDayOfMonthTextAppearance android:headerDayOfMonthTextAppearance} The text appearance for the day of month (ex.
{@link #DatePicker_headerMonthTextAppearance android:headerMonthTextAppearance} The text appearance for the month (ex.
{@link #DatePicker_headerTextColor android:headerTextColor} The text color for the selected date header text, ex.
{@link #DatePicker_headerYearTextAppearance android:headerYearTextAppearance} The text appearance for the year (ex.
{@link #DatePicker_internalLayout android:internalLayout} @hide The layout of the date picker.
{@link #DatePicker_legacyLayout android:legacyLayout} @hide The layout of the legacy DatePicker.
{@link #DatePicker_maxDate android:maxDate} The maximal date shown by this calendar view in mm/dd/yyyy format.
{@link #DatePicker_minDate android:minDate} The minimal date shown by this calendar view in mm/dd/yyyy format.
{@link #DatePicker_spinnersShown android:spinnersShown} Whether the spinners are shown.
{@link #DatePicker_startYear android:startYear} The first year (inclusive), for example "1940".
{@link #DatePicker_yearListItemActivatedTextAppearance android:yearListItemActivatedTextAppearance} @hide The list year's text appearance in the list when activated.
{@link #DatePicker_yearListItemTextAppearance android:yearListItemTextAppearance} The list year's text appearance in the list.
{@link #DatePicker_yearListSelectorColor android:yearListSelectorColor} The list year's selected circle color in the list.
+ @see #DatePicker_calendarTextColor + @see #DatePicker_calendarViewShown + @see #DatePicker_datePickerMode + @see #DatePicker_dayOfWeekBackground + @see #DatePicker_dayOfWeekTextAppearance + @see #DatePicker_endYear + @see #DatePicker_firstDayOfWeek + @see #DatePicker_headerBackground + @see #DatePicker_headerDayOfMonthTextAppearance + @see #DatePicker_headerMonthTextAppearance + @see #DatePicker_headerTextColor + @see #DatePicker_headerYearTextAppearance + @see #DatePicker_internalLayout + @see #DatePicker_legacyLayout + @see #DatePicker_maxDate + @see #DatePicker_minDate + @see #DatePicker_spinnersShown + @see #DatePicker_startYear + @see #DatePicker_yearListItemActivatedTextAppearance + @see #DatePicker_yearListItemTextAppearance + @see #DatePicker_yearListSelectorColor + */ + public static final int[] DatePicker = { + 0x0101012f, 0x0101017c, 0x0101017d, 0x0101033d, + 0x0101033f, 0x01010340, 0x0101034b, 0x0101034c, + 0x01010494, 0x01010495, 0x01010496, 0x01010497, + 0x01010498, 0x01010499, 0x0101049a, 0x0101049b, + 0x010104b3, 0x01160061, 0x01160062, 0x01160063, + 0x01160076 + }; + /** +

+ @attr description + The text color list of the calendar. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#calendarTextColor}. + @attr name android:calendarTextColor + */ + public static final int DatePicker_calendarTextColor = 15; + /** +

+ @attr description + Whether the calendar view is shown. Only valid for "spinner" mode. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#calendarViewShown}. + @attr name android:calendarViewShown + */ + public static final int DatePicker_calendarViewShown = 7; + /** +

+ @attr description + Defines the look of the widget. Prior to the L release, the only choice was + spinner. As of L, with the Material theme selected, the default layout is calendar, + but this attribute can be used to force spinner to be used instead. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
spinner1 Date picker with spinner controls to select the date.
calendar2 Date picker with calendar to select the date.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#datePickerMode}. + @attr name android:datePickerMode + */ + public static final int DatePicker_datePickerMode = 16; + /** +

+ @attr description + The background color for the header's day of week. + {@deprecated No longer displayed.} + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dayOfWeekBackground}. + @attr name android:dayOfWeekBackground + */ + @Deprecated + public static final int DatePicker_dayOfWeekBackground = 8; + /** +

+ @attr description + The text color for the header's day of week. + {@deprecated No longer displayed.} + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dayOfWeekTextAppearance}. + @attr name android:dayOfWeekTextAppearance + */ + @Deprecated + public static final int DatePicker_dayOfWeekTextAppearance = 9; + /** +

+ @attr description + The last year (inclusive), for example "2010". + {@deprecated Use maxDate instead.} + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endYear}. + @attr name android:endYear + */ + @Deprecated + public static final int DatePicker_endYear = 2; + /** +

+ @attr description + The first day of week according to {@link java.util.Calendar}. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#firstDayOfWeek}. + @attr name android:firstDayOfWeek + */ + public static final int DatePicker_firstDayOfWeek = 3; + /** +

+ @attr description + The background for the selected date header. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#headerBackground}. + @attr name android:headerBackground + */ + public static final int DatePicker_headerBackground = 0; + /** +

+ @attr description + The text appearance for the day of month (ex. 28) in the selected date header. + {@deprecated Use headerTextColor instead.} + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#headerDayOfMonthTextAppearance}. + @attr name android:headerDayOfMonthTextAppearance + */ + @Deprecated + public static final int DatePicker_headerDayOfMonthTextAppearance = 11; + /** +

+ @attr description + The text appearance for the month (ex. May) in the selected date header. + {@deprecated Use headerTextColor instead.} + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#headerMonthTextAppearance}. + @attr name android:headerMonthTextAppearance + */ + @Deprecated + public static final int DatePicker_headerMonthTextAppearance = 10; + /** +

+ @attr description + The text color for the selected date header text, ex. "2014" or + "Tue, Mar 18". This should be a color state list where the + activated state will be used when the year picker or day picker is + active. +

This is a private symbol. + @attr name com.android.internal:headerTextColor + */ + public static final int DatePicker_headerTextColor = 18; + /** +

+ @attr description + The text appearance for the year (ex. 2014) in the selected date header. + {@deprecated Use headerTextColor instead.} + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#headerYearTextAppearance}. + @attr name android:headerYearTextAppearance + */ + @Deprecated + public static final int DatePicker_headerYearTextAppearance = 12; + /** +

+ @attr description + @hide The layout of the date picker. +

This is a private symbol. + @attr name com.android.internal:internalLayout + */ + public static final int DatePicker_internalLayout = 17; + /** +

+ @attr description + @hide The layout of the legacy DatePicker. +

This is a private symbol. + @attr name com.android.internal:legacyLayout + */ + public static final int DatePicker_legacyLayout = 20; + /** +

+ @attr description + The maximal date shown by this calendar view in mm/dd/yyyy format. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxDate}. + @attr name android:maxDate + */ + public static final int DatePicker_maxDate = 5; + /** +

+ @attr description + The minimal date shown by this calendar view in mm/dd/yyyy format. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#minDate}. + @attr name android:minDate + */ + public static final int DatePicker_minDate = 4; + /** +

+ @attr description + Whether the spinners are shown. Only valid for "spinner" mode. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#spinnersShown}. + @attr name android:spinnersShown + */ + public static final int DatePicker_spinnersShown = 6; + /** +

+ @attr description + The first year (inclusive), for example "1940". + {@deprecated Use minDate instead.} + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startYear}. + @attr name android:startYear + */ + @Deprecated + public static final int DatePicker_startYear = 1; + /** +

+ @attr description + @hide The list year's text appearance in the list when activated. +

This is a private symbol. + @attr name com.android.internal:yearListItemActivatedTextAppearance + */ + public static final int DatePicker_yearListItemActivatedTextAppearance = 19; + /** +

+ @attr description + The list year's text appearance in the list. + {@deprecated Use yearListTextColor. } + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#yearListItemTextAppearance}. + @attr name android:yearListItemTextAppearance + */ + @Deprecated + public static final int DatePicker_yearListItemTextAppearance = 13; + /** +

+ @attr description + The list year's selected circle color in the list. + {@deprecated No longer displayed.} + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#yearListSelectorColor}. + @attr name android:yearListSelectorColor + */ + @Deprecated + public static final int DatePicker_yearListSelectorColor = 14; + /** Attributes that can be used with a DecelerateInterpolator. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #DecelerateInterpolator_factor android:factor} This is the amount of acceleration to add when easing out.
+ @see #DecelerateInterpolator_factor + */ + public static final int[] DecelerateInterpolator = { + 0x010101d3 + }; + /** +

+ @attr description + This is the amount of acceleration to add when easing out. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#factor}. + @attr name android:factor + */ + public static final int DecelerateInterpolator_factor = 0; + /** Use device-admin as the root tag of the XML resource that + describes a + {@link android.app.admin.DeviceAdminReceiver}, which is + referenced from its + {@link android.app.admin.DeviceAdminReceiver#DEVICE_ADMIN_META_DATA} + meta-data entry. Described here are the attributes that can be + included in that tag. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #DeviceAdmin_visible android:visible} Control whether the admin is visible to the user, even when it + is not enabled.
+ @see #DeviceAdmin_visible + */ + public static final int[] DeviceAdmin = { + 0x01010194 + }; + /** +

+ @attr description + Control whether the admin is visible to the user, even when it + is not enabled. This is true by default. You may want to make + it false if your admin does not make sense to be turned on + unless some explicit action happens in your app. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#visible}. + @attr name android:visible + */ + public static final int DeviceAdmin_visible = 0; + /** Base attributes available to DialogPreference. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #DialogPreference_dialogIcon android:dialogIcon} The icon for the dialog.
{@link #DialogPreference_dialogLayout android:dialogLayout} A layout to be used as the content View for the dialog.
{@link #DialogPreference_dialogMessage android:dialogMessage} The message in the dialog.
{@link #DialogPreference_dialogTitle android:dialogTitle} The title in the dialog.
{@link #DialogPreference_negativeButtonText android:negativeButtonText} The negative button text for the dialog.
{@link #DialogPreference_positiveButtonText android:positiveButtonText} The positive button text for the dialog.
+ @see #DialogPreference_dialogIcon + @see #DialogPreference_dialogLayout + @see #DialogPreference_dialogMessage + @see #DialogPreference_dialogTitle + @see #DialogPreference_negativeButtonText + @see #DialogPreference_positiveButtonText + */ + public static final int[] DialogPreference = { + 0x010101f2, 0x010101f3, 0x010101f4, 0x010101f5, + 0x010101f6, 0x010101f7 + }; + /** +

+ @attr description + The icon for the dialog. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dialogIcon}. + @attr name android:dialogIcon + */ + public static final int DialogPreference_dialogIcon = 2; + /** +

+ @attr description + A layout to be used as the content View for the dialog. By default, this shouldn't + be needed. If a custom DialogPreference is required, this should be set. For example, + the EditTextPreference uses a layout with an EditText as this attribute. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dialogLayout}. + @attr name android:dialogLayout + */ + public static final int DialogPreference_dialogLayout = 5; + /** +

+ @attr description + The message in the dialog. If a dialogLayout is provided and contains + a TextView with ID android:id/message, this message will be placed in there. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dialogMessage}. + @attr name android:dialogMessage + */ + public static final int DialogPreference_dialogMessage = 1; + /** +

+ @attr description + The title in the dialog. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dialogTitle}. + @attr name android:dialogTitle + */ + public static final int DialogPreference_dialogTitle = 0; + /** +

+ @attr description + The negative button text for the dialog. Set to @null to hide the negative button. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#negativeButtonText}. + @attr name android:negativeButtonText + */ + public static final int DialogPreference_negativeButtonText = 4; + /** +

+ @attr description + The positive button text for the dialog. Set to @null to hide the positive button. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#positiveButtonText}. + @attr name android:positiveButtonText + */ + public static final int DialogPreference_positiveButtonText = 3; + /** Base attributes that are available to all Drawable objects. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #Drawable_autoMirrored android:autoMirrored} Indicates if the drawable needs to be mirrored when its layout direction is + RTL (right-to-left).
{@link #Drawable_visible android:visible} Provides initial visibility state of the drawable; the default + value is false.
+ @see #Drawable_autoMirrored + @see #Drawable_visible + */ + public static final int[] Drawable = { + 0x01010194, 0x010103ea + }; + /** +

+ @attr description + Indicates if the drawable needs to be mirrored when its layout direction is + RTL (right-to-left). See + {@link android.graphics.drawable.Drawable#setAutoMirrored}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#autoMirrored}. + @attr name android:autoMirrored + */ + public static final int Drawable_autoMirrored = 1; + /** +

+ @attr description + Provides initial visibility state of the drawable; the default + value is false. See + {@link android.graphics.drawable.Drawable#setVisible}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#visible}. + @attr name android:visible + */ + public static final int Drawable_visible = 0; + /** Describes the corners for the rectangle shape of a GradientDrawable. + This can be used to render rounded corners. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #DrawableCorners_bottomLeftRadius android:bottomLeftRadius} Radius of the bottom left corner.
{@link #DrawableCorners_bottomRightRadius android:bottomRightRadius} Radius of the bottom right corner.
{@link #DrawableCorners_radius android:radius} Defines the radius of the four corners.
{@link #DrawableCorners_topLeftRadius android:topLeftRadius} Radius of the top left corner.
{@link #DrawableCorners_topRightRadius android:topRightRadius} Radius of the top right corner.
+ @see #DrawableCorners_bottomLeftRadius + @see #DrawableCorners_bottomRightRadius + @see #DrawableCorners_radius + @see #DrawableCorners_topLeftRadius + @see #DrawableCorners_topRightRadius + */ + public static final int[] DrawableCorners = { + 0x010101a8, 0x010101a9, 0x010101aa, 0x010101ab, + 0x010101ac + }; + /** +

+ @attr description + Radius of the bottom left corner. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#bottomLeftRadius}. + @attr name android:bottomLeftRadius + */ + public static final int DrawableCorners_bottomLeftRadius = 3; + /** +

+ @attr description + Radius of the bottom right corner. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#bottomRightRadius}. + @attr name android:bottomRightRadius + */ + public static final int DrawableCorners_bottomRightRadius = 4; + /** +

+ @attr description + Defines the radius of the four corners. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#radius}. + @attr name android:radius + */ + public static final int DrawableCorners_radius = 0; + /** +

+ @attr description + Radius of the top left corner. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#topLeftRadius}. + @attr name android:topLeftRadius + */ + public static final int DrawableCorners_topLeftRadius = 1; + /** +

+ @attr description + Radius of the top right corner. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#topRightRadius}. + @attr name android:topRightRadius + */ + public static final int DrawableCorners_topRightRadius = 2; + /** Drawable states. + The mapping of Drawable states to a particular drawables is specified + in the "state" elements of a Widget's "selector" element. + Possible values: +

    +
  • "state_focused" +
  • "state_window_focused" +
  • "state_enabled" +
  • "state_checked" +
  • "state_selected" +
  • "state_active" +
  • "state_single" +
  • "state_first" +
  • "state_mid" +
  • "state_last" +
  • "state_only" +
  • "state_pressed" +
  • "state_activated" +
  • "state_error" +
  • "state_circle" +
  • "state_rect" +
  • "state_grow" +
  • "state_move" +
  • "state_hovered" +
  • "state_drag_can_accept" +
  • "state_drag_hovered" +
  • "state_accessibility_focused" +
+

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #DrawableStates_state_accelerated android:state_accelerated} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + indicating that the Drawable is in a view that is hardware accelerated.
{@link #DrawableStates_state_accessibility_focused android:state_accessibility_focused} State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} + indicating that a View has accessibility focus.
{@link #DrawableStates_state_activated android:state_activated} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view or its parent has been "activated" meaning the user has currently + marked it as being of interest.
{@link #DrawableStates_state_active android:state_active} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}.
{@link #DrawableStates_state_checkable android:state_checkable} State identifier indicating that the object may display a check mark.
{@link #DrawableStates_state_checked android:state_checked} State identifier indicating that the object is currently checked.
{@link #DrawableStates_state_drag_can_accept android:state_drag_can_accept} State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} + indicating that the Drawable is in a view that is capable of accepting a drop of + the content currently being manipulated in a drag-and-drop operation.
{@link #DrawableStates_state_drag_hovered android:state_drag_hovered} State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} + indicating that a drag operation (for which the Drawable's view is a valid recipient) + is currently positioned over the Drawable.
{@link #DrawableStates_state_enabled android:state_enabled} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view is enabled.
{@link #DrawableStates_state_first android:state_first} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}.
{@link #DrawableStates_state_focused android:state_focused} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view has input focus.
{@link #DrawableStates_state_hovered android:state_hovered} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a pointer is hovering over the view.
{@link #DrawableStates_state_last android:state_last} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}.
{@link #DrawableStates_state_middle android:state_middle} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}.
{@link #DrawableStates_state_pressed android:state_pressed} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when the user is pressing down in a view.
{@link #DrawableStates_state_selected android:state_selected} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view (or one of its parents) is currently selected.
{@link #DrawableStates_state_single android:state_single} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}.
{@link #DrawableStates_state_window_focused android:state_window_focused} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view's window has input focus.
+ @see #DrawableStates_state_accelerated + @see #DrawableStates_state_accessibility_focused + @see #DrawableStates_state_activated + @see #DrawableStates_state_active + @see #DrawableStates_state_checkable + @see #DrawableStates_state_checked + @see #DrawableStates_state_drag_can_accept + @see #DrawableStates_state_drag_hovered + @see #DrawableStates_state_enabled + @see #DrawableStates_state_first + @see #DrawableStates_state_focused + @see #DrawableStates_state_hovered + @see #DrawableStates_state_last + @see #DrawableStates_state_middle + @see #DrawableStates_state_pressed + @see #DrawableStates_state_selected + @see #DrawableStates_state_single + @see #DrawableStates_state_window_focused + */ + public static final int[] DrawableStates = { + 0x0101009c, 0x0101009d, 0x0101009e, 0x0101009f, + 0x010100a0, 0x010100a1, 0x010100a2, 0x010100a3, + 0x010100a4, 0x010100a5, 0x010100a6, 0x010100a7, + 0x010102fe, 0x0101031b, 0x01010367, 0x01010368, + 0x01010369, 0x01160081 + }; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + indicating that the Drawable is in a view that is hardware accelerated. + This means that the device can at least render a full-screen scaled + bitmap with one layer of text and bitmaps composited on top of it + at 60fps. When this is set, the colorBackgroundCacheHint will be + ignored even if it specifies a solid color, since that optimization + is not needed. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_accelerated}. + @attr name android:state_accelerated + */ + public static final int DrawableStates_state_accelerated = 13; + /** +

+ @attr description + State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} + indicating that a View has accessibility focus. +

This is a private symbol. + @attr name com.android.internal:state_accessibility_focused + */ + public static final int DrawableStates_state_accessibility_focused = 17; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view or its parent has been "activated" meaning the user has currently + marked it as being of interest. This is an alternative representation of + state_checked for when the state should be propagated down the view hierarchy. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_activated}. + @attr name android:state_activated + */ + public static final int DrawableStates_state_activated = 12; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_active}. + @attr name android:state_active + */ + public static final int DrawableStates_state_active = 6; + /** +

+ @attr description + State identifier indicating that the object may display a check mark. + See {@link android.R.attr#state_checked} for the identifier that indicates whether it is + actually checked. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_checkable}. + @attr name android:state_checkable + */ + public static final int DrawableStates_state_checkable = 3; + /** +

+ @attr description + State identifier indicating that the object is currently checked. See + {@link android.R.attr#state_checkable} for an additional identifier that can indicate if + any object may ever display a check, regardless of whether state_checked is + currently set. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_checked}. + @attr name android:state_checked + */ + public static final int DrawableStates_state_checked = 4; + /** +

+ @attr description + State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} + indicating that the Drawable is in a view that is capable of accepting a drop of + the content currently being manipulated in a drag-and-drop operation. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_drag_can_accept}. + @attr name android:state_drag_can_accept + */ + public static final int DrawableStates_state_drag_can_accept = 15; + /** +

+ @attr description + State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} + indicating that a drag operation (for which the Drawable's view is a valid recipient) + is currently positioned over the Drawable. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_drag_hovered}. + @attr name android:state_drag_hovered + */ + public static final int DrawableStates_state_drag_hovered = 16; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view is enabled. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_enabled}. + @attr name android:state_enabled + */ + public static final int DrawableStates_state_enabled = 2; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_first}. + @attr name android:state_first + */ + public static final int DrawableStates_state_first = 8; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view has input focus. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_focused}. + @attr name android:state_focused + */ + public static final int DrawableStates_state_focused = 0; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a pointer is hovering over the view. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_hovered}. + @attr name android:state_hovered + */ + public static final int DrawableStates_state_hovered = 14; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_last}. + @attr name android:state_last + */ + public static final int DrawableStates_state_last = 10; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_middle}. + @attr name android:state_middle + */ + public static final int DrawableStates_state_middle = 9; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when the user is pressing down in a view. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_pressed}. + @attr name android:state_pressed + */ + public static final int DrawableStates_state_pressed = 11; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view (or one of its parents) is currently selected. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_selected}. + @attr name android:state_selected + */ + public static final int DrawableStates_state_selected = 5; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_single}. + @attr name android:state_single + */ + public static final int DrawableStates_state_single = 7; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view's window has input focus. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_window_focused}. + @attr name android:state_window_focused + */ + public static final int DrawableStates_state_window_focused = 1; + /** Use dream as the root tag of the XML resource that + describes an + {@link android.service.dreams.DreamService}, which is + referenced from its + {@link android.service.dreams.DreamService#DREAM_META_DATA} + meta-data entry. Described here are the attributes that can be + included in that tag. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #Dream_settingsActivity android:settingsActivity} Component name of an activity that allows the user to modify + the settings for this dream.
+ @see #Dream_settingsActivity + */ + public static final int[] Dream = { + 0x01010225 + }; + /** +

+ @attr description + Component name of an activity that allows the user to modify + the settings for this dream. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#settingsActivity}. + @attr name android:settingsActivity + */ + public static final int Dream_settingsActivity = 0; + /** Used as a filter array on the theme to pull out only the EdgeEffect-relevant bits. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #EdgeEffect_colorEdgeEffect android:colorEdgeEffect} The color applied to the edge effect on scrolling containers.
+ @see #EdgeEffect_colorEdgeEffect + */ + public static final int[] EdgeEffect = { + 0x010104ce + }; + /** +

+ @attr description + The color applied to the edge effect on scrolling containers. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorEdgeEffect}. + @attr name android:colorEdgeEffect + */ + public static final int EdgeEffect_colorEdgeEffect = 0; + /** Attributes that can be used with a EditText. + */ + public static final int[] EditText = { + + }; + /** @hide For internal use only. Use only as directed. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #EpicenterTranslateClipReveal_interpolatorX android:interpolatorX}
{@link #EpicenterTranslateClipReveal_interpolatorY android:interpolatorY}
{@link #EpicenterTranslateClipReveal_interpolatorZ android:interpolatorZ}
+ @see #EpicenterTranslateClipReveal_interpolatorX + @see #EpicenterTranslateClipReveal_interpolatorY + @see #EpicenterTranslateClipReveal_interpolatorZ + */ + public static final int[] EpicenterTranslateClipReveal = { + 0x0116007d, 0x0116007e, 0x0116007f + }; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#interpolatorX} + attribute's value can be found in the {@link #EpicenterTranslateClipReveal} array. + @attr name com.android.internal:interpolatorX + */ + public static final int EpicenterTranslateClipReveal_interpolatorX = 0; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#interpolatorY} + attribute's value can be found in the {@link #EpicenterTranslateClipReveal} array. + @attr name com.android.internal:interpolatorY + */ + public static final int EpicenterTranslateClipReveal_interpolatorY = 1; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#interpolatorZ} + attribute's value can be found in the {@link #EpicenterTranslateClipReveal} array. + @attr name com.android.internal:interpolatorZ + */ + public static final int EpicenterTranslateClipReveal_interpolatorZ = 2; + /** State array representing an expandable list child's indicator. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ExpandableListChildIndicatorState_state_last android:state_last} State identifier indicating the child is the last child within its group.
+ @see #ExpandableListChildIndicatorState_state_last + */ + public static final int[] ExpandableListChildIndicatorState = { + 0x010100a6 + }; + /** +

+ @attr description + State identifier indicating the child is the last child within its group. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_last}. + @attr name android:state_last + */ + public static final int ExpandableListChildIndicatorState_state_last = 0; + /** State array representing an expandable list group's indicator. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ExpandableListGroupIndicatorState_state_empty android:state_empty} State identifier indicating the group is empty (has no children).
{@link #ExpandableListGroupIndicatorState_state_expanded android:state_expanded} State identifier indicating the group is expanded.
+ @see #ExpandableListGroupIndicatorState_state_empty + @see #ExpandableListGroupIndicatorState_state_expanded + */ + public static final int[] ExpandableListGroupIndicatorState = { + 0x010100a8, 0x010100a9 + }; + /** +

+ @attr description + State identifier indicating the group is empty (has no children). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_empty}. + @attr name android:state_empty + */ + public static final int ExpandableListGroupIndicatorState_state_empty = 1; + /** +

+ @attr description + State identifier indicating the group is expanded. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_expanded}. + @attr name android:state_expanded + */ + public static final int ExpandableListGroupIndicatorState_state_expanded = 0; + /** Attributes that can be used with a ExpandableListView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #ExpandableListView_childDivider android:childDivider} Drawable or color that is used as a divider for children.
{@link #ExpandableListView_childIndicator android:childIndicator} Indicator shown beside the child View.
{@link #ExpandableListView_childIndicatorEnd android:childIndicatorEnd} The end bound for a child's indicator.
{@link #ExpandableListView_childIndicatorLeft android:childIndicatorLeft} The left bound for a child's indicator.
{@link #ExpandableListView_childIndicatorRight android:childIndicatorRight} The right bound for a child's indicator.
{@link #ExpandableListView_childIndicatorStart android:childIndicatorStart} The start bound for a child's indicator.
{@link #ExpandableListView_groupIndicator android:groupIndicator} Indicator shown beside the group View.
{@link #ExpandableListView_indicatorEnd android:indicatorEnd} The end bound for an item's indicator.
{@link #ExpandableListView_indicatorLeft android:indicatorLeft} The left bound for an item's indicator.
{@link #ExpandableListView_indicatorRight android:indicatorRight} The right bound for an item's indicator.
{@link #ExpandableListView_indicatorStart android:indicatorStart} The start bound for an item's indicator.
+ @see #ExpandableListView_childDivider + @see #ExpandableListView_childIndicator + @see #ExpandableListView_childIndicatorEnd + @see #ExpandableListView_childIndicatorLeft + @see #ExpandableListView_childIndicatorRight + @see #ExpandableListView_childIndicatorStart + @see #ExpandableListView_groupIndicator + @see #ExpandableListView_indicatorEnd + @see #ExpandableListView_indicatorLeft + @see #ExpandableListView_indicatorRight + @see #ExpandableListView_indicatorStart + */ + public static final int[] ExpandableListView = { + 0x0101010b, 0x0101010c, 0x0101010d, 0x0101010e, + 0x0101010f, 0x01010110, 0x01010111, 0x010103d1, + 0x010103d2, 0x010103d3, 0x010103d4 + }; + /** +

+ @attr description + Drawable or color that is used as a divider for children. (It will drawn + below and above child items.) The height of this will be the same as + the height of the normal list item divider. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#childDivider}. + @attr name android:childDivider + */ + public static final int ExpandableListView_childDivider = 6; + /** +

+ @attr description + Indicator shown beside the child View. This can be a stateful Drawable. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#childIndicator}. + @attr name android:childIndicator + */ + public static final int ExpandableListView_childIndicator = 1; + /** +

+ @attr description + The end bound for a child's indicator. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#childIndicatorEnd}. + @attr name android:childIndicatorEnd + */ + public static final int ExpandableListView_childIndicatorEnd = 10; + /** +

+ @attr description + The left bound for a child's indicator. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#childIndicatorLeft}. + @attr name android:childIndicatorLeft + */ + public static final int ExpandableListView_childIndicatorLeft = 4; + /** +

+ @attr description + The right bound for a child's indicator. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#childIndicatorRight}. + @attr name android:childIndicatorRight + */ + public static final int ExpandableListView_childIndicatorRight = 5; + /** +

+ @attr description + The start bound for a child's indicator. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#childIndicatorStart}. + @attr name android:childIndicatorStart + */ + public static final int ExpandableListView_childIndicatorStart = 9; + /** +

+ @attr description + Indicator shown beside the group View. This can be a stateful Drawable. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#groupIndicator}. + @attr name android:groupIndicator + */ + public static final int ExpandableListView_groupIndicator = 0; + /** +

+ @attr description + The end bound for an item's indicator. To specify a right bound specific to children, + use childIndicatorEnd. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#indicatorEnd}. + @attr name android:indicatorEnd + */ + public static final int ExpandableListView_indicatorEnd = 8; + /** +

+ @attr description + The left bound for an item's indicator. To specify a left bound specific to children, + use childIndicatorLeft. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#indicatorLeft}. + @attr name android:indicatorLeft + */ + public static final int ExpandableListView_indicatorLeft = 2; + /** +

+ @attr description + The right bound for an item's indicator. To specify a right bound specific to children, + use childIndicatorRight. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#indicatorRight}. + @attr name android:indicatorRight + */ + public static final int ExpandableListView_indicatorRight = 3; + /** +

+ @attr description + The start bound for an item's indicator. To specify a start bound specific to children, + use childIndicatorStart. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#indicatorStart}. + @attr name android:indicatorStart + */ + public static final int ExpandableListView_indicatorStart = 7; + /** An extra data value to place into a an extra/name value pair held + in a Bundle, as per {@link android.os.Bundle}. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #Extra_name android:name} Required name of the extra data.
{@link #Extra_value android:value} Concrete value to put for this named extra data.
+ @see #Extra_name + @see #Extra_value + */ + public static final int[] Extra = { + 0x01010003, 0x01010024 + }; + /** +

+ @attr description + Required name of the extra data. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int Extra_name = 0; + /** +

+ @attr description + Concrete value to put for this named extra data. + + +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a boolean value, either "true" or "false". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

May be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#value}. + @attr name android:value + */ + public static final int Extra_value = 1; + /** Use fadeas the root tag of the XML resource that + describes a {@link android.transition.Fade Fade} transition. + The attributes of the {@link android.R.styleable#Transition Transition} + resource are available in addition to the specific attributes of Fade + described here. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #Fade_fadingMode android:fadingMode} Equivalent to transitionVisibilityMode, fadingMode works only + with the Fade transition.
+ @see #Fade_fadingMode + */ + public static final int[] Fade = { + 0x010103e1 + }; + /** +

+ @attr description + Equivalent to transitionVisibilityMode, fadingMode works only + with the Fade transition. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
fade_in1 Fade will only fade appearing items in.
fade_out2 Fade will only fade disappearing items out.
fade_in_out3 Fade will fade appearing items in and disappearing items out.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#fadingMode}. + @attr name android:fadingMode + */ + public static final int Fade_fadingMode = 0; + /** Attributes that can be used with a FastScroll. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #FastScroll_backgroundLeft android:backgroundLeft} Drawable used for the section header preview when left-aligned.
{@link #FastScroll_backgroundRight android:backgroundRight} Drawable used for the section header preview when right-aligned.
{@link #FastScroll_minHeight android:minHeight} Minimum height of the section header preview.
{@link #FastScroll_minWidth android:minWidth} Minimum width of the section header preview.
{@link #FastScroll_padding android:padding} Padding for the section header preview.
{@link #FastScroll_position android:position} Position of section header preview.
{@link #FastScroll_textAppearance android:textAppearance} Default appearance of text: color, typeface, size, and style.
{@link #FastScroll_textColor android:textColor} Color of text (usually same as colorForeground).
{@link #FastScroll_textSize android:textSize} Size of text.
{@link #FastScroll_thumbDrawable android:thumbDrawable} Drawable used for the scroll bar thumb.
{@link #FastScroll_thumbMinHeight android:thumbMinHeight} Minimum height of the thumb.
{@link #FastScroll_thumbMinWidth android:thumbMinWidth} Minimum width of the thumb.
{@link #FastScroll_thumbPosition android:thumbPosition} Position of thumb in relation to the track.
{@link #FastScroll_trackDrawable android:trackDrawable} Drawable used for the scroll bar track.
+ @see #FastScroll_backgroundLeft + @see #FastScroll_backgroundRight + @see #FastScroll_minHeight + @see #FastScroll_minWidth + @see #FastScroll_padding + @see #FastScroll_position + @see #FastScroll_textAppearance + @see #FastScroll_textColor + @see #FastScroll_textSize + @see #FastScroll_thumbDrawable + @see #FastScroll_thumbMinHeight + @see #FastScroll_thumbMinWidth + @see #FastScroll_thumbPosition + @see #FastScroll_trackDrawable + */ + public static final int[] FastScroll = { + 0x01010034, 0x01010095, 0x01010098, 0x010100d5, + 0x0101013f, 0x01010140, 0x010104e5, 0x01160048, + 0x01160049, 0x0116004a, 0x0116004b, 0x0116004c, + 0x0116004d, 0x0116004e + }; + /** +

+ @attr description + Drawable used for the section header preview when left-aligned. +

This is a private symbol. + @attr name com.android.internal:backgroundLeft + */ + public static final int FastScroll_backgroundLeft = 12; + /** +

+ @attr description + Drawable used for the section header preview when right-aligned. +

This is a private symbol. + @attr name com.android.internal:backgroundRight + */ + public static final int FastScroll_backgroundRight = 11; + /** +

+ @attr description + Minimum height of the section header preview. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#minHeight}. + @attr name android:minHeight + */ + public static final int FastScroll_minHeight = 5; + /** +

+ @attr description + Minimum width of the section header preview. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#minWidth}. + @attr name android:minWidth + */ + public static final int FastScroll_minWidth = 4; + /** +

+ @attr description + Padding for the section header preview. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#padding}. + @attr name android:padding + */ + public static final int FastScroll_padding = 3; + /** +

+ @attr description + Position of section header preview. +

This is a private symbol. + @attr name com.android.internal:position + */ + public static final int FastScroll_position = 13; + /** +

+ @attr description + Default appearance of text: color, typeface, size, and style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearance}. + @attr name android:textAppearance + */ + public static final int FastScroll_textAppearance = 0; + /** +

+ @attr description + Color of text (usually same as colorForeground). + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColor}. + @attr name android:textColor + */ + public static final int FastScroll_textColor = 2; + /** +

+ @attr description + Size of text. Recommended dimension type for text is "sp" for scaled-pixels (example: 15sp). + Supported values include the following:

+

    +
  • px Pixels
  • +
  • sp Scaled pixels (scaled to relative pixel size on screen). See {@link android.util.DisplayMetrics} for more information.
  • +
  • pt Points
  • +
  • dip Device independent pixels. See {@link android.util.DisplayMetrics} for more information.
  • +
+ + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textSize}. + @attr name android:textSize + */ + public static final int FastScroll_textSize = 1; + /** +

+ @attr description + Drawable used for the scroll bar thumb. +

This is a private symbol. + @attr name com.android.internal:thumbDrawable + */ + public static final int FastScroll_thumbDrawable = 7; + /** +

+ @attr description + Minimum height of the thumb. +

This is a private symbol. + @attr name com.android.internal:thumbMinHeight + */ + public static final int FastScroll_thumbMinHeight = 9; + /** +

+ @attr description + Minimum width of the thumb. +

This is a private symbol. + @attr name com.android.internal:thumbMinWidth + */ + public static final int FastScroll_thumbMinWidth = 8; + /** +

+ @attr description + Position of thumb in relation to the track. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
midpoint0 The thumb's midpoint is anchored to the track. At its + extremes, the thumb will extend half-way outside the + track.
inside1 The thumb is entirely inside the track. At its extremes, + the thumb will be contained entirely within the track.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#thumbPosition}. + @attr name android:thumbPosition + */ + public static final int FastScroll_thumbPosition = 6; + /** +

+ @attr description + Drawable used for the scroll bar track. +

This is a private symbol. + @attr name com.android.internal:trackDrawable + */ + public static final int FastScroll_trackDrawable = 10; + /** Attributes that can be used with <fragment> + tags inside of the layout of an Activity. This instantiates + the given {@link android.app.Fragment} and inserts its content + view into the current location in the layout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #Fragment_fragmentAllowEnterTransitionOverlap android:fragmentAllowEnterTransitionOverlap} Sets whether the enter and exit transitions should overlap when transitioning + forward.
{@link #Fragment_fragmentAllowReturnTransitionOverlap android:fragmentAllowReturnTransitionOverlap} Sets whether the enter and exit transitions should overlap when transitioning + because of popping the back stack.
{@link #Fragment_fragmentEnterTransition android:fragmentEnterTransition} The Transition that will be used to move Views into the initial scene.
{@link #Fragment_fragmentExitTransition android:fragmentExitTransition} The Transition that will be used to move Views out of the scene when the + fragment is removed, hidden, or detached when not popping the back stack.
{@link #Fragment_fragmentReenterTransition android:fragmentReenterTransition} The Transition that will be used to move Views in to the scene when returning due + to popping a back stack.
{@link #Fragment_fragmentReturnTransition android:fragmentReturnTransition} The Transition that will be used to move Views out of the scene when the Fragment is + preparing to be removed, hidden, or detached because of popping the back stack.
{@link #Fragment_fragmentSharedElementEnterTransition android:fragmentSharedElementEnterTransition} The Transition that will be used for shared elements transferred into the content + Scene.
{@link #Fragment_fragmentSharedElementReturnTransition android:fragmentSharedElementReturnTransition} The Transition that will be used for shared elements transferred back during a + pop of the back stack.
{@link #Fragment_id android:id} Supply an identifier name for the top-level view, to later retrieve it + with {@link android.view.View#findViewById View.findViewById()} or + {@link android.app.Activity#findViewById Activity.findViewById()}.
{@link #Fragment_name android:name} Supply the name of the fragment class to instantiate.
{@link #Fragment_tag android:tag} Supply a tag for the top-level view containing a String, to be retrieved + later with {@link android.view.View#getTag View.getTag()} or + searched for with {@link android.view.View#findViewWithTag + View.findViewWithTag()}.
+ @see #Fragment_fragmentAllowEnterTransitionOverlap + @see #Fragment_fragmentAllowReturnTransitionOverlap + @see #Fragment_fragmentEnterTransition + @see #Fragment_fragmentExitTransition + @see #Fragment_fragmentReenterTransition + @see #Fragment_fragmentReturnTransition + @see #Fragment_fragmentSharedElementEnterTransition + @see #Fragment_fragmentSharedElementReturnTransition + @see #Fragment_id + @see #Fragment_name + @see #Fragment_tag + */ + public static final int[] Fragment = { + 0x01010003, 0x010100d0, 0x010100d1, 0x010104c2, + 0x010104c3, 0x010104c4, 0x010104c5, 0x010104c6, + 0x010104c7, 0x010104c8, 0x010104c9 + }; + /** +

+ @attr description + Sets whether the enter and exit transitions should overlap when transitioning + forward. + Corresponds to {@link android.app.Fragment#setAllowEnterTransitionOverlap( + boolean)} + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fragmentAllowEnterTransitionOverlap}. + @attr name android:fragmentAllowEnterTransitionOverlap + */ + public static final int Fragment_fragmentAllowEnterTransitionOverlap = 9; + /** +

+ @attr description + Sets whether the enter and exit transitions should overlap when transitioning + because of popping the back stack. + Corresponds to {@link android.app.Fragment#setAllowReturnTransitionOverlap( + boolean)} + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fragmentAllowReturnTransitionOverlap}. + @attr name android:fragmentAllowReturnTransitionOverlap + */ + public static final int Fragment_fragmentAllowReturnTransitionOverlap = 10; + /** +

+ @attr description + The Transition that will be used to move Views into the initial scene. + Corresponds to {@link android.app.Fragment#setEnterTransition( + android.transition.Transition)} + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fragmentEnterTransition}. + @attr name android:fragmentEnterTransition + */ + public static final int Fragment_fragmentEnterTransition = 4; + /** +

+ @attr description + The Transition that will be used to move Views out of the scene when the + fragment is removed, hidden, or detached when not popping the back stack. + Corresponds to {@link android.app.Fragment#setExitTransition( + android.transition.Transition)} + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fragmentExitTransition}. + @attr name android:fragmentExitTransition + */ + public static final int Fragment_fragmentExitTransition = 3; + /** +

+ @attr description + The Transition that will be used to move Views in to the scene when returning due + to popping a back stack. + Corresponds to {@link android.app.Fragment#setReenterTransition( + android.transition.Transition)} + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fragmentReenterTransition}. + @attr name android:fragmentReenterTransition + */ + public static final int Fragment_fragmentReenterTransition = 8; + /** +

+ @attr description + The Transition that will be used to move Views out of the scene when the Fragment is + preparing to be removed, hidden, or detached because of popping the back stack. + Corresponds to {@link android.app.Fragment#setReturnTransition( + android.transition.Transition)} + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fragmentReturnTransition}. + @attr name android:fragmentReturnTransition + */ + public static final int Fragment_fragmentReturnTransition = 6; + /** +

+ @attr description + The Transition that will be used for shared elements transferred into the content + Scene. + Corresponds to {@link android.app.Fragment#setSharedElementEnterTransition( + android.transition.Transition)} + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fragmentSharedElementEnterTransition}. + @attr name android:fragmentSharedElementEnterTransition + */ + public static final int Fragment_fragmentSharedElementEnterTransition = 5; + /** +

+ @attr description + The Transition that will be used for shared elements transferred back during a + pop of the back stack. This Transition acts in the leaving Fragment. + Corresponds to {@link android.app.Fragment#setSharedElementReturnTransition( + android.transition.Transition)} + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fragmentSharedElementReturnTransition}. + @attr name android:fragmentSharedElementReturnTransition + */ + public static final int Fragment_fragmentSharedElementReturnTransition = 7; + /** +

+ @attr description + Supply an identifier name for the top-level view, to later retrieve it + with {@link android.view.View#findViewById View.findViewById()} or + {@link android.app.Activity#findViewById Activity.findViewById()}. + This must be a + resource reference; typically you set this using the + @+ syntax to create a new ID resources. + For example: android:id="@+id/my_id" which + allows you to later retrieve the view + with findViewById(R.id.my_id). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#id}. + @attr name android:id + */ + public static final int Fragment_id = 1; + /** +

+ @attr description + Supply the name of the fragment class to instantiate. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int Fragment_name = 0; + /** +

+ @attr description + Supply a tag for the top-level view containing a String, to be retrieved + later with {@link android.view.View#getTag View.getTag()} or + searched for with {@link android.view.View#findViewWithTag + View.findViewWithTag()}. It is generally preferable to use + IDs (through the android:id attribute) instead of tags because + they are faster and allow for compile-time type checking. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tag}. + @attr name android:tag + */ + public static final int Fragment_tag = 2; + /** Fragment animation class attributes. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #FragmentAnimation_fragmentCloseEnterAnimation android:fragmentCloseEnterAnimation}
{@link #FragmentAnimation_fragmentCloseExitAnimation android:fragmentCloseExitAnimation}
{@link #FragmentAnimation_fragmentFadeEnterAnimation android:fragmentFadeEnterAnimation}
{@link #FragmentAnimation_fragmentFadeExitAnimation android:fragmentFadeExitAnimation}
{@link #FragmentAnimation_fragmentOpenEnterAnimation android:fragmentOpenEnterAnimation}
{@link #FragmentAnimation_fragmentOpenExitAnimation android:fragmentOpenExitAnimation}
+ @see #FragmentAnimation_fragmentCloseEnterAnimation + @see #FragmentAnimation_fragmentCloseExitAnimation + @see #FragmentAnimation_fragmentFadeEnterAnimation + @see #FragmentAnimation_fragmentFadeExitAnimation + @see #FragmentAnimation_fragmentOpenEnterAnimation + @see #FragmentAnimation_fragmentOpenExitAnimation + */ + public static final int[] FragmentAnimation = { + 0x010102e5, 0x010102e6, 0x010102e7, 0x010102e8, + 0x010102e9, 0x010102ea + }; + /** +

This symbol is the offset where the {@link android.R.attr#fragmentCloseEnterAnimation} + attribute's value can be found in the {@link #FragmentAnimation} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:fragmentCloseEnterAnimation + */ + public static final int FragmentAnimation_fragmentCloseEnterAnimation = 2; + /** +

This symbol is the offset where the {@link android.R.attr#fragmentCloseExitAnimation} + attribute's value can be found in the {@link #FragmentAnimation} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:fragmentCloseExitAnimation + */ + public static final int FragmentAnimation_fragmentCloseExitAnimation = 3; + /** +

This symbol is the offset where the {@link android.R.attr#fragmentFadeEnterAnimation} + attribute's value can be found in the {@link #FragmentAnimation} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:fragmentFadeEnterAnimation + */ + public static final int FragmentAnimation_fragmentFadeEnterAnimation = 4; + /** +

This symbol is the offset where the {@link android.R.attr#fragmentFadeExitAnimation} + attribute's value can be found in the {@link #FragmentAnimation} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:fragmentFadeExitAnimation + */ + public static final int FragmentAnimation_fragmentFadeExitAnimation = 5; + /** +

This symbol is the offset where the {@link android.R.attr#fragmentOpenEnterAnimation} + attribute's value can be found in the {@link #FragmentAnimation} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:fragmentOpenEnterAnimation + */ + public static final int FragmentAnimation_fragmentOpenEnterAnimation = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fragmentOpenExitAnimation} + attribute's value can be found in the {@link #FragmentAnimation} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:fragmentOpenExitAnimation + */ + public static final int FragmentAnimation_fragmentOpenExitAnimation = 1; + /** Attributes that can be used with <FragmentBreadCrumbs> + tags. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #FragmentBreadCrumbs_gravity android:gravity} Specifies how an object should position its content, on both the X and Y axes, + within its own bounds.
{@link #FragmentBreadCrumbs_itemColor android:itemColor}
{@link #FragmentBreadCrumbs_itemLayout android:itemLayout}
+ @see #FragmentBreadCrumbs_gravity + @see #FragmentBreadCrumbs_itemColor + @see #FragmentBreadCrumbs_itemLayout + */ + public static final int[] FragmentBreadCrumbs = { + 0x010100af, 0x011600a6, 0x011600a7 + }; + /** +

+ @attr description + Specifies how an object should position its content, on both the X and Y axes, + within its own bounds. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#gravity}. + @attr name android:gravity + */ + public static final int FragmentBreadCrumbs_gravity = 0; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#itemColor} + attribute's value can be found in the {@link #FragmentBreadCrumbs} array. + @attr name com.android.internal:itemColor + */ + public static final int FragmentBreadCrumbs_itemColor = 2; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#itemLayout} + attribute's value can be found in the {@link #FragmentBreadCrumbs} array. + @attr name com.android.internal:itemLayout + */ + public static final int FragmentBreadCrumbs_itemLayout = 1; + /** Attributes that can be used with a FrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #FrameLayout_measureAllChildren android:measureAllChildren} Determines whether to measure all children or just those in + the VISIBLE or INVISIBLE state when measuring.
+ @see #FrameLayout_measureAllChildren + */ + public static final int[] FrameLayout = { + 0x0101010a + }; + /** +

+ @attr description + Determines whether to measure all children or just those in + the VISIBLE or INVISIBLE state when measuring. Defaults to false. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#measureAllChildren}. + @attr name android:measureAllChildren + */ + public static final int FrameLayout_measureAllChildren = 0; + /** Attributes that can be used with a FrameLayout_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #FrameLayout_Layout_layout_gravity android:layout_gravity} Standard gravity constant that a child supplies to its parent.
+ @see #FrameLayout_Layout_layout_gravity + */ + public static final int[] FrameLayout_Layout = { + 0x010100b3 + }; + /** +

+ @attr description + Standard gravity constant that a child supplies to its parent. + Defines how the child view should be positioned, on both the X and Y axes, within its enclosing layout. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_gravity}. + @attr name android:layout_gravity + */ + public static final int FrameLayout_Layout_layout_gravity = 0; + /** Attributes that can be used with a Gallery. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #Gallery_animationDuration android:animationDuration} Sets how long a transition animation should run (in milliseconds) + when layout has changed.
{@link #Gallery_gravity android:gravity} Specifies how an object should position its content, on both the X and Y axes, + within its own bounds.
{@link #Gallery_spacing android:spacing}
{@link #Gallery_unselectedAlpha android:unselectedAlpha} Sets the alpha on the items that are not selected.
+ @see #Gallery_animationDuration + @see #Gallery_gravity + @see #Gallery_spacing + @see #Gallery_unselectedAlpha + */ + public static final int[] Gallery = { + 0x010100af, 0x01010112, 0x01010113, 0x0101020e + }; + /** +

+ @attr description + Sets how long a transition animation should run (in milliseconds) + when layout has changed. Only relevant if animation is turned on. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#animationDuration}. + @attr name android:animationDuration + */ + public static final int Gallery_animationDuration = 1; + /** +

+ @attr description + Specifies how an object should position its content, on both the X and Y axes, + within its own bounds. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#gravity}. + @attr name android:gravity + */ + public static final int Gallery_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#spacing} + attribute's value can be found in the {@link #Gallery} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:spacing + */ + public static final int Gallery_spacing = 2; + /** +

+ @attr description + Sets the alpha on the items that are not selected. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#unselectedAlpha}. + @attr name android:unselectedAlpha + */ + public static final int Gallery_unselectedAlpha = 3; + /** GestureOverlayView specific attributes. These attributes are used to configure + a GestureOverlayView from XML. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + +
AttributeDescription
{@link #GestureOverlayView_eventsInterceptionEnabled android:eventsInterceptionEnabled} Defines whether the overlay should intercept the motion events when a gesture + is recognized.
{@link #GestureOverlayView_fadeDuration android:fadeDuration} Duration, in milliseconds, of the fade out effect after the user is done + drawing a gesture.
{@link #GestureOverlayView_fadeEnabled android:fadeEnabled} Defines whether the gesture will automatically fade out after being recognized.
{@link #GestureOverlayView_fadeOffset android:fadeOffset} Time, in milliseconds, to wait before the gesture fades out after the user + is done drawing it.
{@link #GestureOverlayView_gestureColor android:gestureColor} Color used to draw a gesture.
{@link #GestureOverlayView_gestureStrokeAngleThreshold android:gestureStrokeAngleThreshold} Minimum curve angle a stroke must contain before it is recognized as a gesture.
{@link #GestureOverlayView_gestureStrokeLengthThreshold android:gestureStrokeLengthThreshold} Minimum length of a stroke before it is recognized as a gesture.
{@link #GestureOverlayView_gestureStrokeSquarenessThreshold android:gestureStrokeSquarenessThreshold} Squareness threshold of a stroke before it is recognized as a gesture.
{@link #GestureOverlayView_gestureStrokeType android:gestureStrokeType} Defines the type of strokes that define a gesture.
{@link #GestureOverlayView_gestureStrokeWidth android:gestureStrokeWidth} Width of the stroke used to draw the gesture.
{@link #GestureOverlayView_orientation android:orientation} Indicates whether horizontal (when the orientation is vertical) or vertical + (when orientation is horizontal) strokes automatically define a gesture.
{@link #GestureOverlayView_uncertainGestureColor android:uncertainGestureColor} Color used to draw the user's strokes until we are sure it's a gesture.
+ @see #GestureOverlayView_eventsInterceptionEnabled + @see #GestureOverlayView_fadeDuration + @see #GestureOverlayView_fadeEnabled + @see #GestureOverlayView_fadeOffset + @see #GestureOverlayView_gestureColor + @see #GestureOverlayView_gestureStrokeAngleThreshold + @see #GestureOverlayView_gestureStrokeLengthThreshold + @see #GestureOverlayView_gestureStrokeSquarenessThreshold + @see #GestureOverlayView_gestureStrokeType + @see #GestureOverlayView_gestureStrokeWidth + @see #GestureOverlayView_orientation + @see #GestureOverlayView_uncertainGestureColor + */ + public static final int[] GestureOverlayView = { + 0x010100c4, 0x01010274, 0x01010275, 0x01010276, + 0x01010277, 0x01010278, 0x01010279, 0x0101027a, + 0x0101027b, 0x0101027c, 0x0101027d, 0x0101027e + }; + /** +

+ @attr description + Defines whether the overlay should intercept the motion events when a gesture + is recognized. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#eventsInterceptionEnabled}. + @attr name android:eventsInterceptionEnabled + */ + public static final int GestureOverlayView_eventsInterceptionEnabled = 10; + /** +

+ @attr description + Duration, in milliseconds, of the fade out effect after the user is done + drawing a gesture. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fadeDuration}. + @attr name android:fadeDuration + */ + public static final int GestureOverlayView_fadeDuration = 5; + /** +

+ @attr description + Defines whether the gesture will automatically fade out after being recognized. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fadeEnabled}. + @attr name android:fadeEnabled + */ + public static final int GestureOverlayView_fadeEnabled = 11; + /** +

+ @attr description + Time, in milliseconds, to wait before the gesture fades out after the user + is done drawing it. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fadeOffset}. + @attr name android:fadeOffset + */ + public static final int GestureOverlayView_fadeOffset = 4; + /** +

+ @attr description + Color used to draw a gesture. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#gestureColor}. + @attr name android:gestureColor + */ + public static final int GestureOverlayView_gestureColor = 2; + /** +

+ @attr description + Minimum curve angle a stroke must contain before it is recognized as a gesture. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#gestureStrokeAngleThreshold}. + @attr name android:gestureStrokeAngleThreshold + */ + public static final int GestureOverlayView_gestureStrokeAngleThreshold = 9; + /** +

+ @attr description + Minimum length of a stroke before it is recognized as a gesture. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#gestureStrokeLengthThreshold}. + @attr name android:gestureStrokeLengthThreshold + */ + public static final int GestureOverlayView_gestureStrokeLengthThreshold = 7; + /** +

+ @attr description + Squareness threshold of a stroke before it is recognized as a gesture. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#gestureStrokeSquarenessThreshold}. + @attr name android:gestureStrokeSquarenessThreshold + */ + public static final int GestureOverlayView_gestureStrokeSquarenessThreshold = 8; + /** +

+ @attr description + Defines the type of strokes that define a gesture. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
single0 A gesture is made of only one stroke.
multiple1 A gesture is made of multiple strokes.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#gestureStrokeType}. + @attr name android:gestureStrokeType + */ + public static final int GestureOverlayView_gestureStrokeType = 6; + /** +

+ @attr description + Width of the stroke used to draw the gesture. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#gestureStrokeWidth}. + @attr name android:gestureStrokeWidth + */ + public static final int GestureOverlayView_gestureStrokeWidth = 1; + /** +

+ @attr description + Indicates whether horizontal (when the orientation is vertical) or vertical + (when orientation is horizontal) strokes automatically define a gesture. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
horizontal0 Defines an horizontal widget.
vertical1 Defines a vertical widget.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#orientation}. + @attr name android:orientation + */ + public static final int GestureOverlayView_orientation = 0; + /** +

+ @attr description + Color used to draw the user's strokes until we are sure it's a gesture. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#uncertainGestureColor}. + @attr name android:uncertainGestureColor + */ + public static final int GestureOverlayView_uncertainGestureColor = 3; + /** Attributes that can be used with a GlowPadView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #GlowPadView_directionDescriptions android:directionDescriptions} Reference to an array resource that be used to announce the directions with targets around the circle.
{@link #GlowPadView_targetDescriptions android:targetDescriptions} Reference to an array resource that be used as description for the targets around the circle.
+ @see #GlowPadView_directionDescriptions + @see #GlowPadView_targetDescriptions + */ + public static final int[] GlowPadView = { + 0x010103a0, 0x010103a1 + }; + /** +

+ @attr description + Reference to an array resource that be used to announce the directions with targets around the circle. + {@deprecated Removed.} + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#directionDescriptions}. + @attr name android:directionDescriptions + */ + @Deprecated + public static final int GlowPadView_directionDescriptions = 1; + /** +

+ @attr description + Reference to an array resource that be used as description for the targets around the circle. + {@deprecated Removed.} + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#targetDescriptions}. + @attr name android:targetDescriptions + */ + @Deprecated + public static final int GlowPadView_targetDescriptions = 0; + /** Drawable used to render a geometric shape, with a gradient or a solid color. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #GradientDrawable_dither android:dither} Enables or disables dithering.
{@link #GradientDrawable_innerRadius android:innerRadius} Inner radius of the ring.
{@link #GradientDrawable_innerRadiusRatio android:innerRadiusRatio} Inner radius of the ring expressed as a ratio of the ring's width.
{@link #GradientDrawable_opticalInsetBottom android:opticalInsetBottom} Bottom optical inset.
{@link #GradientDrawable_opticalInsetLeft android:opticalInsetLeft} Left optical inset.
{@link #GradientDrawable_opticalInsetRight android:opticalInsetRight} Right optical inset.
{@link #GradientDrawable_opticalInsetTop android:opticalInsetTop} Top optical inset.
{@link #GradientDrawable_shape android:shape} Indicates what shape to fill with a gradient.
{@link #GradientDrawable_thickness android:thickness} Thickness of the ring.
{@link #GradientDrawable_thicknessRatio android:thicknessRatio} Thickness of the ring expressed as a ratio of the ring's width.
{@link #GradientDrawable_tint android:tint} If set, specifies the color to apply to the drawable as a tint.
{@link #GradientDrawable_tintMode android:tintMode} When a tint color is set, specifies its Porter-Duff blending mode.
{@link #GradientDrawable_useLevel android:useLevel} Indicates whether the drawable's level affects the way the gradient is drawn.
{@link #GradientDrawable_visible android:visible} Indicates whether the drawable should intially be visible.
+ @see #GradientDrawable_dither + @see #GradientDrawable_innerRadius + @see #GradientDrawable_innerRadiusRatio + @see #GradientDrawable_opticalInsetBottom + @see #GradientDrawable_opticalInsetLeft + @see #GradientDrawable_opticalInsetRight + @see #GradientDrawable_opticalInsetTop + @see #GradientDrawable_shape + @see #GradientDrawable_thickness + @see #GradientDrawable_thicknessRatio + @see #GradientDrawable_tint + @see #GradientDrawable_tintMode + @see #GradientDrawable_useLevel + @see #GradientDrawable_visible + */ + public static final int[] GradientDrawable = { + 0x0101011c, 0x01010121, 0x01010194, 0x0101019a, + 0x0101019b, 0x0101019c, 0x0101019f, 0x0101025f, + 0x01010260, 0x010103fb, 0x01160079, 0x0116007a, + 0x0116007b, 0x0116007c + }; + /** +

+ @attr description + Enables or disables dithering. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dither}. + @attr name android:dither + */ + public static final int GradientDrawable_dither = 0; + /** +

+ @attr description + Inner radius of the ring. When defined, innerRadiusRatio is ignored. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#innerRadius}. + @attr name android:innerRadius + */ + public static final int GradientDrawable_innerRadius = 7; + /** +

+ @attr description + Inner radius of the ring expressed as a ratio of the ring's width. For instance, + if innerRadiusRatio=9, then the inner radius equals the ring's width divided by 9. + This value is ignored if innerRadius is defined. Default value is 9. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#innerRadiusRatio}. + @attr name android:innerRadiusRatio + */ + public static final int GradientDrawable_innerRadiusRatio = 4; + /** +

+ @attr description + Bottom optical inset. + @hide Until optical insets are fully supported. +

This is a private symbol. + @attr name com.android.internal:opticalInsetBottom + */ + public static final int GradientDrawable_opticalInsetBottom = 13; + /** +

+ @attr description + Left optical inset. + @hide Until optical insets are fully supported. +

This is a private symbol. + @attr name com.android.internal:opticalInsetLeft + */ + public static final int GradientDrawable_opticalInsetLeft = 10; + /** +

+ @attr description + Right optical inset. + @hide Until optical insets are fully supported. +

This is a private symbol. + @attr name com.android.internal:opticalInsetRight + */ + public static final int GradientDrawable_opticalInsetRight = 12; + /** +

+ @attr description + Top optical inset. + @hide Until optical insets are fully supported. +

This is a private symbol. + @attr name com.android.internal:opticalInsetTop + */ + public static final int GradientDrawable_opticalInsetTop = 11; + /** +

+ @attr description + Indicates what shape to fill with a gradient. + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
rectangle0 Rectangle shape, with optional rounder corners.
oval1 Oval shape.
line2 Line shape.
ring3 Ring shape.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#shape}. + @attr name android:shape + */ + public static final int GradientDrawable_shape = 3; + /** +

+ @attr description + Thickness of the ring. When defined, thicknessRatio is ignored. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#thickness}. + @attr name android:thickness + */ + public static final int GradientDrawable_thickness = 8; + /** +

+ @attr description + Thickness of the ring expressed as a ratio of the ring's width. For instance, + if thicknessRatio=3, then the thickness equals the ring's width divided by 3. + This value is ignored if innerRadius is defined. Default value is 3. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#thicknessRatio}. + @attr name android:thicknessRatio + */ + public static final int GradientDrawable_thicknessRatio = 5; + /** +

+ @attr description + If set, specifies the color to apply to the drawable as a tint. By default, + no tint is applied. May be a color state list. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tint}. + @attr name android:tint + */ + public static final int GradientDrawable_tint = 1; + /** +

+ @attr description + When a tint color is set, specifies its Porter-Duff blending mode. The + default value is src_in, which treats the drawable as an alpha mask. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#tintMode}. + @attr name android:tintMode + */ + public static final int GradientDrawable_tintMode = 9; + /** +

+ @attr description + Indicates whether the drawable's level affects the way the gradient is drawn. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#useLevel}. + @attr name android:useLevel + */ + public static final int GradientDrawable_useLevel = 6; + /** +

+ @attr description + Indicates whether the drawable should intially be visible. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#visible}. + @attr name android:visible + */ + public static final int GradientDrawable_visible = 2; + /** Used to describe the gradient used to fill the shape of a GradientDrawable. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #GradientDrawableGradient_angle android:angle} Angle of the gradient.
{@link #GradientDrawableGradient_centerColor android:centerColor} Optional center color.
{@link #GradientDrawableGradient_centerX android:centerX} X coordinate of the origin of the gradient within the shape.
{@link #GradientDrawableGradient_centerY android:centerY} Y coordinate of the origin of the gradient within the shape.
{@link #GradientDrawableGradient_endColor android:endColor} End color of the gradient.
{@link #GradientDrawableGradient_gradientRadius android:gradientRadius} Radius of the gradient, used only with radial gradient.
{@link #GradientDrawableGradient_startColor android:startColor} Start color of the gradient.
{@link #GradientDrawableGradient_type android:type} Type of gradient.
{@link #GradientDrawableGradient_useLevel android:useLevel}
+ @see #GradientDrawableGradient_angle + @see #GradientDrawableGradient_centerColor + @see #GradientDrawableGradient_centerX + @see #GradientDrawableGradient_centerY + @see #GradientDrawableGradient_endColor + @see #GradientDrawableGradient_gradientRadius + @see #GradientDrawableGradient_startColor + @see #GradientDrawableGradient_type + @see #GradientDrawableGradient_useLevel + */ + public static final int[] GradientDrawableGradient = { + 0x0101019d, 0x0101019e, 0x0101019f, 0x010101a0, + 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, + 0x0101020b + }; + /** +

+ @attr description + Angle of the gradient. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#angle}. + @attr name android:angle + */ + public static final int GradientDrawableGradient_angle = 3; + /** +

+ @attr description + Optional center color. For linear gradients, use centerX or centerY + to place the center color. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerColor}. + @attr name android:centerColor + */ + public static final int GradientDrawableGradient_centerColor = 8; + /** +

+ @attr description + X coordinate of the origin of the gradient within the shape. + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerX}. + @attr name android:centerX + */ + public static final int GradientDrawableGradient_centerX = 5; + /** +

+ @attr description + Y coordinate of the origin of the gradient within the shape. + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#centerY}. + @attr name android:centerY + */ + public static final int GradientDrawableGradient_centerY = 6; + /** +

+ @attr description + End color of the gradient. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#endColor}. + @attr name android:endColor + */ + public static final int GradientDrawableGradient_endColor = 1; + /** +

+ @attr description + Radius of the gradient, used only with radial gradient. + + +

May be a floating point value, such as "1.2". +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#gradientRadius}. + @attr name android:gradientRadius + */ + public static final int GradientDrawableGradient_gradientRadius = 7; + /** +

+ @attr description + Start color of the gradient. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startColor}. + @attr name android:startColor + */ + public static final int GradientDrawableGradient_startColor = 0; + /** +

+ @attr description + Type of gradient. The default type is linear. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
linear0 Linear gradient.
radial1 Radial, or circular, gradient.
sweep2 Sweep, or angled or diamond, gradient.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#type}. + @attr name android:type + */ + public static final int GradientDrawableGradient_type = 4; + /** +

This symbol is the offset where the {@link android.R.attr#useLevel} + attribute's value can be found in the {@link #GradientDrawableGradient} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:useLevel + */ + public static final int GradientDrawableGradient_useLevel = 2; + /** Used to specify the optional padding of a GradientDrawable. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #GradientDrawablePadding_bottom android:bottom} Amount of bottom padding inside the gradient shape.
{@link #GradientDrawablePadding_left android:left} Amount of left padding inside the gradient shape.
{@link #GradientDrawablePadding_right android:right} Amount of right padding inside the gradient shape.
{@link #GradientDrawablePadding_top android:top} Amount of top padding inside the gradient shape.
+ @see #GradientDrawablePadding_bottom + @see #GradientDrawablePadding_left + @see #GradientDrawablePadding_right + @see #GradientDrawablePadding_top + */ + public static final int[] GradientDrawablePadding = { + 0x010101ad, 0x010101ae, 0x010101af, 0x010101b0 + }; + /** +

+ @attr description + Amount of bottom padding inside the gradient shape. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#bottom}. + @attr name android:bottom + */ + public static final int GradientDrawablePadding_bottom = 3; + /** +

+ @attr description + Amount of left padding inside the gradient shape. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#left}. + @attr name android:left + */ + public static final int GradientDrawablePadding_left = 0; + /** +

+ @attr description + Amount of right padding inside the gradient shape. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#right}. + @attr name android:right + */ + public static final int GradientDrawablePadding_right = 2; + /** +

+ @attr description + Amount of top padding inside the gradient shape. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#top}. + @attr name android:top + */ + public static final int GradientDrawablePadding_top = 1; + /** Used to specify the size of the shape for GradientDrawable. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #GradientDrawableSize_height android:height} Height of the gradient shape.
{@link #GradientDrawableSize_width android:width} Width of the gradient shape.
+ @see #GradientDrawableSize_height + @see #GradientDrawableSize_width + */ + public static final int[] GradientDrawableSize = { + 0x01010155, 0x01010159 + }; + /** +

+ @attr description + Height of the gradient shape. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#height}. + @attr name android:height + */ + public static final int GradientDrawableSize_height = 0; + /** +

+ @attr description + Width of the gradient shape. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#width}. + @attr name android:width + */ + public static final int GradientDrawableSize_width = 1; + /** Used to fill the shape of GradientDrawable with a solid color. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #GradientDrawableSolid_color android:color} Solid color for the gradient shape.
+ @see #GradientDrawableSolid_color + */ + public static final int[] GradientDrawableSolid = { + 0x010101a5 + }; + /** +

+ @attr description + Solid color for the gradient shape. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int GradientDrawableSolid_color = 0; + /** Used to describe the optional stroke of a GradientDrawable. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #GradientDrawableStroke_color android:color} Color of the gradient shape's stroke.
{@link #GradientDrawableStroke_dashGap android:dashGap} Gap between dashes in the stroke.
{@link #GradientDrawableStroke_dashWidth android:dashWidth} Length of a dash in the stroke.
{@link #GradientDrawableStroke_width android:width} Width of the gradient shape's stroke.
+ @see #GradientDrawableStroke_color + @see #GradientDrawableStroke_dashGap + @see #GradientDrawableStroke_dashWidth + @see #GradientDrawableStroke_width + */ + public static final int[] GradientDrawableStroke = { + 0x01010159, 0x010101a5, 0x010101a6, 0x010101a7 + }; + /** +

+ @attr description + Color of the gradient shape's stroke. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int GradientDrawableStroke_color = 1; + /** +

+ @attr description + Gap between dashes in the stroke. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dashGap}. + @attr name android:dashGap + */ + public static final int GradientDrawableStroke_dashGap = 3; + /** +

+ @attr description + Length of a dash in the stroke. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dashWidth}. + @attr name android:dashWidth + */ + public static final int GradientDrawableStroke_dashWidth = 2; + /** +

+ @attr description + Width of the gradient shape's stroke. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#width}. + @attr name android:width + */ + public static final int GradientDrawableStroke_width = 0; + /** Attributes that can be used with a GridLayout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #GridLayout_alignmentMode android:alignmentMode} When set to alignMargins, causes alignment to take place between the outer + boundary of a view, as defined by its margins.
{@link #GridLayout_columnCount android:columnCount} The maxmimum number of columns to create when automatically positioning children.
{@link #GridLayout_columnOrderPreserved android:columnOrderPreserved} When set to true, forces column boundaries to appear in the same order + as column indices.
{@link #GridLayout_orientation android:orientation} The orientation property is not used during layout.
{@link #GridLayout_rowCount android:rowCount} The maxmimum number of rows to create when automatically positioning children.
{@link #GridLayout_rowOrderPreserved android:rowOrderPreserved} When set to true, forces row boundaries to appear in the same order + as row indices.
{@link #GridLayout_useDefaultMargins android:useDefaultMargins} When set to true, tells GridLayout to use default margins when none are specified + in a view's layout parameters.
+ @see #GridLayout_alignmentMode + @see #GridLayout_columnCount + @see #GridLayout_columnOrderPreserved + @see #GridLayout_orientation + @see #GridLayout_rowCount + @see #GridLayout_rowOrderPreserved + @see #GridLayout_useDefaultMargins + */ + public static final int[] GridLayout = { + 0x010100c4, 0x01010375, 0x01010376, 0x01010377, + 0x01010378, 0x01010379, 0x0101037a + }; + /** +

+ @attr description + When set to alignMargins, causes alignment to take place between the outer + boundary of a view, as defined by its margins. When set to alignBounds, + causes alignment to take place between the edges of the view. + The default is alignMargins. + See {@link android.widget.GridLayout#setAlignmentMode(int)}. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
alignBounds0 Align the bounds of the children. + See {@link android.widget.GridLayout#ALIGN_BOUNDS}.
alignMargins1 Align the margins of the children. + See {@link android.widget.GridLayout#ALIGN_MARGINS}.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#alignmentMode}. + @attr name android:alignmentMode + */ + public static final int GridLayout_alignmentMode = 6; + /** +

+ @attr description + The maxmimum number of columns to create when automatically positioning children. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#columnCount}. + @attr name android:columnCount + */ + public static final int GridLayout_columnCount = 3; + /** +

+ @attr description + When set to true, forces column boundaries to appear in the same order + as column indices. + The default is true. + See {@link android.widget.GridLayout#setColumnOrderPreserved(boolean)}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#columnOrderPreserved}. + @attr name android:columnOrderPreserved + */ + public static final int GridLayout_columnOrderPreserved = 4; + /** +

+ @attr description + The orientation property is not used during layout. It is only used to + allocate row and column parameters when they are not specified by its children's + layout paramters. GridLayout works like LinearLayout in this case; + putting all the components either in a single row or in a single column - + depending on the value of this flag. In the horizontal case, a columnCount + property may be additionally supplied to force new rows to be created when a + row is full. The rowCount attribute may be used similarly in the vertical case. + The default is horizontal. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
horizontal0 Defines an horizontal widget.
vertical1 Defines a vertical widget.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#orientation}. + @attr name android:orientation + */ + public static final int GridLayout_orientation = 0; + /** +

+ @attr description + The maxmimum number of rows to create when automatically positioning children. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#rowCount}. + @attr name android:rowCount + */ + public static final int GridLayout_rowCount = 1; + /** +

+ @attr description + When set to true, forces row boundaries to appear in the same order + as row indices. + The default is true. + See {@link android.widget.GridLayout#setRowOrderPreserved(boolean)}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#rowOrderPreserved}. + @attr name android:rowOrderPreserved + */ + public static final int GridLayout_rowOrderPreserved = 2; + /** +

+ @attr description + When set to true, tells GridLayout to use default margins when none are specified + in a view's layout parameters. + The default value is false. + See {@link android.widget.GridLayout#setUseDefaultMargins(boolean)}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#useDefaultMargins}. + @attr name android:useDefaultMargins + */ + public static final int GridLayout_useDefaultMargins = 5; + /** Attributes that can be used with a GridLayoutAnimation. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #GridLayoutAnimation_columnDelay android:columnDelay} Fraction of the animation duration used to delay the beginning of + the animation of each column.
{@link #GridLayoutAnimation_direction android:direction} Direction of the animation in the grid.
{@link #GridLayoutAnimation_directionPriority android:directionPriority} Priority of the rows and columns.
{@link #GridLayoutAnimation_rowDelay android:rowDelay} Fraction of the animation duration used to delay the beginning of + the animation of each row.
+ @see #GridLayoutAnimation_columnDelay + @see #GridLayoutAnimation_direction + @see #GridLayoutAnimation_directionPriority + @see #GridLayoutAnimation_rowDelay + */ + public static final int[] GridLayoutAnimation = { + 0x010101cf, 0x010101d0, 0x010101d1, 0x010101d2 + }; + /** +

+ @attr description + Fraction of the animation duration used to delay the beginning of + the animation of each column. + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#columnDelay}. + @attr name android:columnDelay + */ + public static final int GridLayoutAnimation_columnDelay = 0; + /** +

+ @attr description + Direction of the animation in the grid. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
left_to_right0x0 Animates columns from left to right.
right_to_left0x1 Animates columns from right to left.
top_to_bottom0x0 Animates rows from top to bottom.
bottom_to_top0x2 Animates rows from bottom to top.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#direction}. + @attr name android:direction + */ + public static final int GridLayoutAnimation_direction = 2; + /** +

+ @attr description + Priority of the rows and columns. When the priority is none, + both rows and columns have the same priority. When the priority is + column, the animations will be applied on the columns first. The same + goes for rows. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0 Rows and columns are animated at the same time.
column1 Columns are animated first.
row2 Rows are animated first.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#directionPriority}. + @attr name android:directionPriority + */ + public static final int GridLayoutAnimation_directionPriority = 3; + /** +

+ @attr description + Fraction of the animation duration used to delay the beginning of + the animation of each row. + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#rowDelay}. + @attr name android:rowDelay + */ + public static final int GridLayoutAnimation_rowDelay = 1; + /** Attributes that can be used with a GridLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #GridLayout_Layout_layout_column android:layout_column} The column boundary delimiting the left of the group of cells + occupied by this view.
{@link #GridLayout_Layout_layout_columnSpan android:layout_columnSpan} The column span: the difference between the right and left + boundaries delimiting the group of cells occupied by this view.
{@link #GridLayout_Layout_layout_columnWeight android:layout_columnWeight} The relative proportion of horizontal space that should be allocated to this view + during excess space distribution.
{@link #GridLayout_Layout_layout_gravity android:layout_gravity} Gravity specifies how a component should be placed in its group of cells.
{@link #GridLayout_Layout_layout_row android:layout_row} The row boundary delimiting the top of the group of cells + occupied by this view.
{@link #GridLayout_Layout_layout_rowSpan android:layout_rowSpan} The row span: the difference between the top and bottom + boundaries delimiting the group of cells occupied by this view.
{@link #GridLayout_Layout_layout_rowWeight android:layout_rowWeight} The relative proportion of vertical space that should be allocated to this view + during excess space distribution.
+ @see #GridLayout_Layout_layout_column + @see #GridLayout_Layout_layout_columnSpan + @see #GridLayout_Layout_layout_columnWeight + @see #GridLayout_Layout_layout_gravity + @see #GridLayout_Layout_layout_row + @see #GridLayout_Layout_layout_rowSpan + @see #GridLayout_Layout_layout_rowWeight + */ + public static final int[] GridLayout_Layout = { + 0x010100b3, 0x0101014c, 0x0101037b, 0x0101037c, + 0x0101037d, 0x01010458, 0x01010459 + }; + /** +

+ @attr description + The column boundary delimiting the left of the group of cells + occupied by this view. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_column}. + @attr name android:layout_column + */ + public static final int GridLayout_Layout_layout_column = 1; + /** +

+ @attr description + The column span: the difference between the right and left + boundaries delimiting the group of cells occupied by this view. + The default is one. + See {@link android.widget.GridLayout.Spec}. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_columnSpan}. + @attr name android:layout_columnSpan + */ + public static final int GridLayout_Layout_layout_columnSpan = 4; + /** +

+ @attr description + The relative proportion of horizontal space that should be allocated to this view + during excess space distribution. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_columnWeight}. + @attr name android:layout_columnWeight + */ + public static final int GridLayout_Layout_layout_columnWeight = 6; + /** +

+ @attr description + Gravity specifies how a component should be placed in its group of cells. + The default is LEFT | BASELINE. + See {@link android.widget.GridLayout.LayoutParams#setGravity(int)}. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_gravity}. + @attr name android:layout_gravity + */ + public static final int GridLayout_Layout_layout_gravity = 0; + /** +

+ @attr description + The row boundary delimiting the top of the group of cells + occupied by this view. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_row}. + @attr name android:layout_row + */ + public static final int GridLayout_Layout_layout_row = 2; + /** +

+ @attr description + The row span: the difference between the top and bottom + boundaries delimiting the group of cells occupied by this view. + The default is one. + See {@link android.widget.GridLayout.Spec}. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_rowSpan}. + @attr name android:layout_rowSpan + */ + public static final int GridLayout_Layout_layout_rowSpan = 3; + /** +

+ @attr description + The relative proportion of vertical space that should be allocated to this view + during excess space distribution. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_rowWeight}. + @attr name android:layout_rowWeight + */ + public static final int GridLayout_Layout_layout_rowWeight = 5; + /** Attributes that can be used with a GridView. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #GridView_columnWidth android:columnWidth} Specifies the fixed width for each column.
{@link #GridView_gravity android:gravity} Specifies the gravity within each cell.
{@link #GridView_horizontalSpacing android:horizontalSpacing} Defines the default horizontal spacing between columns.
{@link #GridView_numColumns android:numColumns} Defines how many columns to show.
{@link #GridView_stretchMode android:stretchMode} Defines how columns should stretch to fill the available empty space, if any.
{@link #GridView_verticalSpacing android:verticalSpacing} Defines the default vertical spacing between rows.
+ @see #GridView_columnWidth + @see #GridView_gravity + @see #GridView_horizontalSpacing + @see #GridView_numColumns + @see #GridView_stretchMode + @see #GridView_verticalSpacing + */ + public static final int[] GridView = { + 0x010100af, 0x01010114, 0x01010115, 0x01010116, + 0x01010117, 0x01010118 + }; + /** +

+ @attr description + Specifies the fixed width for each column. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#columnWidth}. + @attr name android:columnWidth + */ + public static final int GridView_columnWidth = 4; + /** +

+ @attr description + Specifies the gravity within each cell. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#gravity}. + @attr name android:gravity + */ + public static final int GridView_gravity = 0; + /** +

+ @attr description + Defines the default horizontal spacing between columns. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#horizontalSpacing}. + @attr name android:horizontalSpacing + */ + public static final int GridView_horizontalSpacing = 1; + /** +

+ @attr description + Defines how many columns to show. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
auto_fit-1 Display as many columns as possible to fill the available space.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#numColumns}. + @attr name android:numColumns + */ + public static final int GridView_numColumns = 5; + /** +

+ @attr description + Defines how columns should stretch to fill the available empty space, if any. + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0 Stretching is disabled.
spacingWidth1 The spacing between each column is stretched.
columnWidth2 Each column is stretched equally.
spacingWidthUniform3 The spacing between each column is uniformly stretched..
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#stretchMode}. + @attr name android:stretchMode + */ + public static final int GridView_stretchMode = 3; + /** +

+ @attr description + Defines the default vertical spacing between rows. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#verticalSpacing}. + @attr name android:verticalSpacing + */ + public static final int GridView_verticalSpacing = 2; + /** Attributes that can be used with a HorizontalScrollView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #HorizontalScrollView_fillViewport android:fillViewport} Defines whether the scrollview should stretch its content to fill the viewport.
+ @see #HorizontalScrollView_fillViewport + */ + public static final int[] HorizontalScrollView = { + 0x0101017a + }; + /** +

+ @attr description + Defines whether the scrollview should stretch its content to fill the viewport. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fillViewport}. + @attr name android:fillViewport + */ + public static final int HorizontalScrollView_fillViewport = 0; + /** Use host-apdu-service as the root tag of the XML resource that + describes an {@link android.nfc.cardemulation.HostApduService} service, which + is referenced from its {@link android.nfc.cardemulation.HostApduService#SERVICE_META_DATA} + entry. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #HostApduService_apduServiceBanner android:apduServiceBanner} A drawable that can be rendered in Android's system UI for representing + the service.
{@link #HostApduService_description android:description} Short description of the functionality the service implements.
{@link #HostApduService_requireDeviceUnlock android:requireDeviceUnlock} Whether the device must be unlocked before routing data to this service.
{@link #HostApduService_settingsActivity android:settingsActivity} Component name of an activity that allows the user to modify + the settings for this service.
+ @see #HostApduService_apduServiceBanner + @see #HostApduService_description + @see #HostApduService_requireDeviceUnlock + @see #HostApduService_settingsActivity + */ + public static final int[] HostApduService = { + 0x01010020, 0x01010225, 0x010103ec, 0x010103ed + }; + /** +

+ @attr description + A drawable that can be rendered in Android's system UI for representing + the service. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#apduServiceBanner}. + @attr name android:apduServiceBanner + */ + public static final int HostApduService_apduServiceBanner = 3; + /** +

+ @attr description + Short description of the functionality the service implements. This attribute + is mandatory. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#description}. + @attr name android:description + */ + public static final int HostApduService_description = 0; + /** +

+ @attr description + Whether the device must be unlocked before routing data to this service. + The default is false. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#requireDeviceUnlock}. + @attr name android:requireDeviceUnlock + */ + public static final int HostApduService_requireDeviceUnlock = 2; + /** +

+ @attr description + Component name of an activity that allows the user to modify + the settings for this service. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#settingsActivity}. + @attr name android:settingsActivity + */ + public static final int HostApduService_settingsActivity = 1; + /** Attributes that can be used with a Icon. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #Icon_icon android:icon} A Drawable resource providing a graphical representation of its + associated item.
{@link #Icon_mimeType android:mimeType} Specify a MIME type that is handled, as per + {@link android.content.IntentFilter#addDataType + IntentFilter.addDataType()}.
+ @see #Icon_icon + @see #Icon_mimeType + */ + public static final int[] Icon = { + 0x01010002, 0x01010026 + }; + /** +

+ @attr description + A Drawable resource providing a graphical representation of its + associated item. Use with the + application tag (to supply a default icon for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific icon for that component). It may also be + used with the intent-filter tag to supply an icon to show to the + user when an activity is being selected based on a particular Intent. + +

The given icon will be used to display to the user a graphical + representation of its associated component; for example, as the icon + for main activity that is displayed in the launcher. This must be + a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int Icon_icon = 0; + /** +

+ @attr description + Specify a MIME type that is handled, as per + {@link android.content.IntentFilter#addDataType + IntentFilter.addDataType()}. +

Note: MIME type matching in the Android framework is + case-sensitive, unlike formal RFC MIME types. As a result, + MIME types here should always use lower case letters.

+ + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#mimeType}. + @attr name android:mimeType + */ + public static final int Icon_mimeType = 1; + /** Attributes that can be used with a IconDefault. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #IconDefault_icon android:icon} A Drawable resource providing a graphical representation of its + associated item.
+ @see #IconDefault_icon + */ + public static final int[] IconDefault = { + 0x01010002 + }; + /** +

+ @attr description + A Drawable resource providing a graphical representation of its + associated item. Use with the + application tag (to supply a default icon for all application + components), or with the activity, receiver, service, or instrumentation + tag (to supply a specific icon for that component). It may also be + used with the intent-filter tag to supply an icon to show to the + user when an activity is being selected based on a particular Intent. + +

The given icon will be used to display to the user a graphical + representation of its associated component; for example, as the icon + for main activity that is displayed in the launcher. This must be + a reference to a Drawable resource containing the image definition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int IconDefault_icon = 0; + /** Attributes that can be used with a IconMenuView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #IconMenuView_maxItems android:maxItems} Defines the maximum number of items to show.
{@link #IconMenuView_maxItemsPerRow android:maxItemsPerRow} Defines the maximum number of items per row.
{@link #IconMenuView_maxRows android:maxRows} Defines the maximum number of rows displayed.
{@link #IconMenuView_moreIcon android:moreIcon} 'More' icon.
{@link #IconMenuView_rowHeight android:rowHeight} Defines the height of each row.
+ @see #IconMenuView_maxItems + @see #IconMenuView_maxItemsPerRow + @see #IconMenuView_maxRows + @see #IconMenuView_moreIcon + @see #IconMenuView_rowHeight + */ + public static final int[] IconMenuView = { + 0x01010132, 0x01010133, 0x01010134, 0x01010135, + 0x01160056 + }; + /** +

+ @attr description + Defines the maximum number of items to show. +

This is a private symbol. + @attr name com.android.internal:maxItems + */ + public static final int IconMenuView_maxItems = 4; + /** +

+ @attr description + Defines the maximum number of items per row. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxItemsPerRow}. + @attr name android:maxItemsPerRow + */ + public static final int IconMenuView_maxItemsPerRow = 2; + /** +

+ @attr description + Defines the maximum number of rows displayed. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxRows}. + @attr name android:maxRows + */ + public static final int IconMenuView_maxRows = 1; + /** +

+ @attr description + 'More' icon. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#moreIcon}. + @attr name android:moreIcon + */ + public static final int IconMenuView_moreIcon = 3; + /** +

+ @attr description + Defines the height of each row. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#rowHeight}. + @attr name android:rowHeight + */ + public static final int IconMenuView_rowHeight = 0; + /** Attributes that can be used with a ImageSwitcher. + */ + public static final int[] ImageSwitcher = { + + }; + /** Attributes that can be used with a ImageView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #ImageView_adjustViewBounds android:adjustViewBounds} Set this to true if you want the ImageView to adjust its bounds + to preserve the aspect ratio of its drawable.
{@link #ImageView_baseline android:baseline} The offset of the baseline within this view.
{@link #ImageView_baselineAlignBottom android:baselineAlignBottom} If true, the image view will be baseline aligned with based on its + bottom edge.
{@link #ImageView_cropToPadding android:cropToPadding} If true, the image will be cropped to fit within its padding.
{@link #ImageView_drawableAlpha android:drawableAlpha} @hide The alpha value (0-255) set on the ImageView's drawable.
{@link #ImageView_maxHeight android:maxHeight} An optional argument to supply a maximum height for this view.
{@link #ImageView_maxWidth android:maxWidth} An optional argument to supply a maximum width for this view.
{@link #ImageView_scaleType android:scaleType} Controls how the image should be resized or moved to match the size + of this ImageView.
{@link #ImageView_src android:src} Sets a drawable as the content of this ImageView.
{@link #ImageView_tint android:tint} Set a tinting color for the image.
{@link #ImageView_tintMode android:tintMode} Blending mode used to apply the image tint.
+ @see #ImageView_adjustViewBounds + @see #ImageView_baseline + @see #ImageView_baselineAlignBottom + @see #ImageView_cropToPadding + @see #ImageView_drawableAlpha + @see #ImageView_maxHeight + @see #ImageView_maxWidth + @see #ImageView_scaleType + @see #ImageView_src + @see #ImageView_tint + @see #ImageView_tintMode + */ + public static final int[] ImageView = { + 0x01010119, 0x0101011d, 0x0101011e, 0x0101011f, + 0x01010120, 0x01010121, 0x01010122, 0x01010123, + 0x0101031c, 0x010103fb, 0x0116004f + }; + /** +

+ @attr description + Set this to true if you want the ImageView to adjust its bounds + to preserve the aspect ratio of its drawable. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#adjustViewBounds}. + @attr name android:adjustViewBounds + */ + public static final int ImageView_adjustViewBounds = 2; + /** +

+ @attr description + The offset of the baseline within this view. See {see android.view.View#getBaseline} + for details + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#baseline}. + @attr name android:baseline + */ + public static final int ImageView_baseline = 8; + /** +

+ @attr description + If true, the image view will be baseline aligned with based on its + bottom edge. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#baselineAlignBottom}. + @attr name android:baselineAlignBottom + */ + public static final int ImageView_baselineAlignBottom = 6; + /** +

+ @attr description + If true, the image will be cropped to fit within its padding. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#cropToPadding}. + @attr name android:cropToPadding + */ + public static final int ImageView_cropToPadding = 7; + /** +

+ @attr description + @hide The alpha value (0-255) set on the ImageView's drawable. Equivalent + to calling ImageView.setAlpha(int), not the same as View.setAlpha(float). +

This is a private symbol. + @attr name com.android.internal:drawableAlpha + */ + public static final int ImageView_drawableAlpha = 10; + /** +

+ @attr description + An optional argument to supply a maximum height for this view. + See {see android.widget.ImageView#setMaxHeight} for details. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxHeight}. + @attr name android:maxHeight + */ + public static final int ImageView_maxHeight = 4; + /** +

+ @attr description + An optional argument to supply a maximum width for this view. + See {see android.widget.ImageView#setMaxWidth} for details. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxWidth}. + @attr name android:maxWidth + */ + public static final int ImageView_maxWidth = 3; + /** +

+ @attr description + Controls how the image should be resized or moved to match the size + of this ImageView. See {@link android.widget.ImageView.ScaleType} + + +

Must be one of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
matrix0 Scale using the image matrix when drawing. See + {@link android.widget.ImageView#setImageMatrix(Matrix)}.
fitXY1 Scale the image using {@link android.graphics.Matrix.ScaleToFit#FILL}.
fitStart2 Scale the image using {@link android.graphics.Matrix.ScaleToFit#START}.
fitCenter3 Scale the image using {@link android.graphics.Matrix.ScaleToFit#CENTER}.
fitEnd4 Scale the image using {@link android.graphics.Matrix.ScaleToFit#END}.
center5 Center the image in the view, but perform no scaling.
centerCrop6 Scale the image uniformly (maintain the image's aspect ratio) so both dimensions + (width and height) of the image will be equal to or larger than the corresponding + dimension of the view (minus padding). The image is then centered in the view.
centerInside7 Scale the image uniformly (maintain the image's aspect ratio) so that both + dimensions (width and height) of the image will be equal to or less than the + corresponding dimension of the view (minus padding). The image is then centered in + the view.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#scaleType}. + @attr name android:scaleType + */ + public static final int ImageView_scaleType = 1; + /** +

+ @attr description + Sets a drawable as the content of this ImageView. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#src}. + @attr name android:src + */ + public static final int ImageView_src = 0; + /** +

+ @attr description + Set a tinting color for the image. By default, the tint will blend using SRC_ATOP mode. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tint}. + @attr name android:tint + */ + public static final int ImageView_tint = 5; + /** +

+ @attr description + Blending mode used to apply the image tint. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#tintMode}. + @attr name android:tintMode + */ + public static final int ImageView_tintMode = 9; + /** Attributes that can be assigned to an <include> tag. + @hide +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #Include_id android:id} Supply an identifier name for this view, to later retrieve it + with {@link android.view.View#findViewById View.findViewById()} or + {@link android.app.Activity#findViewById Activity.findViewById()}.
{@link #Include_visibility android:visibility} Controls the initial visibility of the view.
+ @see #Include_id + @see #Include_visibility + */ + public static final int[] Include = { + 0x010100d0, 0x010100dc + }; + /** +

+ @attr description + Supply an identifier name for this view, to later retrieve it + with {@link android.view.View#findViewById View.findViewById()} or + {@link android.app.Activity#findViewById Activity.findViewById()}. + This must be a + resource reference; typically you set this using the + @+ syntax to create a new ID resources. + For example: android:id="@+id/my_id" which + allows you to later retrieve the view + with findViewById(R.id.my_id). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#id}. + @attr name android:id + */ + public static final int Include_id = 0; + /** +

+ @attr description + Controls the initial visibility of the view. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
visible0 Visible on screen; the default value.
invisible1 Not displayed, but taken into account during layout (space is left for it).
gone2 Completely hidden, as if the view had not been added.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#visibility}. + @attr name android:visibility + */ + public static final int Include_visibility = 1; + /** An input-extras is a container for extra data to supply to + an input method. Contains + one more more {@link #Extra } tags. + */ + public static final int[] InputExtras = { + + }; + /** Use input-method as the root tag of the XML resource that + describes an + {@link android.view.inputmethod.InputMethod} service, which is + referenced from its + {@link android.view.inputmethod.InputMethod#SERVICE_META_DATA} + meta-data entry. Described here are the attributes that can be + included in that tag. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #InputMethod_isDefault android:isDefault} Set to true in all of the configurations for which this input + method should be considered an option as the default.
{@link #InputMethod_settingsActivity android:settingsActivity} Component name of an activity that allows the user to modify + the settings for this service.
{@link #InputMethod_supportsSwitchingToNextInputMethod android:supportsSwitchingToNextInputMethod} Set to true if this input method supports ways to switch to + a next input method (e.
+ @see #InputMethod_isDefault + @see #InputMethod_settingsActivity + @see #InputMethod_supportsSwitchingToNextInputMethod + */ + public static final int[] InputMethod = { + 0x01010221, 0x01010225, 0x010103eb + }; + /** +

+ @attr description + Set to true in all of the configurations for which this input + method should be considered an option as the default. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#isDefault}. + @attr name android:isDefault + */ + public static final int InputMethod_isDefault = 0; + /** +

+ @attr description + Component name of an activity that allows the user to modify + the settings for this service. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#settingsActivity}. + @attr name android:settingsActivity + */ + public static final int InputMethod_settingsActivity = 1; + /** +

+ @attr description + Set to true if this input method supports ways to switch to + a next input method (e.g. a globe key.). When this is true and + InputMethodManager#shouldOfferSwitchingToNextInputMethod() returns true, + the IME has to offer ways to invoke InputMethodManager#switchToNextInputMethod() + accordingly. +

Note that the system determines the most appropriate next input method + and subtype in order to provide the consistent user experience in switching + between IMEs and subtypes. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#supportsSwitchingToNextInputMethod}. + @attr name android:supportsSwitchingToNextInputMethod + */ + public static final int InputMethod_supportsSwitchingToNextInputMethod = 2; + /** Attributes that can be used with a InputMethodService. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #InputMethodService_imeExtractEnterAnimation android:imeExtractEnterAnimation} Animation to use when showing the fullscreen extract UI after + it had previously been hidden.
{@link #InputMethodService_imeExtractExitAnimation android:imeExtractExitAnimation} Animation to use when hiding the fullscreen extract UI after + it had previously been shown.
{@link #InputMethodService_imeFullscreenBackground android:imeFullscreenBackground} Background to use for entire input method when it is being + shown in fullscreen mode with the extract view, to ensure + that it completely covers the application.
+ @see #InputMethodService_imeExtractEnterAnimation + @see #InputMethodService_imeExtractExitAnimation + @see #InputMethodService_imeFullscreenBackground + */ + public static final int[] InputMethodService = { + 0x0101022c, 0x01010268, 0x01010269 + }; + /** +

+ @attr description + Animation to use when showing the fullscreen extract UI after + it had previously been hidden. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#imeExtractEnterAnimation}. + @attr name android:imeExtractEnterAnimation + */ + public static final int InputMethodService_imeExtractEnterAnimation = 1; + /** +

+ @attr description + Animation to use when hiding the fullscreen extract UI after + it had previously been shown. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#imeExtractExitAnimation}. + @attr name android:imeExtractExitAnimation + */ + public static final int InputMethodService_imeExtractExitAnimation = 2; + /** +

+ @attr description + Background to use for entire input method when it is being + shown in fullscreen mode with the extract view, to ensure + that it completely covers the application. This allows, + for example, the candidate view to be hidden + while in fullscreen mode without having the application show through + behind it. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#imeFullscreenBackground}. + @attr name android:imeFullscreenBackground + */ + public static final int InputMethodService_imeFullscreenBackground = 0; + /** This is the subtype of InputMethod. Subtype can describe locales (e.g. en_US, fr_FR...) + and modes (e.g. voice, keyboard...), and is used for IME switch. This subtype allows + the system to call the specified subtype of the IME directly. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #InputMethod_Subtype_icon android:icon} The icon of the subtype.
{@link #InputMethod_Subtype_imeSubtypeExtraValue android:imeSubtypeExtraValue} The extra value of the subtype.
{@link #InputMethod_Subtype_imeSubtypeLocale android:imeSubtypeLocale} The locale of the subtype.
{@link #InputMethod_Subtype_imeSubtypeMode android:imeSubtypeMode} The mode of the subtype.
{@link #InputMethod_Subtype_isAsciiCapable android:isAsciiCapable} Set to true if this subtype is ASCII capable.
{@link #InputMethod_Subtype_isAuxiliary android:isAuxiliary} Set true if the subtype is auxiliary.
{@link #InputMethod_Subtype_label android:label} The name of the subtype.
{@link #InputMethod_Subtype_overridesImplicitlyEnabledSubtype android:overridesImplicitlyEnabledSubtype} Set true when this subtype should be selected by default if no other subtypes are + selected explicitly.
{@link #InputMethod_Subtype_subtypeId android:subtypeId} The unique id for the subtype.
+ @see #InputMethod_Subtype_icon + @see #InputMethod_Subtype_imeSubtypeExtraValue + @see #InputMethod_Subtype_imeSubtypeLocale + @see #InputMethod_Subtype_imeSubtypeMode + @see #InputMethod_Subtype_isAsciiCapable + @see #InputMethod_Subtype_isAuxiliary + @see #InputMethod_Subtype_label + @see #InputMethod_Subtype_overridesImplicitlyEnabledSubtype + @see #InputMethod_Subtype_subtypeId + */ + public static final int[] InputMethod_Subtype = { + 0x01010001, 0x01010002, 0x010102ec, 0x010102ed, + 0x010102ee, 0x0101037f, 0x010103a2, 0x010103c1, + 0x010103e9 + }; + /** +

+ @attr description + The icon of the subtype. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int InputMethod_Subtype_icon = 1; + /** +

+ @attr description + The extra value of the subtype. This string can be any string and will be passed to + the IME when the framework calls the IME with the subtype. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#imeSubtypeExtraValue}. + @attr name android:imeSubtypeExtraValue + */ + public static final int InputMethod_Subtype_imeSubtypeExtraValue = 4; + /** +

+ @attr description + The locale of the subtype. This string should be a locale (e.g. en_US, fr_FR...) + and will be passed to the IME when the framework calls the IME + with the subtype. This is also used by the framework to know the supported locales + of the IME. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#imeSubtypeLocale}. + @attr name android:imeSubtypeLocale + */ + public static final int InputMethod_Subtype_imeSubtypeLocale = 2; + /** +

+ @attr description + The mode of the subtype. This string can be a mode (e.g. voice, keyboard...) and this + string will be passed to the IME when the framework calls the IME with the + subtype. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#imeSubtypeMode}. + @attr name android:imeSubtypeMode + */ + public static final int InputMethod_Subtype_imeSubtypeMode = 3; + /** +

+ @attr description + Set to true if this subtype is ASCII capable. If the subtype is ASCII + capable, it should guarantee that the user can input ASCII characters with + this subtype. This is important because many password fields only allow + ASCII-characters. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#isAsciiCapable}. + @attr name android:isAsciiCapable + */ + public static final int InputMethod_Subtype_isAsciiCapable = 8; + /** +

+ @attr description + Set true if the subtype is auxiliary. An auxiliary subtype won't be shown in the + input method selection list in the settings app. + InputMethodManager#switchToLastInputMethod will ignore auxiliary subtypes when it + chooses a target subtype. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#isAuxiliary}. + @attr name android:isAuxiliary + */ + public static final int InputMethod_Subtype_isAuxiliary = 5; + /** +

+ @attr description + The name of the subtype. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#label}. + @attr name android:label + */ + public static final int InputMethod_Subtype_label = 0; + /** +

+ @attr description + Set true when this subtype should be selected by default if no other subtypes are + selected explicitly. Note that a subtype with this parameter being true will + not be shown in the subtypes list. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#overridesImplicitlyEnabledSubtype}. + @attr name android:overridesImplicitlyEnabledSubtype + */ + public static final int InputMethod_Subtype_overridesImplicitlyEnabledSubtype = 6; + /** +

+ @attr description + The unique id for the subtype. The input method framework keeps track of enabled + subtypes by ID. When the IME package gets upgraded, enabled IDs will stay enabled even + if other attributes are different. If the ID is unspecified (by calling the other + constructor or 0. Arrays.hashCode(new Object[] {locale, mode, extraValue, + isAuxiliary, overridesImplicitlyEnabledSubtype}) will be used instead. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#subtypeId}. + @attr name android:subtypeId + */ + public static final int InputMethod_Subtype_subtypeId = 7; + /** Attributes that can be used with a InsetDrawable. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #InsetDrawable_drawable android:drawable} Reference to a drawable resource to use for the frame.
{@link #InsetDrawable_inset android:inset}
{@link #InsetDrawable_insetBottom android:insetBottom}
{@link #InsetDrawable_insetLeft android:insetLeft}
{@link #InsetDrawable_insetRight android:insetRight}
{@link #InsetDrawable_insetTop android:insetTop}
{@link #InsetDrawable_visible android:visible} Provides initial visibility state of the drawable; the default + value is false.
+ @see #InsetDrawable_drawable + @see #InsetDrawable_inset + @see #InsetDrawable_insetBottom + @see #InsetDrawable_insetLeft + @see #InsetDrawable_insetRight + @see #InsetDrawable_insetTop + @see #InsetDrawable_visible + */ + public static final int[] InsetDrawable = { + 0x01010194, 0x01010199, 0x010101b7, 0x010101b8, + 0x010101b9, 0x010101ba, 0x010104b5 + }; + /** +

+ @attr description + Reference to a drawable resource to use for the frame. If not + given, the drawable must be defined by the first child tag. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawable}. + @attr name android:drawable + */ + public static final int InsetDrawable_drawable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#inset} + attribute's value can be found in the {@link #InsetDrawable} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:inset + */ + public static final int InsetDrawable_inset = 6; + /** +

This symbol is the offset where the {@link android.R.attr#insetBottom} + attribute's value can be found in the {@link #InsetDrawable} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:insetBottom + */ + public static final int InsetDrawable_insetBottom = 5; + /** +

This symbol is the offset where the {@link android.R.attr#insetLeft} + attribute's value can be found in the {@link #InsetDrawable} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:insetLeft + */ + public static final int InsetDrawable_insetLeft = 2; + /** +

This symbol is the offset where the {@link android.R.attr#insetRight} + attribute's value can be found in the {@link #InsetDrawable} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:insetRight + */ + public static final int InsetDrawable_insetRight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#insetTop} + attribute's value can be found in the {@link #InsetDrawable} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:insetTop + */ + public static final int InsetDrawable_insetTop = 4; + /** +

+ @attr description + Provides initial visibility state of the drawable; the default + value is false. See + {@link android.graphics.drawable.Drawable#setVisible}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#visible}. + @attr name android:visible + */ + public static final int InsetDrawable_visible = 0; + /** Declaration of an {@link android.content.Intent} object in XML. May + also include zero or more {@link #IntentCategory and + {@link #Extra } tags. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Intent_action android:action} The action name to assign to the Intent, as per + {@link android.content.Intent#setAction Intent.setAction()}.
{@link #Intent_data android:data} The data URI to assign to the Intent, as per + {@link android.content.Intent#setData Intent.setData()}.
{@link #Intent_mimeType android:mimeType} The MIME type name to assign to the Intent, as per + {@link android.content.Intent#setType Intent.setType()}.
{@link #Intent_targetClass android:targetClass} The class part of the ComponentName to assign to the Intent, as per + {@link android.content.Intent#setComponent Intent.setComponent()}.
{@link #Intent_targetPackage android:targetPackage} The package part of the ComponentName to assign to the Intent, as per + {@link android.content.Intent#setComponent Intent.setComponent()}.
+ @see #Intent_action + @see #Intent_data + @see #Intent_mimeType + @see #Intent_targetClass + @see #Intent_targetPackage + */ + public static final int[] Intent = { + 0x01010021, 0x01010026, 0x0101002d, 0x0101002e, + 0x0101002f + }; + /** +

+ @attr description + The action name to assign to the Intent, as per + {@link android.content.Intent#setAction Intent.setAction()}. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#action}. + @attr name android:action + */ + public static final int Intent_action = 2; + /** +

+ @attr description + The data URI to assign to the Intent, as per + {@link android.content.Intent#setData Intent.setData()}. +

Note: scheme and host name matching in the Android framework is + case-sensitive, unlike the formal RFC. As a result, + URIs here should always be normalized to use lower case letters + for these elements (as well as other proper Uri normalization).

+ + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#data}. + @attr name android:data + */ + public static final int Intent_data = 3; + /** +

+ @attr description + The MIME type name to assign to the Intent, as per + {@link android.content.Intent#setType Intent.setType()}. +

Note: MIME type matching in the Android framework is + case-sensitive, unlike formal RFC MIME types. As a result, + MIME types here should always use lower case letters.

+ + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#mimeType}. + @attr name android:mimeType + */ + public static final int Intent_mimeType = 1; + /** +

+ @attr description + The class part of the ComponentName to assign to the Intent, as per + {@link android.content.Intent#setComponent Intent.setComponent()}. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#targetClass}. + @attr name android:targetClass + */ + public static final int Intent_targetClass = 4; + /** +

+ @attr description + The package part of the ComponentName to assign to the Intent, as per + {@link android.content.Intent#setComponent Intent.setComponent()}. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#targetPackage}. + @attr name android:targetPackage + */ + public static final int Intent_targetPackage = 0; + /** A category to add to an Intent, as per + {@link android.content.Intent#addCategory Intent.addCategory()}. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #IntentCategory_name android:name} Required name of the category.
+ @see #IntentCategory_name + */ + public static final int[] IntentCategory = { + 0x01010003 + }; + /** +

+ @attr description + Required name of the category. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int IntentCategory_name = 0; + /** Attributes that can be used with a Keyboard. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #Keyboard_horizontalGap android:horizontalGap} Default horizontal gap between keys.
{@link #Keyboard_keyHeight android:keyHeight} Default height of a key, in pixels or percentage of display width.
{@link #Keyboard_keyWidth android:keyWidth} Default width of a key, in pixels or percentage of display width.
{@link #Keyboard_verticalGap android:verticalGap} Default vertical gap between rows of keys.
+ @see #Keyboard_horizontalGap + @see #Keyboard_keyHeight + @see #Keyboard_keyWidth + @see #Keyboard_verticalGap + */ + public static final int[] Keyboard = { + 0x0101023d, 0x0101023e, 0x0101023f, 0x01010240 + }; + /** +

+ @attr description + Default horizontal gap between keys. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#horizontalGap}. + @attr name android:horizontalGap + */ + public static final int Keyboard_horizontalGap = 2; + /** +

+ @attr description + Default height of a key, in pixels or percentage of display width. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#keyHeight}. + @attr name android:keyHeight + */ + public static final int Keyboard_keyHeight = 1; + /** +

+ @attr description + Default width of a key, in pixels or percentage of display width. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#keyWidth}. + @attr name android:keyWidth + */ + public static final int Keyboard_keyWidth = 0; + /** +

+ @attr description + Default vertical gap between rows of keys. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#verticalGap}. + @attr name android:verticalGap + */ + public static final int Keyboard_verticalGap = 3; + /** Use keyboard-layouts as the root tag of the XML resource that + describes a collection of keyboard layouts provided by an application. + Each keyboard layout is declared by a keyboard-layout tag + with these attributes. + + The XML resource that contains the keyboard layouts must be referenced from its + {@link android.hardware.input.InputManager#META_DATA_KEYBOARD_LAYOUTS} + meta-data entry used with broadcast receivers for + {@link android.hardware.input.InputManager#ACTION_QUERY_KEYBOARD_LAYOUTS}. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #KeyboardLayout_keyboardLayout android:keyboardLayout} The key character map file resource.
{@link #KeyboardLayout_label android:label} The display label of the keyboard layout.
{@link #KeyboardLayout_name android:name} The name of the keyboard layout, must be unique in the receiver.
+ @see #KeyboardLayout_keyboardLayout + @see #KeyboardLayout_label + @see #KeyboardLayout_name + */ + public static final int[] KeyboardLayout = { + 0x01010001, 0x01010003, 0x010103ab + }; + /** +

+ @attr description + The key character map file resource. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#keyboardLayout}. + @attr name android:keyboardLayout + */ + public static final int KeyboardLayout_keyboardLayout = 2; + /** +

+ @attr description + The display label of the keyboard layout. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#label}. + @attr name android:label + */ + public static final int KeyboardLayout_label = 0; + /** +

+ @attr description + The name of the keyboard layout, must be unique in the receiver. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int KeyboardLayout_name = 1; + /** Attributes that can be used with a KeyboardView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + +
AttributeDescription
{@link #KeyboardView_keyBackground android:keyBackground} Image for the key.
{@link #KeyboardView_keyPreviewHeight android:keyPreviewHeight} Height of the key press feedback popup.
{@link #KeyboardView_keyPreviewLayout android:keyPreviewLayout} Layout resource for key press feedback.
{@link #KeyboardView_keyPreviewOffset android:keyPreviewOffset} Vertical offset of the key press feedback from the key.
{@link #KeyboardView_keyTextColor android:keyTextColor} Color to use for the label in a key.
{@link #KeyboardView_keyTextSize android:keyTextSize} Size of the text for character keys.
{@link #KeyboardView_keyboardViewStyle android:keyboardViewStyle} Default KeyboardView style.
{@link #KeyboardView_labelTextSize android:labelTextSize} Size of the text for custom keys with some text and no icon.
{@link #KeyboardView_popupLayout android:popupLayout} Layout resource for popup keyboards.
{@link #KeyboardView_shadowColor android:shadowColor} Place a blurred shadow of text underneath the text, drawn with the + specified color.
{@link #KeyboardView_shadowRadius android:shadowRadius} Blur radius of the text shadow.
{@link #KeyboardView_verticalCorrection android:verticalCorrection} Amount to offset the touch Y coordinate by, for bias correction.
+ @see #KeyboardView_keyBackground + @see #KeyboardView_keyPreviewHeight + @see #KeyboardView_keyPreviewLayout + @see #KeyboardView_keyPreviewOffset + @see #KeyboardView_keyTextColor + @see #KeyboardView_keyTextSize + @see #KeyboardView_keyboardViewStyle + @see #KeyboardView_labelTextSize + @see #KeyboardView_popupLayout + @see #KeyboardView_shadowColor + @see #KeyboardView_shadowRadius + @see #KeyboardView_verticalCorrection + */ + public static final int[] KeyboardView = { + 0x01010161, 0x01010164, 0x01010233, 0x01010234, + 0x01010235, 0x01010236, 0x01010237, 0x01010238, + 0x01010239, 0x0101023a, 0x0101023b, 0x01160084 + }; + /** +

+ @attr description + Image for the key. This image needs to be a StateListDrawable, with the following + possible states: normal, pressed, checkable, checkable+pressed, checkable+checked, + checkable+checked+pressed. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#keyBackground}. + @attr name android:keyBackground + */ + public static final int KeyboardView_keyBackground = 2; + /** +

+ @attr description + Height of the key press feedback popup. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#keyPreviewHeight}. + @attr name android:keyPreviewHeight + */ + public static final int KeyboardView_keyPreviewHeight = 8; + /** +

+ @attr description + Layout resource for key press feedback. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#keyPreviewLayout}. + @attr name android:keyPreviewLayout + */ + public static final int KeyboardView_keyPreviewLayout = 6; + /** +

+ @attr description + Vertical offset of the key press feedback from the key. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#keyPreviewOffset}. + @attr name android:keyPreviewOffset + */ + public static final int KeyboardView_keyPreviewOffset = 7; + /** +

+ @attr description + Color to use for the label in a key. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#keyTextColor}. + @attr name android:keyTextColor + */ + public static final int KeyboardView_keyTextColor = 5; + /** +

+ @attr description + Size of the text for character keys. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#keyTextSize}. + @attr name android:keyTextSize + */ + public static final int KeyboardView_keyTextSize = 3; + /** +

+ @attr description + Default KeyboardView style. +

This is a private symbol. + @attr name com.android.internal:keyboardViewStyle + */ + public static final int KeyboardView_keyboardViewStyle = 11; + /** +

+ @attr description + Size of the text for custom keys with some text and no icon. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#labelTextSize}. + @attr name android:labelTextSize + */ + public static final int KeyboardView_labelTextSize = 4; + /** +

+ @attr description + Layout resource for popup keyboards. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#popupLayout}. + @attr name android:popupLayout + */ + public static final int KeyboardView_popupLayout = 10; + /** +

+ @attr description + Place a blurred shadow of text underneath the text, drawn with the + specified color. The text shadow produced does not interact with + properties on View that are responsible for real time shadows, + {@link android.R.styleable#View_elevation elevation} and + {@link android.R.styleable#View_translationZ translationZ}. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#shadowColor}. + @attr name android:shadowColor + */ + public static final int KeyboardView_shadowColor = 0; + /** +

+ @attr description + Blur radius of the text shadow. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#shadowRadius}. + @attr name android:shadowRadius + */ + public static final int KeyboardView_shadowRadius = 1; + /** +

+ @attr description + Amount to offset the touch Y coordinate by, for bias correction. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#verticalCorrection}. + @attr name android:verticalCorrection + */ + public static final int KeyboardView_verticalCorrection = 9; + /** Attributes that can be used with a KeyboardViewPreviewState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #KeyboardViewPreviewState_state_long_pressable android:state_long_pressable} State for {@link android.inputmethodservice.KeyboardView KeyboardView} + key preview background.
+ @see #KeyboardViewPreviewState_state_long_pressable + */ + public static final int[] KeyboardViewPreviewState = { + 0x0101023c + }; + /** +

+ @attr description + State for {@link android.inputmethodservice.KeyboardView KeyboardView} + key preview background. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_long_pressable}. + @attr name android:state_long_pressable + */ + public static final int KeyboardViewPreviewState_state_long_pressable = 0; + /** Attributes that can be used with a Keyboard_Key. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Keyboard_Key_codes android:codes} The unicode value or comma-separated values that this key outputs.
{@link #Keyboard_Key_iconPreview android:iconPreview} The icon to show in the popup preview.
{@link #Keyboard_Key_isModifier android:isModifier} Whether this is a modifier key such as Alt or Shift.
{@link #Keyboard_Key_isRepeatable android:isRepeatable} Whether long-pressing on this key will make it repeat.
{@link #Keyboard_Key_isSticky android:isSticky} Whether this is a toggle key.
{@link #Keyboard_Key_keyEdgeFlags android:keyEdgeFlags} Key edge flags.
{@link #Keyboard_Key_keyIcon android:keyIcon} The icon to display on the key instead of the label.
{@link #Keyboard_Key_keyLabel android:keyLabel} The label to display on the key.
{@link #Keyboard_Key_keyOutputText android:keyOutputText} The string of characters to output when this key is pressed.
{@link #Keyboard_Key_keyboardMode android:keyboardMode} Mode of the keyboard.
{@link #Keyboard_Key_popupCharacters android:popupCharacters} The characters to display in the popup keyboard.
{@link #Keyboard_Key_popupKeyboard android:popupKeyboard} The XML keyboard layout of any popup keyboard.
+ @see #Keyboard_Key_codes + @see #Keyboard_Key_iconPreview + @see #Keyboard_Key_isModifier + @see #Keyboard_Key_isRepeatable + @see #Keyboard_Key_isSticky + @see #Keyboard_Key_keyEdgeFlags + @see #Keyboard_Key_keyIcon + @see #Keyboard_Key_keyLabel + @see #Keyboard_Key_keyOutputText + @see #Keyboard_Key_keyboardMode + @see #Keyboard_Key_popupCharacters + @see #Keyboard_Key_popupKeyboard + */ + public static final int[] Keyboard_Key = { + 0x01010242, 0x01010243, 0x01010244, 0x01010245, + 0x01010246, 0x01010247, 0x01010248, 0x01010249, + 0x0101024a, 0x0101024b, 0x0101024c, 0x0101024d + }; + /** +

+ @attr description + The unicode value or comma-separated values that this key outputs. + + +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#codes}. + @attr name android:codes + */ + public static final int Keyboard_Key_codes = 0; + /** +

+ @attr description + The icon to show in the popup preview. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#iconPreview}. + @attr name android:iconPreview + */ + public static final int Keyboard_Key_iconPreview = 7; + /** +

+ @attr description + Whether this is a modifier key such as Alt or Shift. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#isModifier}. + @attr name android:isModifier + */ + public static final int Keyboard_Key_isModifier = 4; + /** +

+ @attr description + Whether long-pressing on this key will make it repeat. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#isRepeatable}. + @attr name android:isRepeatable + */ + public static final int Keyboard_Key_isRepeatable = 6; + /** +

+ @attr description + Whether this is a toggle key. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#isSticky}. + @attr name android:isSticky + */ + public static final int Keyboard_Key_isSticky = 5; + /** +

+ @attr description + Key edge flags. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
left1 Key is anchored to the left of the keyboard.
right2 Key is anchored to the right of the keyboard.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#keyEdgeFlags}. + @attr name android:keyEdgeFlags + */ + public static final int Keyboard_Key_keyEdgeFlags = 3; + /** +

+ @attr description + The icon to display on the key instead of the label. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#keyIcon}. + @attr name android:keyIcon + */ + public static final int Keyboard_Key_keyIcon = 10; + /** +

+ @attr description + The label to display on the key. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#keyLabel}. + @attr name android:keyLabel + */ + public static final int Keyboard_Key_keyLabel = 9; + /** +

+ @attr description + The string of characters to output when this key is pressed. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#keyOutputText}. + @attr name android:keyOutputText + */ + public static final int Keyboard_Key_keyOutputText = 8; + /** +

+ @attr description + Mode of the keyboard. If the mode doesn't match the + requested keyboard mode, the key will be skipped. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#keyboardMode}. + @attr name android:keyboardMode + */ + public static final int Keyboard_Key_keyboardMode = 11; + /** +

+ @attr description + The characters to display in the popup keyboard. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#popupCharacters}. + @attr name android:popupCharacters + */ + public static final int Keyboard_Key_popupCharacters = 2; + /** +

+ @attr description + The XML keyboard layout of any popup keyboard. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#popupKeyboard}. + @attr name android:popupKeyboard + */ + public static final int Keyboard_Key_popupKeyboard = 1; + /** Attributes that can be used with a Keyboard_Row. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #Keyboard_Row_keyboardMode android:keyboardMode} Mode of the keyboard.
{@link #Keyboard_Row_rowEdgeFlags android:rowEdgeFlags} Row edge flags.
+ @see #Keyboard_Row_keyboardMode + @see #Keyboard_Row_rowEdgeFlags + */ + public static final int[] Keyboard_Row = { + 0x01010241, 0x0101024d + }; + /** +

+ @attr description + Mode of the keyboard. If the mode doesn't match the + requested keyboard mode, the row will be skipped. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#keyboardMode}. + @attr name android:keyboardMode + */ + public static final int Keyboard_Row_keyboardMode = 1; + /** +

+ @attr description + Row edge flags. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
top4 Row is anchored to the top of the keyboard.
bottom8 Row is anchored to the bottom of the keyboard.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#rowEdgeFlags}. + @attr name android:rowEdgeFlags + */ + public static final int Keyboard_Row_rowEdgeFlags = 0; + /** Attributes that can be used with a Keyframe. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #Keyframe_fraction android:fraction}
{@link #Keyframe_interpolator android:interpolator} Defines a per-interval interpolator for this keyframe.
{@link #Keyframe_value android:value} Concrete value to assign to this piece of named meta-data.
{@link #Keyframe_valueType android:valueType} The type of valueFrom and valueTo.
+ @see #Keyframe_fraction + @see #Keyframe_interpolator + @see #Keyframe_value + @see #Keyframe_valueType + */ + public static final int[] Keyframe = { + 0x01010024, 0x01010141, 0x010102e0, 0x010104d8 + }; + /** +

This symbol is the offset where the {@link android.R.attr#fraction} + attribute's value can be found in the {@link #Keyframe} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:fraction + */ + public static final int Keyframe_fraction = 3; + /** +

+ @attr description + Defines a per-interval interpolator for this keyframe. This interpolator will be used + to interpolate between this keyframe and the previous keyframe. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#interpolator}. + @attr name android:interpolator + */ + public static final int Keyframe_interpolator = 1; + /** +

+ @attr description + Concrete value to assign to this piece of named meta-data. + The data can later be retrieved from the meta data Bundle + through {@link android.os.Bundle#getString Bundle.getString}, + {@link android.os.Bundle#getInt Bundle.getInt}, + {@link android.os.Bundle#getBoolean Bundle.getBoolean}, + or {@link android.os.Bundle#getFloat Bundle.getFloat} depending + on the type used here. + + +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a boolean value, either "true" or "false". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

May be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#value}. + @attr name android:value + */ + public static final int Keyframe_value = 0; + /** +

+ @attr description + The type of valueFrom and valueTo. + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
floatType0 The given values are floats. This is the default value if valueType is + unspecified. Note that if any value attribute has a color value + (beginning with "#"), then this attribute is ignored and the color values are + interpreted as integers.
intType1 values are integers.
pathType2 values are paths defined as strings. + This type is used for path morphing in AnimatedVectorDrawable.
colorType3 values are colors, which are integers starting with "#".
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#valueType}. + @attr name android:valueType + */ + public static final int Keyframe_valueType = 2; + /** Attributes that can be used with a KeyguardGlowStripView. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #KeyguardGlowStripView_dotSize android:dotSize}
{@link #KeyguardGlowStripView_glowDot android:glowDot}
{@link #KeyguardGlowStripView_leftToRight android:leftToRight}
{@link #KeyguardGlowStripView_numDots android:numDots}
+ @see #KeyguardGlowStripView_dotSize + @see #KeyguardGlowStripView_glowDot + @see #KeyguardGlowStripView_leftToRight + @see #KeyguardGlowStripView_numDots + */ + public static final int[] KeyguardGlowStripView = { + 0x011600a1, 0x011600a2, 0x011600a3, 0x011600a4 + }; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#dotSize} + attribute's value can be found in the {@link #KeyguardGlowStripView} array. + @attr name com.android.internal:dotSize + */ + public static final int KeyguardGlowStripView_dotSize = 0; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#glowDot} + attribute's value can be found in the {@link #KeyguardGlowStripView} array. + @attr name com.android.internal:glowDot + */ + public static final int KeyguardGlowStripView_glowDot = 2; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#leftToRight} + attribute's value can be found in the {@link #KeyguardGlowStripView} array. + @attr name com.android.internal:leftToRight + */ + public static final int KeyguardGlowStripView_leftToRight = 3; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#numDots} + attribute's value can be found in the {@link #KeyguardGlowStripView} array. + @attr name com.android.internal:numDots + */ + public static final int KeyguardGlowStripView_numDots = 1; + /** Drawable used to render several drawables stacked on top of each other. + Each child drawable can be controlled individually. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LayerDrawable_autoMirrored android:autoMirrored} Indicates if the drawable needs to be mirrored when its layout direction is + RTL (right-to-left).
{@link #LayerDrawable_opacity android:opacity} Indicates the opacity of the layer.
{@link #LayerDrawable_paddingBottom android:paddingBottom} Explicit bottom padding.
{@link #LayerDrawable_paddingEnd android:paddingEnd} Explicit end padding.
{@link #LayerDrawable_paddingLeft android:paddingLeft} Explicit left padding.
{@link #LayerDrawable_paddingMode android:paddingMode} Indicates how layer padding should affect the bounds of subsequent layers.
{@link #LayerDrawable_paddingRight android:paddingRight} Explicit right padding.
{@link #LayerDrawable_paddingStart android:paddingStart} Explicit start padding.
{@link #LayerDrawable_paddingTop android:paddingTop} Explicit top padding.
+ @see #LayerDrawable_autoMirrored + @see #LayerDrawable_opacity + @see #LayerDrawable_paddingBottom + @see #LayerDrawable_paddingEnd + @see #LayerDrawable_paddingLeft + @see #LayerDrawable_paddingMode + @see #LayerDrawable_paddingRight + @see #LayerDrawable_paddingStart + @see #LayerDrawable_paddingTop + */ + public static final int[] LayerDrawable = { + 0x010100d6, 0x010100d7, 0x010100d8, 0x010100d9, + 0x0101031e, 0x010103b3, 0x010103b4, 0x010103ea, + 0x01010457 + }; + /** +

+ @attr description + Indicates if the drawable needs to be mirrored when its layout direction is + RTL (right-to-left). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#autoMirrored}. + @attr name android:autoMirrored + */ + public static final int LayerDrawable_autoMirrored = 7; + /** +

+ @attr description + Indicates the opacity of the layer. This can be useful to allow the + system to enable drawing optimizations. The default value is + translucent. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
opaque-1 Indicates that the layer is opaque and contains no transparent + nor translucent pixels.
transparent-2 The layer is completely transparent (no pixel will be drawn.)
translucent-3 The layer has translucent pixels.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#opacity}. + @attr name android:opacity + */ + public static final int LayerDrawable_opacity = 4; + /** +

+ @attr description + Explicit bottom padding. Overrides child padding. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#paddingBottom}. + @attr name android:paddingBottom + */ + public static final int LayerDrawable_paddingBottom = 3; + /** +

+ @attr description + Explicit end padding. Overrides child padding. Takes precedence + over absolute padding (e.g. right when layout direction is LTR). + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#paddingEnd}. + @attr name android:paddingEnd + */ + public static final int LayerDrawable_paddingEnd = 6; + /** +

+ @attr description + Explicit left padding. Overrides child padding. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#paddingLeft}. + @attr name android:paddingLeft + */ + public static final int LayerDrawable_paddingLeft = 0; + /** +

+ @attr description + Indicates how layer padding should affect the bounds of subsequent layers. + The default padding mode value is nest. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
nest0 Nest each layer inside the padding of the previous layer.
stack1 Stack each layer directly atop the previous layer.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#paddingMode}. + @attr name android:paddingMode + */ + public static final int LayerDrawable_paddingMode = 8; + /** +

+ @attr description + Explicit right padding. Overrides child padding. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#paddingRight}. + @attr name android:paddingRight + */ + public static final int LayerDrawable_paddingRight = 2; + /** +

+ @attr description + Explicit start padding. Overrides child padding. Takes precedence + over absolute padding (e.g. left when layout direction is LTR). + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#paddingStart}. + @attr name android:paddingStart + */ + public static final int LayerDrawable_paddingStart = 5; + /** +

+ @attr description + Explicit top padding. Overrides child padding. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#paddingTop}. + @attr name android:paddingTop + */ + public static final int LayerDrawable_paddingTop = 1; + /** Describes an item (or child) of a LayerDrawable. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #LayerDrawableItem_bottom android:bottom} Bottom inset to apply to the layer.
{@link #LayerDrawableItem_drawable android:drawable} Drawable used to render the layer.
{@link #LayerDrawableItem_end android:end} End inset to apply to the layer.
{@link #LayerDrawableItem_gravity android:gravity} Gravity used to align the layer within its container.
{@link #LayerDrawableItem_height android:height} Height of the layer.
{@link #LayerDrawableItem_id android:id} Identifier of the layer.
{@link #LayerDrawableItem_left android:left} Left inset to apply to the layer.
{@link #LayerDrawableItem_right android:right} Right inset to apply to the layer.
{@link #LayerDrawableItem_start android:start} Start inset to apply to the layer.
{@link #LayerDrawableItem_top android:top} Top inset to apply to the layer.
{@link #LayerDrawableItem_width android:width} Width of the layer.
+ @see #LayerDrawableItem_bottom + @see #LayerDrawableItem_drawable + @see #LayerDrawableItem_end + @see #LayerDrawableItem_gravity + @see #LayerDrawableItem_height + @see #LayerDrawableItem_id + @see #LayerDrawableItem_left + @see #LayerDrawableItem_right + @see #LayerDrawableItem_start + @see #LayerDrawableItem_top + @see #LayerDrawableItem_width + */ + public static final int[] LayerDrawableItem = { + 0x010100af, 0x010100d0, 0x01010155, 0x01010159, + 0x01010199, 0x010101ad, 0x010101ae, 0x010101af, + 0x010101b0, 0x010104db, 0x010104dc + }; + /** +

+ @attr description + Bottom inset to apply to the layer. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#bottom}. + @attr name android:bottom + */ + public static final int LayerDrawableItem_bottom = 8; + /** +

+ @attr description + Drawable used to render the layer. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawable}. + @attr name android:drawable + */ + public static final int LayerDrawableItem_drawable = 4; + /** +

+ @attr description + End inset to apply to the layer. Overrides {@code left} or + {@code right} depending on layout direction. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#end}. + @attr name android:end + */ + public static final int LayerDrawableItem_end = 10; + /** +

+ @attr description + Gravity used to align the layer within its container. If no value + is specified, the default behavior depends on whether an explicit + width or height has been set, If no dimension is set, gravity in + that direction defaults to {@code fill_horizontal} or + {@code fill_vertical}; otherwise, it defaults to {@code left} or + {@code top}. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#gravity}. + @attr name android:gravity + */ + public static final int LayerDrawableItem_gravity = 0; + /** +

+ @attr description + Height of the layer. Defaults to the layer's intrinsic height + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#height}. + @attr name android:height + */ + public static final int LayerDrawableItem_height = 2; + /** +

+ @attr description + Identifier of the layer. This can be used to retrieve the layer + from a drawable container. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#id}. + @attr name android:id + */ + public static final int LayerDrawableItem_id = 1; + /** +

+ @attr description + Left inset to apply to the layer. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#left}. + @attr name android:left + */ + public static final int LayerDrawableItem_left = 5; + /** +

+ @attr description + Right inset to apply to the layer. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#right}. + @attr name android:right + */ + public static final int LayerDrawableItem_right = 7; + /** +

+ @attr description + Start inset to apply to the layer. Overrides {@code left} or + {@code right} depending on layout direction. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#start}. + @attr name android:start + */ + public static final int LayerDrawableItem_start = 9; + /** +

+ @attr description + Top inset to apply to the layer. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#top}. + @attr name android:top + */ + public static final int LayerDrawableItem_top = 6; + /** +

+ @attr description + Width of the layer. Defaults to the layer's intrinsic width. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#width}. + @attr name android:width + */ + public static final int LayerDrawableItem_width = 3; + /** Attributes that can be used with a LayoutAnimation. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LayoutAnimation_animation android:animation} Animation to use on each child.
{@link #LayoutAnimation_animationOrder android:animationOrder} The order in which the animations will be started.
{@link #LayoutAnimation_delay android:delay} Fraction of the animation duration used to delay the beginning of + the animation of each child.
{@link #LayoutAnimation_interpolator android:interpolator} Interpolator used to interpolate the delay between the start of + each animation.
+ @see #LayoutAnimation_animation + @see #LayoutAnimation_animationOrder + @see #LayoutAnimation_delay + @see #LayoutAnimation_interpolator + */ + public static final int[] LayoutAnimation = { + 0x01010141, 0x010101cc, 0x010101cd, 0x010101ce + }; + /** +

+ @attr description + Animation to use on each child. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#animation}. + @attr name android:animation + */ + public static final int LayoutAnimation_animation = 2; + /** +

+ @attr description + The order in which the animations will be started. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0 Animations are started in the natural order.
reverse1 Animations are started in the reverse order.
random2 Animations are started randomly.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#animationOrder}. + @attr name android:animationOrder + */ + public static final int LayoutAnimation_animationOrder = 3; + /** +

+ @attr description + Fraction of the animation duration used to delay the beginning of + the animation of each child. + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#delay}. + @attr name android:delay + */ + public static final int LayoutAnimation_delay = 1; + /** +

+ @attr description + Interpolator used to interpolate the delay between the start of + each animation. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#interpolator}. + @attr name android:interpolator + */ + public static final int LayoutAnimation_interpolator = 0; + /** Attributes that can be used with a LevelListDrawableItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #LevelListDrawableItem_drawable android:drawable} Reference to a drawable resource to use for the frame.
{@link #LevelListDrawableItem_maxLevel android:maxLevel} The maximum level allowed for this item.
{@link #LevelListDrawableItem_minLevel android:minLevel} The minimum level allowed for this item.
+ @see #LevelListDrawableItem_drawable + @see #LevelListDrawableItem_maxLevel + @see #LevelListDrawableItem_minLevel + */ + public static final int[] LevelListDrawableItem = { + 0x01010199, 0x010101b1, 0x010101b2 + }; + /** +

+ @attr description + Reference to a drawable resource to use for the frame. If not + given, the drawable must be defined by the first child tag. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawable}. + @attr name android:drawable + */ + public static final int LevelListDrawableItem_drawable = 0; + /** +

+ @attr description + The maximum level allowed for this item. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxLevel}. + @attr name android:maxLevel + */ + public static final int LevelListDrawableItem_maxLevel = 2; + /** +

+ @attr description + The minimum level allowed for this item. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#minLevel}. + @attr name android:minLevel + */ + public static final int LevelListDrawableItem_minLevel = 1; + /** @hide +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Lighting_ambientShadowAlpha android:ambientShadowAlpha} Alpha value of the ambient shadow projected by elevated views, between 0 and 1.
{@link #Lighting_lightRadius android:lightRadius}
{@link #Lighting_lightY android:lightY}
{@link #Lighting_lightZ android:lightZ}
{@link #Lighting_spotShadowAlpha android:spotShadowAlpha} Alpha value of the spot shadow projected by elevated views, between 0 and 1.
+ @see #Lighting_ambientShadowAlpha + @see #Lighting_lightRadius + @see #Lighting_lightY + @see #Lighting_lightZ + @see #Lighting_spotShadowAlpha + */ + public static final int[] Lighting = { + 0x010104be, 0x010104bf, 0x01160035, 0x01160036, + 0x01160037 + }; + /** +

+ @attr description + Alpha value of the ambient shadow projected by elevated views, between 0 and 1. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#ambientShadowAlpha}. + @attr name android:ambientShadowAlpha + */ + public static final int Lighting_ambientShadowAlpha = 0; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#lightRadius} + attribute's value can be found in the {@link #Lighting} array. + @attr name com.android.internal:lightRadius + */ + public static final int Lighting_lightRadius = 4; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#lightY} + attribute's value can be found in the {@link #Lighting} array. + @attr name com.android.internal:lightY + */ + public static final int Lighting_lightY = 2; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#lightZ} + attribute's value can be found in the {@link #Lighting} array. + @attr name com.android.internal:lightZ + */ + public static final int Lighting_lightZ = 3; + /** +

+ @attr description + Alpha value of the spot shadow projected by elevated views, between 0 and 1. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#spotShadowAlpha}. + @attr name android:spotShadowAlpha + */ + public static final int Lighting_spotShadowAlpha = 1; + /** Attributes that can be used with a LinearLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayout_baselineAligned android:baselineAligned} When set to false, prevents the layout from aligning its children's + baselines.
{@link #LinearLayout_baselineAlignedChildIndex android:baselineAlignedChildIndex} When a linear layout is part of another layout that is baseline + aligned, it can specify which of its children to baseline align to + (that is, which child TextView).
{@link #LinearLayout_divider android:divider} Drawable to use as a vertical divider between buttons.
{@link #LinearLayout_dividerPadding android:dividerPadding} Size of padding on either end of a divider.
{@link #LinearLayout_gravity android:gravity} Specifies how an object should position its content, on both the X and Y axes, + within its own bounds.
{@link #LinearLayout_measureWithLargestChild android:measureWithLargestChild} When set to true, all children with a weight will be considered having + the minimum size of the largest child.
{@link #LinearLayout_orientation android:orientation} Should the layout be a column or a row? Use "horizontal" + for a row, "vertical" for a column.
{@link #LinearLayout_showDividers android:showDividers} Setting for which dividers to show.
{@link #LinearLayout_weightSum android:weightSum} Defines the maximum weight sum.
+ @see #LinearLayout_baselineAligned + @see #LinearLayout_baselineAlignedChildIndex + @see #LinearLayout_divider + @see #LinearLayout_dividerPadding + @see #LinearLayout_gravity + @see #LinearLayout_measureWithLargestChild + @see #LinearLayout_orientation + @see #LinearLayout_showDividers + @see #LinearLayout_weightSum + */ + public static final int[] LinearLayout = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x01010129, 0x010102d4, 0x01010329, + 0x0101032a + }; + /** +

+ @attr description + When set to false, prevents the layout from aligning its children's + baselines. This attribute is particularly useful when the children + use different values for gravity. The default value is true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#baselineAligned}. + @attr name android:baselineAligned + */ + public static final int LinearLayout_baselineAligned = 2; + /** +

+ @attr description + When a linear layout is part of another layout that is baseline + aligned, it can specify which of its children to baseline align to + (that is, which child TextView). + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#baselineAlignedChildIndex}. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayout_baselineAlignedChildIndex = 3; + /** +

+ @attr description + Drawable to use as a vertical divider between buttons. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#divider}. + @attr name android:divider + */ + public static final int LinearLayout_divider = 5; + /** +

+ @attr description + Size of padding on either end of a divider. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dividerPadding}. + @attr name android:dividerPadding + */ + public static final int LinearLayout_dividerPadding = 8; + /** +

+ @attr description + Specifies how an object should position its content, on both the X and Y axes, + within its own bounds. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#gravity}. + @attr name android:gravity + */ + public static final int LinearLayout_gravity = 0; + /** +

+ @attr description + When set to true, all children with a weight will be considered having + the minimum size of the largest child. If false, all children are + measured normally. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#measureWithLargestChild}. + @attr name android:measureWithLargestChild + */ + public static final int LinearLayout_measureWithLargestChild = 6; + /** +

+ @attr description + Should the layout be a column or a row? Use "horizontal" + for a row, "vertical" for a column. The default is + horizontal. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
horizontal0 Defines an horizontal widget.
vertical1 Defines a vertical widget.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#orientation}. + @attr name android:orientation + */ + public static final int LinearLayout_orientation = 1; + /** +

+ @attr description + Setting for which dividers to show. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#showDividers}. + @attr name android:showDividers + */ + public static final int LinearLayout_showDividers = 7; + /** +

+ @attr description + Defines the maximum weight sum. If unspecified, the sum is computed + by adding the layout_weight of all of the children. This can be + used for instance to give a single child 50% of the total available + space by giving it a layout_weight of 0.5 and setting the weightSum + to 1.0. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#weightSum}. + @attr name android:weightSum + */ + public static final int LinearLayout_weightSum = 4; + /** Attributes that can be used with a LinearLayout_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayout_Layout_layout_gravity android:layout_gravity} Standard gravity constant that a child supplies to its parent.
{@link #LinearLayout_Layout_layout_height android:layout_height} Specifies the basic height of the view.
{@link #LinearLayout_Layout_layout_weight android:layout_weight}
{@link #LinearLayout_Layout_layout_width android:layout_width} Specifies the basic width of the view.
+ @see #LinearLayout_Layout_layout_gravity + @see #LinearLayout_Layout_layout_height + @see #LinearLayout_Layout_layout_weight + @see #LinearLayout_Layout_layout_width + */ + public static final int[] LinearLayout_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

+ @attr description + Standard gravity constant that a child supplies to its parent. + Defines how the child view should be positioned, on both the X and Y axes, within its enclosing layout. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_gravity}. + @attr name android:layout_gravity + */ + public static final int LinearLayout_Layout_layout_gravity = 0; + /** +

+ @attr description + Specifies the basic height of the view. This is a required attribute + for any view inside of a containing layout manager. Its value may + be a dimension (such as "12dip") for a constant height or one of + the special constants. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
fill_parent-1 The view should be as big as its parent (minus padding). + This constant is deprecated starting from API Level 8 and + is replaced by {@code match_parent}.
match_parent-1 The view should be as big as its parent (minus padding). + Introduced in API Level 8.
wrap_content-2 The view should be only big enough to enclose its content (plus padding).
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_height}. + @attr name android:layout_height + */ + public static final int LinearLayout_Layout_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayout_Layout} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:layout_weight + */ + public static final int LinearLayout_Layout_layout_weight = 3; + /** +

+ @attr description + Specifies the basic width of the view. This is a required attribute + for any view inside of a containing layout manager. Its value may + be a dimension (such as "12dip") for a constant width or one of + the special constants. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
fill_parent-1 The view should be as big as its parent (minus padding). + This constant is deprecated starting from API Level 8 and + is replaced by {@code match_parent}.
match_parent-1 The view should be as big as its parent (minus padding). + Introduced in API Level 8.
wrap_content-2 The view should be only big enough to enclose its content (plus padding).
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_width}. + @attr name android:layout_width + */ + public static final int LinearLayout_Layout_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_dropDownHorizontalOffset android:dropDownHorizontalOffset} Amount of pixels by which the drop down should be offset horizontally.
{@link #ListPopupWindow_dropDownVerticalOffset android:dropDownVerticalOffset} Amount of pixels by which the drop down should be offset vertically.
+ @see #ListPopupWindow_dropDownHorizontalOffset + @see #ListPopupWindow_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

+ @attr description + Amount of pixels by which the drop down should be offset horizontally. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dropDownHorizontalOffset}. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_dropDownHorizontalOffset = 0; + /** +

+ @attr description + Amount of pixels by which the drop down should be offset vertically. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dropDownVerticalOffset}. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_dropDownVerticalOffset = 1; + /** Base attributes available to ListPreference. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPreference_entries android:entries} The human-readable array to present as a list.
{@link #ListPreference_entryValues android:entryValues} The array to find the value to save for a preference when an entry from + entries is selected.
+ @see #ListPreference_entries + @see #ListPreference_entryValues + */ + public static final int[] ListPreference = { + 0x010100b2, 0x010101f8 + }; + /** +

+ @attr description + The human-readable array to present as a list. Each entry must have a corresponding + index in entryValues. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#entries}. + @attr name android:entries + */ + public static final int ListPreference_entries = 0; + /** +

+ @attr description + The array to find the value to save for a preference when an entry from + entries is selected. If a user clicks on the second item in entries, the + second item in this array will be saved to the preference. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#entryValues}. + @attr name android:entryValues + */ + public static final int ListPreference_entryValues = 1; + /** Attributes that can be used with a ListView. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #ListView_divider android:divider} Drawable or color to draw between list items.
{@link #ListView_dividerHeight android:dividerHeight} Height of the divider.
{@link #ListView_entries android:entries} Reference to an array resource that will populate the ListView.
{@link #ListView_footerDividersEnabled android:footerDividersEnabled} When set to false, the ListView will not draw the divider before each footer view.
{@link #ListView_headerDividersEnabled android:headerDividersEnabled} When set to false, the ListView will not draw the divider after each header view.
{@link #ListView_overScrollFooter android:overScrollFooter} Drawable to draw below list content.
{@link #ListView_overScrollHeader android:overScrollHeader} Drawable to draw above list content.
+ @see #ListView_divider + @see #ListView_dividerHeight + @see #ListView_entries + @see #ListView_footerDividersEnabled + @see #ListView_headerDividersEnabled + @see #ListView_overScrollFooter + @see #ListView_overScrollHeader + */ + public static final int[] ListView = { + 0x010100b2, 0x01010129, 0x0101012a, 0x0101022e, + 0x0101022f, 0x010102c2, 0x010102c3 + }; + /** +

+ @attr description + Drawable or color to draw between list items. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#divider}. + @attr name android:divider + */ + public static final int ListView_divider = 1; + /** +

+ @attr description + Height of the divider. Will use the intrinsic height of the divider if this + is not specified. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dividerHeight}. + @attr name android:dividerHeight + */ + public static final int ListView_dividerHeight = 2; + /** +

+ @attr description + Reference to an array resource that will populate the ListView. For static content, + this is simpler than populating the ListView programmatically. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#entries}. + @attr name android:entries + */ + public static final int ListView_entries = 0; + /** +

+ @attr description + When set to false, the ListView will not draw the divider before each footer view. + The default value is true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#footerDividersEnabled}. + @attr name android:footerDividersEnabled + */ + public static final int ListView_footerDividersEnabled = 4; + /** +

+ @attr description + When set to false, the ListView will not draw the divider after each header view. + The default value is true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#headerDividersEnabled}. + @attr name android:headerDividersEnabled + */ + public static final int ListView_headerDividersEnabled = 3; + /** +

+ @attr description + Drawable to draw below list content. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#overScrollFooter}. + @attr name android:overScrollFooter + */ + public static final int ListView_overScrollFooter = 6; + /** +

+ @attr description + Drawable to draw above list content. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#overScrollHeader}. + @attr name android:overScrollHeader + */ + public static final int ListView_overScrollHeader = 5; + /** Attributes that can be used with a LockPatternView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #LockPatternView_aspect android:aspect} Aspect to use when drawing LockPatternView.
{@link #LockPatternView_errorColor android:errorColor} The error color
{@link #LockPatternView_pathColor android:pathColor} Color to use when drawing LockPatternView paths.
{@link #LockPatternView_regularColor android:regularColor} The regular pattern color
{@link #LockPatternView_successColor android:successColor} The success color
+ @see #LockPatternView_aspect + @see #LockPatternView_errorColor + @see #LockPatternView_pathColor + @see #LockPatternView_regularColor + @see #LockPatternView_successColor + */ + public static final int[] LockPatternView = { + 0x01160085, 0x01160086, 0x01160087, 0x01160088, + 0x01160089 + }; + /** +

+ @attr description + Aspect to use when drawing LockPatternView. Choices are "square"(default), "lock_width" + or "lock_height" +

This is a private symbol. + @attr name com.android.internal:aspect + */ + public static final int LockPatternView_aspect = 0; + /** +

+ @attr description + The error color +

This is a private symbol. + @attr name com.android.internal:errorColor + */ + public static final int LockPatternView_errorColor = 3; + /** +

+ @attr description + Color to use when drawing LockPatternView paths. +

This is a private symbol. + @attr name com.android.internal:pathColor + */ + public static final int LockPatternView_pathColor = 1; + /** +

+ @attr description + The regular pattern color +

This is a private symbol. + @attr name com.android.internal:regularColor + */ + public static final int LockPatternView_regularColor = 2; + /** +

+ @attr description + The success color +

This is a private symbol. + @attr name com.android.internal:successColor + */ + public static final int LockPatternView_successColor = 4; + /** The set of attributes for a MapView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #MapView_apiKey android:apiKey} Value is a string that specifies the Maps API Key to use.
+ @see #MapView_apiKey + */ + public static final int[] MapView = { + 0x01010211 + }; + /** +

+ @attr description + Value is a string that specifies the Maps API Key to use. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#apiKey}. + @attr name android:apiKey + */ + public static final int MapView_apiKey = 0; + /** Drawable used to render the Material progress indicator. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MaterialProgressDrawable_color android:color} Solid color for the gradient shape.
{@link #MaterialProgressDrawable_height android:height} Makes the TextView be exactly this many pixels tall.
{@link #MaterialProgressDrawable_innerRadius android:innerRadius} Inner radius of the ring.
{@link #MaterialProgressDrawable_thickness android:thickness} Thickness of the ring.
{@link #MaterialProgressDrawable_visible android:visible} Provides initial visibility state of the drawable; the default + value is false.
{@link #MaterialProgressDrawable_width android:width} Makes the TextView be exactly this many pixels wide.
+ @see #MaterialProgressDrawable_color + @see #MaterialProgressDrawable_height + @see #MaterialProgressDrawable_innerRadius + @see #MaterialProgressDrawable_thickness + @see #MaterialProgressDrawable_visible + @see #MaterialProgressDrawable_width + */ + public static final int[] MaterialProgressDrawable = { + 0x01010155, 0x01010159, 0x01010194, 0x010101a5, + 0x0101025f, 0x01010260 + }; + /** +

+ @attr description + Solid color for the gradient shape. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int MaterialProgressDrawable_color = 3; + /** +

+ @attr description + Makes the TextView be exactly this many pixels tall. + You could get the same effect by specifying this number in the + layout parameters. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#height}. + @attr name android:height + */ + public static final int MaterialProgressDrawable_height = 0; + /** +

+ @attr description + Inner radius of the ring. When defined, innerRadiusRatio is ignored. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#innerRadius}. + @attr name android:innerRadius + */ + public static final int MaterialProgressDrawable_innerRadius = 4; + /** +

+ @attr description + Thickness of the ring. When defined, thicknessRatio is ignored. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#thickness}. + @attr name android:thickness + */ + public static final int MaterialProgressDrawable_thickness = 5; + /** +

+ @attr description + Provides initial visibility state of the drawable; the default + value is false. See + {@link android.graphics.drawable.Drawable#setVisible}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#visible}. + @attr name android:visible + */ + public static final int MaterialProgressDrawable_visible = 2; + /** +

+ @attr description + Makes the TextView be exactly this many pixels wide. + You could get the same effect by specifying this number in the + layout parameters. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#width}. + @attr name android:width + */ + public static final int MaterialProgressDrawable_width = 1; + /** Attributes that can be used with a MediaRouteButton. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #MediaRouteButton_externalRouteEnabledDrawable android:externalRouteEnabledDrawable} This drawable is a state list where the "activated" state + indicates active media routing.
{@link #MediaRouteButton_mediaRouteTypes android:mediaRouteTypes} The types of media routes the button and its resulting + chooser will filter by.
{@link #MediaRouteButton_minHeight android:minHeight}
{@link #MediaRouteButton_minWidth android:minWidth}
+ @see #MediaRouteButton_externalRouteEnabledDrawable + @see #MediaRouteButton_mediaRouteTypes + @see #MediaRouteButton_minHeight + @see #MediaRouteButton_minWidth + */ + public static final int[] MediaRouteButton = { + 0x0101013f, 0x01010140, 0x010103ae, 0x0116009d + }; + /** +

+ @attr description + This drawable is a state list where the "activated" state + indicates active media routing. Non-activated indicates + that media is playing to the local device only. + @hide +

This is a private symbol. + @attr name com.android.internal:externalRouteEnabledDrawable + */ + public static final int MediaRouteButton_externalRouteEnabledDrawable = 3; + /** +

+ @attr description + The types of media routes the button and its resulting + chooser will filter by. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
liveAudio0x1 Allow selection of live audio routes.
user0x800000 Allow selection of user (app-specified) routes.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#mediaRouteTypes}. + @attr name android:mediaRouteTypes + */ + public static final int MediaRouteButton_mediaRouteTypes = 2; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #MediaRouteButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:minHeight + */ + public static final int MediaRouteButton_minHeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #MediaRouteButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:minWidth + */ + public static final int MediaRouteButton_minWidth = 0; + /** Base attributes that are available to all Menu objects. + */ + public static final int[] Menu = { + + }; + /** Base attributes that are available to all groups. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_checkableBehavior android:checkableBehavior} Whether the items are capable of displaying a check mark.
{@link #MenuGroup_enabled android:enabled} Whether the items are enabled.
{@link #MenuGroup_id android:id} The ID of the group.
{@link #MenuGroup_menuCategory android:menuCategory} The category applied to all items within this group.
{@link #MenuGroup_orderInCategory android:orderInCategory} The order within the category applied to all items within this group.
{@link #MenuGroup_visible android:visible} Whether the items are shown/visible.
+ @see #MenuGroup_checkableBehavior + @see #MenuGroup_enabled + @see #MenuGroup_id + @see #MenuGroup_menuCategory + @see #MenuGroup_orderInCategory + @see #MenuGroup_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

+ @attr description + Whether the items are capable of displaying a check mark. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0 The items are not checkable.
all1 The items are all checkable.
single2 The items are checkable and there will only be a single checked item in + this group.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#checkableBehavior}. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_checkableBehavior = 5; + /** +

+ @attr description + Whether the items are enabled. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#enabled}. + @attr name android:enabled + */ + public static final int MenuGroup_enabled = 0; + /** +

+ @attr description + The ID of the group. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#id}. + @attr name android:id + */ + public static final int MenuGroup_id = 1; + /** +

+ @attr description + The category applied to all items within this group. + (This will be or'ed with the orderInCategory attribute.) + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
container0x00010000 Items are part of a container.
system0x00020000 Items are provided by the system.
secondary0x00030000 Items are user-supplied secondary (infrequently used).
alternative0x00040000 Items are alternative actions.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#menuCategory}. + @attr name android:menuCategory + */ + public static final int MenuGroup_menuCategory = 3; + /** +

+ @attr description + The order within the category applied to all items within this group. + (This will be or'ed with the category attribute.) + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#orderInCategory}. + @attr name android:orderInCategory + */ + public static final int MenuGroup_orderInCategory = 4; + /** +

+ @attr description + Whether the items are shown/visible. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#visible}. + @attr name android:visible + */ + public static final int MenuGroup_visible = 2; + /** Base attributes that are available to all Item objects. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout android:actionLayout} An optional layout to be used as an action view.
{@link #MenuItem_actionProviderClass android:actionProviderClass} The name of an optional ActionProvider class to instantiate an action view + and perform operations such as default action for that menu item.
{@link #MenuItem_actionViewClass android:actionViewClass} The name of an optional View class to instantiate and use as an + action view.
{@link #MenuItem_alphabeticShortcut android:alphabeticShortcut} The alphabetic shortcut key.
{@link #MenuItem_checkable android:checkable} Whether the item is capable of displaying a check mark.
{@link #MenuItem_checked android:checked} Whether the item is checked.
{@link #MenuItem_enabled android:enabled} Whether the item is enabled.
{@link #MenuItem_icon android:icon} The icon associated with this item.
{@link #MenuItem_id android:id} The ID of the item.
{@link #MenuItem_menuCategory android:menuCategory} The category applied to the item.
{@link #MenuItem_numericShortcut android:numericShortcut} The numeric shortcut key.
{@link #MenuItem_onClick android:onClick} Name of a method on the Context used to inflate the menu that will be + called when the item is clicked.
{@link #MenuItem_orderInCategory android:orderInCategory} The order within the category applied to the item.
{@link #MenuItem_showAsAction android:showAsAction} How this item should display in the Action Bar, if present.
{@link #MenuItem_title android:title} The title associated with the item.
{@link #MenuItem_titleCondensed android:titleCondensed} The condensed title associated with the item.
{@link #MenuItem_visible android:visible} Whether the item is shown/visible.
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_alphabeticShortcut + @see #MenuItem_checkable + @see #MenuItem_checked + @see #MenuItem_enabled + @see #MenuItem_icon + @see #MenuItem_id + @see #MenuItem_menuCategory + @see #MenuItem_numericShortcut + @see #MenuItem_onClick + @see #MenuItem_orderInCategory + @see #MenuItem_showAsAction + @see #MenuItem_title + @see #MenuItem_titleCondensed + @see #MenuItem_visible + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x010102d9, 0x010102fb, 0x010102fc, + 0x01010389 + }; + /** +

+ @attr description + An optional layout to be used as an action view. + See {@link android.view.MenuItem#setActionView(android.view.View)} + for more info. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionLayout}. + @attr name android:actionLayout + */ + public static final int MenuItem_actionLayout = 14; + /** +

+ @attr description + The name of an optional ActionProvider class to instantiate an action view + and perform operations such as default action for that menu item. + See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} + for more info. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionProviderClass}. + @attr name android:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 16; + /** +

+ @attr description + The name of an optional View class to instantiate and use as an + action view. See {@link android.view.MenuItem#setActionView(android.view.View)} + for more info. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionViewClass}. + @attr name android:actionViewClass + */ + public static final int MenuItem_actionViewClass = 15; + /** +

+ @attr description + The alphabetic shortcut key. This is the shortcut when using a keyboard + with alphabetic keys. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#alphabeticShortcut}. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_alphabeticShortcut = 9; + /** +

+ @attr description + Whether the item is capable of displaying a check mark. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#checkable}. + @attr name android:checkable + */ + public static final int MenuItem_checkable = 11; + /** +

+ @attr description + Whether the item is checked. Note that you must first have enabled checking with + the checkable attribute or else the check mark will not appear. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#checked}. + @attr name android:checked + */ + public static final int MenuItem_checked = 3; + /** +

+ @attr description + Whether the item is enabled. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#enabled}. + @attr name android:enabled + */ + public static final int MenuItem_enabled = 1; + /** +

+ @attr description + The icon associated with this item. This icon will not always be shown, so + the title should be sufficient in describing this item. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int MenuItem_icon = 0; + /** +

+ @attr description + The ID of the item. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#id}. + @attr name android:id + */ + public static final int MenuItem_id = 2; + /** +

+ @attr description + The category applied to the item. + (This will be or'ed with the orderInCategory attribute.) + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
container0x00010000 Items are part of a container.
system0x00020000 Items are provided by the system.
secondary0x00030000 Items are user-supplied secondary (infrequently used).
alternative0x00040000 Items are alternative actions.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#menuCategory}. + @attr name android:menuCategory + */ + public static final int MenuItem_menuCategory = 5; + /** +

+ @attr description + The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key) + keyboard. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#numericShortcut}. + @attr name android:numericShortcut + */ + public static final int MenuItem_numericShortcut = 10; + /** +

+ @attr description + Name of a method on the Context used to inflate the menu that will be + called when the item is clicked. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#onClick}. + @attr name android:onClick + */ + public static final int MenuItem_onClick = 12; + /** +

+ @attr description + The order within the category applied to the item. + (This will be or'ed with the category attribute.) + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#orderInCategory}. + @attr name android:orderInCategory + */ + public static final int MenuItem_orderInCategory = 6; + /** +

+ @attr description + How this item should display in the Action Bar, if present. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0 Never show this item in an action bar, show it in the overflow menu instead. + Mutually exclusive with "ifRoom" and "always".
ifRoom1 Show this item in an action bar if there is room for it as determined + by the system. Favor this option over "always" where possible. + Mutually exclusive with "never" and "always".
always2 Always show this item in an actionbar, even if it would override + the system's limits of how much stuff to put there. This may make + your action bar look bad on some screens. In most cases you should + use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".
withText4 When this item is shown as an action in the action bar, show a text + label with it even if it has an icon representation.
collapseActionView8 This item's action view collapses to a normal menu + item. When expanded, the action view takes over a + larger segment of its container.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#showAsAction}. + @attr name android:showAsAction + */ + public static final int MenuItem_showAsAction = 13; + /** +

+ @attr description + The title associated with the item. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#title}. + @attr name android:title + */ + public static final int MenuItem_title = 7; + /** +

+ @attr description + The condensed title associated with the item. This is used in situations where the + normal title may be too long to be displayed. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#titleCondensed}. + @attr name android:titleCondensed + */ + public static final int MenuItem_titleCondensed = 8; + /** +

+ @attr description + Whether the item is shown/visible. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#visible}. + @attr name android:visible + */ + public static final int MenuItem_visible = 4; + /** State array representing a menu item that is currently focused and checked. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #MenuItemCheckedFocusedState_state_checkable android:state_checkable} State identifier indicating that the object may display a check mark.
{@link #MenuItemCheckedFocusedState_state_checked android:state_checked} State identifier indicating that the object is currently checked.
{@link #MenuItemCheckedFocusedState_state_focused android:state_focused} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view has input focus.
+ @see #MenuItemCheckedFocusedState_state_checkable + @see #MenuItemCheckedFocusedState_state_checked + @see #MenuItemCheckedFocusedState_state_focused + */ + public static final int[] MenuItemCheckedFocusedState = { + 0x0101009c, 0x0101009f, 0x010100a0 + }; + /** +

+ @attr description + State identifier indicating that the object may display a check mark. + See {@link android.R.attr#state_checked} for the identifier that indicates whether it is + actually checked. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_checkable}. + @attr name android:state_checkable + */ + public static final int MenuItemCheckedFocusedState_state_checkable = 1; + /** +

+ @attr description + State identifier indicating that the object is currently checked. See + {@link android.R.attr#state_checkable} for an additional identifier that can indicate if + any object may ever display a check, regardless of whether state_checked is + currently set. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_checked}. + @attr name android:state_checked + */ + public static final int MenuItemCheckedFocusedState_state_checked = 2; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view has input focus. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_focused}. + @attr name android:state_focused + */ + public static final int MenuItemCheckedFocusedState_state_focused = 0; + /** State array representing a menu item that is currently checked. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #MenuItemCheckedState_state_checkable android:state_checkable} State identifier indicating that the object may display a check mark.
{@link #MenuItemCheckedState_state_checked android:state_checked} State identifier indicating that the object is currently checked.
+ @see #MenuItemCheckedState_state_checkable + @see #MenuItemCheckedState_state_checked + */ + public static final int[] MenuItemCheckedState = { + 0x0101009f, 0x010100a0 + }; + /** +

+ @attr description + State identifier indicating that the object may display a check mark. + See {@link android.R.attr#state_checked} for the identifier that indicates whether it is + actually checked. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_checkable}. + @attr name android:state_checkable + */ + public static final int MenuItemCheckedState_state_checkable = 0; + /** +

+ @attr description + State identifier indicating that the object is currently checked. See + {@link android.R.attr#state_checkable} for an additional identifier that can indicate if + any object may ever display a check, regardless of whether state_checked is + currently set. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_checked}. + @attr name android:state_checked + */ + public static final int MenuItemCheckedState_state_checked = 1; + /** State array representing a menu item that is focused and checkable but is not currently checked. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #MenuItemUncheckedFocusedState_state_checkable android:state_checkable} State identifier indicating that the object may display a check mark.
{@link #MenuItemUncheckedFocusedState_state_focused android:state_focused} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view has input focus.
+ @see #MenuItemUncheckedFocusedState_state_checkable + @see #MenuItemUncheckedFocusedState_state_focused + */ + public static final int[] MenuItemUncheckedFocusedState = { + 0x0101009c, 0x0101009f + }; + /** +

+ @attr description + State identifier indicating that the object may display a check mark. + See {@link android.R.attr#state_checked} for the identifier that indicates whether it is + actually checked. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_checkable}. + @attr name android:state_checkable + */ + public static final int MenuItemUncheckedFocusedState_state_checkable = 1; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view has input focus. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_focused}. + @attr name android:state_focused + */ + public static final int MenuItemUncheckedFocusedState_state_focused = 0; + /** State array representing a menu item that is checkable but is not currently checked. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #MenuItemUncheckedState_state_checkable android:state_checkable} State identifier indicating that the object may display a check mark.
+ @see #MenuItemUncheckedState_state_checkable + */ + public static final int[] MenuItemUncheckedState = { + 0x0101009f + }; + /** +

+ @attr description + State identifier indicating that the object may display a check mark. + See {@link android.R.attr#state_checked} for the identifier that indicates whether it is + actually checked. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_checkable}. + @attr name android:state_checkable + */ + public static final int MenuItemUncheckedState_state_checkable = 0; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_headerBackground android:headerBackground} Default background for the menu header.
{@link #MenuView_horizontalDivider android:horizontalDivider} Default horizontal divider between rows of menu items.
{@link #MenuView_itemBackground android:itemBackground} Default background for each menu item.
{@link #MenuView_itemIconDisabledAlpha android:itemIconDisabledAlpha} Default disabled icon alpha for each menu item that shows an icon.
{@link #MenuView_itemTextAppearance android:itemTextAppearance} Default appearance of menu item text.
{@link #MenuView_preserveIconSpacing android:preserveIconSpacing} Whether space should be reserved in layout when an icon is missing.
{@link #MenuView_verticalDivider android:verticalDivider} Default vertical divider between menu items.
{@link #MenuView_windowAnimationStyle android:windowAnimationStyle} Default animations for the menu.
+ @see #MenuView_headerBackground + @see #MenuView_horizontalDivider + @see #MenuView_itemBackground + @see #MenuView_itemIconDisabledAlpha + @see #MenuView_itemTextAppearance + @see #MenuView_preserveIconSpacing + @see #MenuView_verticalDivider + @see #MenuView_windowAnimationStyle + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x01160055 + }; + /** +

+ @attr description + Default background for the menu header. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#headerBackground}. + @attr name android:headerBackground + */ + public static final int MenuView_headerBackground = 4; + /** +

+ @attr description + Default horizontal divider between rows of menu items. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#horizontalDivider}. + @attr name android:horizontalDivider + */ + public static final int MenuView_horizontalDivider = 2; + /** +

+ @attr description + Default background for each menu item. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#itemBackground}. + @attr name android:itemBackground + */ + public static final int MenuView_itemBackground = 5; + /** +

+ @attr description + Default disabled icon alpha for each menu item that shows an icon. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#itemIconDisabledAlpha}. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_itemIconDisabledAlpha = 6; + /** +

+ @attr description + Default appearance of menu item text. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#itemTextAppearance}. + @attr name android:itemTextAppearance + */ + public static final int MenuView_itemTextAppearance = 1; + /** +

+ @attr description + Whether space should be reserved in layout when an icon is missing. +

This is a private symbol. + @attr name com.android.internal:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** +

+ @attr description + Default vertical divider between menu items. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#verticalDivider}. + @attr name android:verticalDivider + */ + public static final int MenuView_verticalDivider = 3; + /** +

+ @attr description + Default animations for the menu. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowAnimationStyle}. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_windowAnimationStyle = 0; + /** Attributes that can be used with a MultiSelectListPreference. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #MultiSelectListPreference_entries android:entries} The human-readable array to present as a list.
{@link #MultiSelectListPreference_entryValues android:entryValues} The array to find the value to save for a preference when an entry from + entries is selected.
+ @see #MultiSelectListPreference_entries + @see #MultiSelectListPreference_entryValues + */ + public static final int[] MultiSelectListPreference = { + 0x010100b2, 0x010101f8 + }; + /** +

+ @attr description + The human-readable array to present as a list. Each entry must have a corresponding + index in entryValues. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#entries}. + @attr name android:entries + */ + public static final int MultiSelectListPreference_entries = 0; + /** +

+ @attr description + The array to find the value to save for a preference when an entry from + entries is selected. If a user clicks the second item in entries, the + second item in this array will be saved to the preference. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#entryValues}. + @attr name android:entryValues + */ + public static final int MultiSelectListPreference_entryValues = 1; + /** Drawable used to draw 9-patches. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #NinePatchDrawable_alpha android:alpha} Specifies the alpha multiplier to apply to the base drawable.
{@link #NinePatchDrawable_autoMirrored android:autoMirrored} Indicates if the drawable needs to be mirrored when its layout direction is + RTL (right-to-left).
{@link #NinePatchDrawable_dither android:dither} Enables or disables dithering of the bitmap if the bitmap does not have the + same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with + an RGB 565 screen).
{@link #NinePatchDrawable_src android:src} Identifier of the bitmap file.
{@link #NinePatchDrawable_tint android:tint} If set, specifies the color to apply to the drawable as a tint.
{@link #NinePatchDrawable_tintMode android:tintMode} When a tint color is set, specifies its Porter-Duff blending mode.
+ @see #NinePatchDrawable_alpha + @see #NinePatchDrawable_autoMirrored + @see #NinePatchDrawable_dither + @see #NinePatchDrawable_src + @see #NinePatchDrawable_tint + @see #NinePatchDrawable_tintMode + */ + public static final int[] NinePatchDrawable = { + 0x01010119, 0x0101011c, 0x01010121, 0x0101031f, + 0x010103ea, 0x010103fb + }; + /** +

+ @attr description + Specifies the alpha multiplier to apply to the base drawable. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#alpha}. + @attr name android:alpha + */ + public static final int NinePatchDrawable_alpha = 3; + /** +

+ @attr description + Indicates if the drawable needs to be mirrored when its layout direction is + RTL (right-to-left). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#autoMirrored}. + @attr name android:autoMirrored + */ + public static final int NinePatchDrawable_autoMirrored = 4; + /** +

+ @attr description + Enables or disables dithering of the bitmap if the bitmap does not have the + same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with + an RGB 565 screen). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dither}. + @attr name android:dither + */ + public static final int NinePatchDrawable_dither = 1; + /** +

+ @attr description + Identifier of the bitmap file. This attribute is mandatory. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#src}. + @attr name android:src + */ + public static final int NinePatchDrawable_src = 0; + /** +

+ @attr description + If set, specifies the color to apply to the drawable as a tint. By default, + no tint is applied. May be a color state list. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tint}. + @attr name android:tint + */ + public static final int NinePatchDrawable_tint = 2; + /** +

+ @attr description + When a tint color is set, specifies its Porter-Duff blending mode. The + default value is src_in, which treats the drawable as an alpha mask. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#tintMode}. + @attr name android:tintMode + */ + public static final int NinePatchDrawable_tintMode = 5; + /** Attributes that can be used with a NumberPicker. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #NumberPicker_hideWheelUntilFocused android:hideWheelUntilFocused} @hide If true then the selector wheel is hidden until the picker has focus.
{@link #NumberPicker_internalLayout android:internalLayout} @hide The layout of the number picker.
{@link #NumberPicker_internalMaxHeight android:internalMaxHeight} @hide The max height of the NumberPicker.
{@link #NumberPicker_internalMaxWidth android:internalMaxWidth} @hide The max width of the NumberPicker.
{@link #NumberPicker_internalMinHeight android:internalMinHeight} @hide The min height of the NumberPicker.
{@link #NumberPicker_internalMinWidth android:internalMinWidth} @hide The min width of the NumberPicker.
{@link #NumberPicker_selectionDivider android:selectionDivider} @hide The divider for making the selection area.
{@link #NumberPicker_selectionDividerHeight android:selectionDividerHeight} @hide The height of the selection divider.
{@link #NumberPicker_selectionDividersDistance android:selectionDividersDistance} @hide The distance between the two selection dividers.
{@link #NumberPicker_solidColor android:solidColor} @hide Color for the solid color background if such for optimized rendering.
{@link #NumberPicker_virtualButtonPressedDrawable android:virtualButtonPressedDrawable} @hide The drawable for pressed virtual (increment/decrement) buttons.
+ @see #NumberPicker_hideWheelUntilFocused + @see #NumberPicker_internalLayout + @see #NumberPicker_internalMaxHeight + @see #NumberPicker_internalMaxWidth + @see #NumberPicker_internalMinHeight + @see #NumberPicker_internalMinWidth + @see #NumberPicker_selectionDivider + @see #NumberPicker_selectionDividerHeight + @see #NumberPicker_selectionDividersDistance + @see #NumberPicker_solidColor + @see #NumberPicker_virtualButtonPressedDrawable + */ + public static final int[] NumberPicker = { + 0x0101034a, 0x01160061, 0x0116006d, 0x0116006e, + 0x0116006f, 0x01160070, 0x01160071, 0x01160072, + 0x01160073, 0x01160074, 0x01160075 + }; + /** +

+ @attr description + @hide If true then the selector wheel is hidden until the picker has focus. +

This is a private symbol. + @attr name com.android.internal:hideWheelUntilFocused + */ + public static final int NumberPicker_hideWheelUntilFocused = 10; + /** +

+ @attr description + @hide The layout of the number picker. +

This is a private symbol. + @attr name com.android.internal:internalLayout + */ + public static final int NumberPicker_internalLayout = 1; + /** +

+ @attr description + @hide The max height of the NumberPicker. +

This is a private symbol. + @attr name com.android.internal:internalMaxHeight + */ + public static final int NumberPicker_internalMaxHeight = 6; + /** +

+ @attr description + @hide The max width of the NumberPicker. +

This is a private symbol. + @attr name com.android.internal:internalMaxWidth + */ + public static final int NumberPicker_internalMaxWidth = 8; + /** +

+ @attr description + @hide The min height of the NumberPicker. +

This is a private symbol. + @attr name com.android.internal:internalMinHeight + */ + public static final int NumberPicker_internalMinHeight = 5; + /** +

+ @attr description + @hide The min width of the NumberPicker. +

This is a private symbol. + @attr name com.android.internal:internalMinWidth + */ + public static final int NumberPicker_internalMinWidth = 7; + /** +

+ @attr description + @hide The divider for making the selection area. +

This is a private symbol. + @attr name com.android.internal:selectionDivider + */ + public static final int NumberPicker_selectionDivider = 2; + /** +

+ @attr description + @hide The height of the selection divider. +

This is a private symbol. + @attr name com.android.internal:selectionDividerHeight + */ + public static final int NumberPicker_selectionDividerHeight = 3; + /** +

+ @attr description + @hide The distance between the two selection dividers. +

This is a private symbol. + @attr name com.android.internal:selectionDividersDistance + */ + public static final int NumberPicker_selectionDividersDistance = 4; + /** +

+ @attr description + @hide Color for the solid color background if such for optimized rendering. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#solidColor}. + @attr name android:solidColor + */ + public static final int NumberPicker_solidColor = 0; + /** +

+ @attr description + @hide The drawable for pressed virtual (increment/decrement) buttons. +

This is a private symbol. + @attr name com.android.internal:virtualButtonPressedDrawable + */ + public static final int NumberPicker_virtualButtonPressedDrawable = 9; + /** Use offhost-apdu-service as the root tag of the XML resource that + describes an {@link android.nfc.cardemulation.OffHostApduService} + service, which is referenced from its + {@link android.nfc.cardemulation.OffHostApduService#SERVICE_META_DATA} entry. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #OffHostApduService_apduServiceBanner android:apduServiceBanner} A drawable that can be rendered in Android's system UI for representing + the service.
{@link #OffHostApduService_description android:description} Short description of the functionality the service implements.
{@link #OffHostApduService_settingsActivity android:settingsActivity} Component name of an activity that allows the user to modify + the settings for this service.
+ @see #OffHostApduService_apduServiceBanner + @see #OffHostApduService_description + @see #OffHostApduService_settingsActivity + */ + public static final int[] OffHostApduService = { + 0x01010020, 0x01010225, 0x010103ed + }; + /** +

+ @attr description + A drawable that can be rendered in Android's system UI for representing + the service. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#apduServiceBanner}. + @attr name android:apduServiceBanner + */ + public static final int OffHostApduService_apduServiceBanner = 2; + /** +

+ @attr description + Short description of the functionality the service implements. This attribute + is mandatory. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#description}. + @attr name android:description + */ + public static final int OffHostApduService_description = 0; + /** +

+ @attr description + Component name of an activity that allows the user to modify + the settings for this service. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#settingsActivity}. + @attr name android:settingsActivity + */ + public static final int OffHostApduService_settingsActivity = 1; + /** Attributes that can be used with a OvershootInterpolator. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #OvershootInterpolator_tension android:tension} This is the amount of tension.
+ @see #OvershootInterpolator_tension + */ + public static final int[] OvershootInterpolator = { + 0x0101026a + }; + /** +

+ @attr description + This is the amount of tension. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tension}. + @attr name android:tension + */ + public static final int OvershootInterpolator_tension = 0; + /** PagedView specific attributes. These attributes are used to customize + a PagedView view in XML files. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #PagedView_pageSpacing android:pageSpacing} The space between adjacent pages of the PagedView.
{@link #PagedView_scrollIndicatorPaddingLeft android:scrollIndicatorPaddingLeft} The padding for the scroll indicator area
{@link #PagedView_scrollIndicatorPaddingRight android:scrollIndicatorPaddingRight}
+ @see #PagedView_pageSpacing + @see #PagedView_scrollIndicatorPaddingLeft + @see #PagedView_scrollIndicatorPaddingRight + */ + public static final int[] PagedView = { + 0x0116009e, 0x0116009f, 0x011600a0 + }; + /** +

+ @attr description + The space between adjacent pages of the PagedView. +

This is a private symbol. + @attr name com.android.internal:pageSpacing + */ + public static final int PagedView_pageSpacing = 0; + /** +

+ @attr description + The padding for the scroll indicator area +

This is a private symbol. + @attr name com.android.internal:scrollIndicatorPaddingLeft + */ + public static final int PagedView_scrollIndicatorPaddingLeft = 1; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#scrollIndicatorPaddingRight} + attribute's value can be found in the {@link #PagedView} array. + @attr name com.android.internal:scrollIndicatorPaddingRight + */ + public static final int PagedView_scrollIndicatorPaddingRight = 2; + /** Attributes that can be used with a PathInterpolator. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #PathInterpolator_controlX1 android:controlX1} The x coordinate of the first control point of the cubic Bezier
{@link #PathInterpolator_controlX2 android:controlX2} The x coordinate of the second control point of the cubic Bezier
{@link #PathInterpolator_controlY1 android:controlY1} The y coordinate of the first control point of the cubic Bezier
{@link #PathInterpolator_controlY2 android:controlY2} The y coordinate of the second control point of the cubic Bezier
{@link #PathInterpolator_pathData android:pathData} The control points defined as a path.
+ @see #PathInterpolator_controlX1 + @see #PathInterpolator_controlX2 + @see #PathInterpolator_controlY1 + @see #PathInterpolator_controlY2 + @see #PathInterpolator_pathData + */ + public static final int[] PathInterpolator = { + 0x010103fc, 0x010103fd, 0x010103fe, 0x010103ff, + 0x01010405 + }; + /** +

+ @attr description + The x coordinate of the first control point of the cubic Bezier + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#controlX1}. + @attr name android:controlX1 + */ + public static final int PathInterpolator_controlX1 = 0; + /** +

+ @attr description + The x coordinate of the second control point of the cubic Bezier + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#controlX2}. + @attr name android:controlX2 + */ + public static final int PathInterpolator_controlX2 = 2; + /** +

+ @attr description + The y coordinate of the first control point of the cubic Bezier + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#controlY1}. + @attr name android:controlY1 + */ + public static final int PathInterpolator_controlY1 = 1; + /** +

+ @attr description + The y coordinate of the second control point of the cubic Bezier + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#controlY2}. + @attr name android:controlY2 + */ + public static final int PathInterpolator_controlY2 = 3; + /** +

+ @attr description + The control points defined as a path. + When pathData is defined, then both of the control points of the + cubic Bezier will be ignored. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#pathData}. + @attr name android:pathData + */ + public static final int PathInterpolator_pathData = 4; + /** Use patternPathMotion as the root tag of the XML resource that + describes a {@link android.transition.PatternPathMotion}. This must be used + within a transition with which the PathMotion should be associated. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PatternPathMotion_patternPathData android:patternPathData} The path string describing the pattern to use for the PathPathMotion.
+ @see #PatternPathMotion_patternPathData + */ + public static final int[] PatternPathMotion = { + 0x010104ca + }; + /** +

+ @attr description + The path string describing the pattern to use for the PathPathMotion. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#patternPathData}. + @attr name android:patternPathData + */ + public static final int PatternPathMotion_patternPathData = 0; + /** Attributes that can be used with a Pointer. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #Pointer_pointerIconArrow android:pointerIconArrow} Reference to a pointer icon drawable with STYLE_ARROW
{@link #Pointer_pointerIconSpotAnchor android:pointerIconSpotAnchor} Reference to a pointer icon drawable with STYLE_SPOT_ANCHOR
{@link #Pointer_pointerIconSpotHover android:pointerIconSpotHover} Reference to a pointer icon drawable with STYLE_SPOT_HOVER
{@link #Pointer_pointerIconSpotTouch android:pointerIconSpotTouch} Reference to a pointer icon drawable with STYLE_SPOT_TOUCH
+ @see #Pointer_pointerIconArrow + @see #Pointer_pointerIconSpotAnchor + @see #Pointer_pointerIconSpotHover + @see #Pointer_pointerIconSpotTouch + */ + public static final int[] Pointer = { + 0x0116008c, 0x0116008d, 0x0116008e, 0x0116008f + }; + /** +

+ @attr description + Reference to a pointer icon drawable with STYLE_ARROW +

This is a private symbol. + @attr name com.android.internal:pointerIconArrow + */ + public static final int Pointer_pointerIconArrow = 0; + /** +

+ @attr description + Reference to a pointer icon drawable with STYLE_SPOT_ANCHOR +

This is a private symbol. + @attr name com.android.internal:pointerIconSpotAnchor + */ + public static final int Pointer_pointerIconSpotAnchor = 3; + /** +

+ @attr description + Reference to a pointer icon drawable with STYLE_SPOT_HOVER +

This is a private symbol. + @attr name com.android.internal:pointerIconSpotHover + */ + public static final int Pointer_pointerIconSpotHover = 1; + /** +

+ @attr description + Reference to a pointer icon drawable with STYLE_SPOT_TOUCH +

This is a private symbol. + @attr name com.android.internal:pointerIconSpotTouch + */ + public static final int Pointer_pointerIconSpotTouch = 2; + /** Attributes that can be used with a PointerIcon. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #PointerIcon_bitmap android:bitmap} Drawable to use as the icon bitmap.
{@link #PointerIcon_hotSpotX android:hotSpotX} X coordinate of the icon hot spot.
{@link #PointerIcon_hotSpotY android:hotSpotY} Y coordinate of the icon hot spot.
+ @see #PointerIcon_bitmap + @see #PointerIcon_hotSpotX + @see #PointerIcon_hotSpotY + */ + public static final int[] PointerIcon = { + 0x01160090, 0x01160091, 0x01160092 + }; + /** +

+ @attr description + Drawable to use as the icon bitmap. +

This is a private symbol. + @attr name com.android.internal:bitmap + */ + public static final int PointerIcon_bitmap = 0; + /** +

+ @attr description + X coordinate of the icon hot spot. +

This is a private symbol. + @attr name com.android.internal:hotSpotX + */ + public static final int PointerIcon_hotSpotX = 1; + /** +

+ @attr description + Y coordinate of the icon hot spot. +

This is a private symbol. + @attr name com.android.internal:hotSpotY + */ + public static final int PointerIcon_hotSpotY = 2; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #PopupWindow_overlapAnchor android:overlapAnchor} Whether the popup window should overlap its anchor view.
{@link #PopupWindow_popupAnimationStyle android:popupAnimationStyle} The animation style to use for the popup window.
{@link #PopupWindow_popupBackground android:popupBackground} The background to use for the popup window.
{@link #PopupWindow_popupElevation android:popupElevation} Window elevation to use for the popup window.
{@link #PopupWindow_popupEnterTransition android:popupEnterTransition} Transition used to move views into the popup window.
{@link #PopupWindow_popupExitTransition android:popupExitTransition} Transition used to move views out of the popup window.
+ @see #PopupWindow_overlapAnchor + @see #PopupWindow_popupAnimationStyle + @see #PopupWindow_popupBackground + @see #PopupWindow_popupElevation + @see #PopupWindow_popupEnterTransition + @see #PopupWindow_popupExitTransition + */ + public static final int[] PopupWindow = { + 0x01010176, 0x010102c9, 0x01010462, 0x0101048c, + 0x0116005d, 0x0116005e + }; + /** +

+ @attr description + Whether the popup window should overlap its anchor view. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#overlapAnchor}. + @attr name android:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 2; + /** +

+ @attr description + The animation style to use for the popup window. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#popupAnimationStyle}. + @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_popupAnimationStyle = 1; + /** +

+ @attr description + The background to use for the popup window. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#popupBackground}. + @attr name android:popupBackground + */ + public static final int PopupWindow_popupBackground = 0; + /** +

+ @attr description + Window elevation to use for the popup window. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#popupElevation}. + @attr name android:popupElevation + */ + public static final int PopupWindow_popupElevation = 3; + /** +

+ @attr description + Transition used to move views into the popup window. +

This is a private symbol. + @attr name com.android.internal:popupEnterTransition + */ + public static final int PopupWindow_popupEnterTransition = 4; + /** +

+ @attr description + Transition used to move views out of the popup window. +

This is a private symbol. + @attr name com.android.internal:popupExitTransition + */ + public static final int PopupWindow_popupExitTransition = 5; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor android:state_above_anchor} State identifier indicating the popup will be above the anchor.
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x010100aa + }; + /** +

+ @attr description + State identifier indicating the popup will be above the anchor. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_above_anchor}. + @attr name android:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Base attributes available to Preference. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Preference_defaultValue android:defaultValue} The default value for the preference, which will be set either if persistence + is off or persistence is on and the preference is not found in the persistent + storage.
{@link #Preference_dependency android:dependency} The key of another Preference that this Preference will depend on.
{@link #Preference_enabled android:enabled} Whether the Preference is enabled.
{@link #Preference_fragment android:fragment} When used inside of a modern PreferenceActivity, this declares + a new PreferenceFragment to be shown when the user selects this item.
{@link #Preference_icon android:icon} The optional icon for the preference
{@link #Preference_key android:key} The key to store the Preference value.
{@link #Preference_layout android:layout} The layout for the Preference in a PreferenceActivity screen.
{@link #Preference_order android:order} The order for the Preference (lower values are to be ordered first).
{@link #Preference_persistent android:persistent} Whether the Preference stores its value to the shared preferences.
{@link #Preference_selectable android:selectable} Whether the Preference is selectable.
{@link #Preference_shouldDisableView android:shouldDisableView} Whether the view of this Preference should be disabled when + this Preference is disabled.
{@link #Preference_summary android:summary} The summary for the Preference in a PreferenceActivity screen.
{@link #Preference_title android:title} The title for the Preference in a PreferenceActivity screen.
{@link #Preference_widgetLayout android:widgetLayout} The layout for the controllable widget portion of a Preference.
+ @see #Preference_defaultValue + @see #Preference_dependency + @see #Preference_enabled + @see #Preference_fragment + @see #Preference_icon + @see #Preference_key + @see #Preference_layout + @see #Preference_order + @see #Preference_persistent + @see #Preference_selectable + @see #Preference_shouldDisableView + @see #Preference_summary + @see #Preference_title + @see #Preference_widgetLayout + */ + public static final int[] Preference = { + 0x01010002, 0x0101000d, 0x0101000e, 0x010100f2, + 0x010101e1, 0x010101e6, 0x010101e8, 0x010101e9, + 0x010101ea, 0x010101eb, 0x010101ec, 0x010101ed, + 0x010101ee, 0x010102e3 + }; + /** +

+ @attr description + The default value for the preference, which will be set either if persistence + is off or persistence is on and the preference is not found in the persistent + storage. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a boolean value, either "true" or "false". +

May be a floating point value, such as "1.2". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#defaultValue}. + @attr name android:defaultValue + */ + public static final int Preference_defaultValue = 11; + /** +

+ @attr description + The key of another Preference that this Preference will depend on. If the other + Preference is not set or is off, this Preference will be disabled. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dependency}. + @attr name android:dependency + */ + public static final int Preference_dependency = 10; + /** +

+ @attr description + Whether the Preference is enabled. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#enabled}. + @attr name android:enabled + */ + public static final int Preference_enabled = 2; + /** +

+ @attr description + When used inside of a modern PreferenceActivity, this declares + a new PreferenceFragment to be shown when the user selects this item. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fragment}. + @attr name android:fragment + */ + public static final int Preference_fragment = 13; + /** +

+ @attr description + The optional icon for the preference + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int Preference_icon = 0; + /** +

+ @attr description + The key to store the Preference value. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#key}. + @attr name android:key + */ + public static final int Preference_key = 6; + /** +

+ @attr description + The layout for the Preference in a PreferenceActivity screen. This should + rarely need to be changed, look at widgetLayout instead. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout}. + @attr name android:layout + */ + public static final int Preference_layout = 3; + /** +

+ @attr description + The order for the Preference (lower values are to be ordered first). If this is not + specified, the default ordering will be alphabetic. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#order}. + @attr name android:order + */ + public static final int Preference_order = 8; + /** +

+ @attr description + Whether the Preference stores its value to the shared preferences. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#persistent}. + @attr name android:persistent + */ + public static final int Preference_persistent = 1; + /** +

+ @attr description + Whether the Preference is selectable. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#selectable}. + @attr name android:selectable + */ + public static final int Preference_selectable = 5; + /** +

+ @attr description + Whether the view of this Preference should be disabled when + this Preference is disabled. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#shouldDisableView}. + @attr name android:shouldDisableView + */ + public static final int Preference_shouldDisableView = 12; + /** +

+ @attr description + The summary for the Preference in a PreferenceActivity screen. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#summary}. + @attr name android:summary + */ + public static final int Preference_summary = 7; + /** +

+ @attr description + The title for the Preference in a PreferenceActivity screen. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#title}. + @attr name android:title + */ + public static final int Preference_title = 4; + /** +

+ @attr description + The layout for the controllable widget portion of a Preference. This is inflated + into the layout for a Preference and should be used more frequently than + the layout attribute. For example, a checkbox preference would specify + a custom layout (consisting of just the CheckBox) here. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#widgetLayout}. + @attr name android:widgetLayout + */ + public static final int Preference_widgetLayout = 9; + /** Base attributes available to PreferenceActivity. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #PreferenceActivity_headerLayout android:headerLayout} The layout for the Preference Header.
{@link #PreferenceActivity_headerRemoveIconIfEmpty android:headerRemoveIconIfEmpty} true if the Icon view will be removed when there is none and thus not showing + the fixed margins.
{@link #PreferenceActivity_layout android:layout} The layout for the Preference Activity.
+ @see #PreferenceActivity_headerLayout + @see #PreferenceActivity_headerRemoveIconIfEmpty + @see #PreferenceActivity_layout + */ + public static final int[] PreferenceActivity = { + 0x010100f2, 0x0116009b, 0x0116009c + }; + /** +

+ @attr description + The layout for the Preference Header. This should rarely need to be changed. +

This is a private symbol. + @attr name com.android.internal:headerLayout + */ + public static final int PreferenceActivity_headerLayout = 1; + /** +

+ @attr description + true if the Icon view will be removed when there is none and thus not showing + the fixed margins. +

This is a private symbol. + @attr name com.android.internal:headerRemoveIconIfEmpty + */ + public static final int PreferenceActivity_headerRemoveIconIfEmpty = 2; + /** +

+ @attr description + The layout for the Preference Activity. This should rarely need to be changed. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout}. + @attr name android:layout + */ + public static final int PreferenceActivity_layout = 0; + /** Base attributes available to PreferenceFragment. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PreferenceFragment_layout android:layout} The layout for the PreferenceFragment.
+ @see #PreferenceFragment_layout + */ + public static final int[] PreferenceFragment = { + 0x010100f2 + }; + /** +

+ @attr description + The layout for the PreferenceFragment. This should rarely need to be changed. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout}. + @attr name android:layout + */ + public static final int PreferenceFragment_layout = 0; + /** Attributes that can be used with a PreferenceFrameLayout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #PreferenceFrameLayout_borderBottom android:borderBottom} Padding to use at the bottom of the prefs content.
{@link #PreferenceFrameLayout_borderLeft android:borderLeft} Padding to use at the left of the prefs content.
{@link #PreferenceFrameLayout_borderRight android:borderRight} Padding to use at the right of the prefs content.
{@link #PreferenceFrameLayout_borderTop android:borderTop} Padding to use at the top of the prefs content.
+ @see #PreferenceFrameLayout_borderBottom + @see #PreferenceFrameLayout_borderLeft + @see #PreferenceFrameLayout_borderRight + @see #PreferenceFrameLayout_borderTop + */ + public static final int[] PreferenceFrameLayout = { + 0x01160050, 0x01160051, 0x01160052, 0x01160053 + }; + /** +

+ @attr description + Padding to use at the bottom of the prefs content. +

This is a private symbol. + @attr name com.android.internal:borderBottom + */ + public static final int PreferenceFrameLayout_borderBottom = 1; + /** +

+ @attr description + Padding to use at the left of the prefs content. +

This is a private symbol. + @attr name com.android.internal:borderLeft + */ + public static final int PreferenceFrameLayout_borderLeft = 2; + /** +

+ @attr description + Padding to use at the right of the prefs content. +

This is a private symbol. + @attr name com.android.internal:borderRight + */ + public static final int PreferenceFrameLayout_borderRight = 3; + /** +

+ @attr description + Padding to use at the top of the prefs content. +

This is a private symbol. + @attr name com.android.internal:borderTop + */ + public static final int PreferenceFrameLayout_borderTop = 0; + /** Attributes that can be used with a PreferenceFrameLayout_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PreferenceFrameLayout_Layout_layout_removeBorders android:layout_removeBorders} Padding to use at the top of the prefs content.
+ @see #PreferenceFrameLayout_Layout_layout_removeBorders + */ + public static final int[] PreferenceFrameLayout_Layout = { + 0x01160054 + }; + /** +

+ @attr description + Padding to use at the top of the prefs content. +

This is a private symbol. + @attr name com.android.internal:layout_removeBorders + */ + public static final int PreferenceFrameLayout_Layout_layout_removeBorders = 0; + /** Base attributes available to PreferenceGroup. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PreferenceGroup_orderingFromXml android:orderingFromXml} Whether to order the Preference under this group as they appear in the XML file.
+ @see #PreferenceGroup_orderingFromXml + */ + public static final int[] PreferenceGroup = { + 0x010101e7 + }; + /** +

+ @attr description + Whether to order the Preference under this group as they appear in the XML file. + If this is false, the ordering will follow the Preference order attribute and + default to alphabetic for those without the order attribute. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#orderingFromXml}. + @attr name android:orderingFromXml + */ + public static final int PreferenceGroup_orderingFromXml = 0; + /** Attribute for a header describing the item shown in the top-level list + from which the selects the set of preference to dig in to. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #PreferenceHeader_breadCrumbShortTitle android:breadCrumbShortTitle} The short title for the bread crumb of this item.
{@link #PreferenceHeader_breadCrumbTitle android:breadCrumbTitle} The title for the bread crumb of this item.
{@link #PreferenceHeader_fragment android:fragment} The fragment that is displayed when the user selects this item.
{@link #PreferenceHeader_icon android:icon} An icon for the item.
{@link #PreferenceHeader_id android:id} Identifier value for the header.
{@link #PreferenceHeader_summary android:summary} The summary for the item.
{@link #PreferenceHeader_title android:title} The title of the item that is shown to the user.
+ @see #PreferenceHeader_breadCrumbShortTitle + @see #PreferenceHeader_breadCrumbTitle + @see #PreferenceHeader_fragment + @see #PreferenceHeader_icon + @see #PreferenceHeader_id + @see #PreferenceHeader_summary + @see #PreferenceHeader_title + */ + public static final int[] PreferenceHeader = { + 0x01010002, 0x010100d0, 0x010101e1, 0x010101e9, + 0x010102e3, 0x01010303, 0x01010304 + }; + /** +

+ @attr description + The short title for the bread crumb of this item. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#breadCrumbShortTitle}. + @attr name android:breadCrumbShortTitle + */ + public static final int PreferenceHeader_breadCrumbShortTitle = 6; + /** +

+ @attr description + The title for the bread crumb of this item. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#breadCrumbTitle}. + @attr name android:breadCrumbTitle + */ + public static final int PreferenceHeader_breadCrumbTitle = 5; + /** +

+ @attr description + The fragment that is displayed when the user selects this item. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fragment}. + @attr name android:fragment + */ + public static final int PreferenceHeader_fragment = 4; + /** +

+ @attr description + An icon for the item. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int PreferenceHeader_icon = 0; + /** +

+ @attr description + Identifier value for the header. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#id}. + @attr name android:id + */ + public static final int PreferenceHeader_id = 1; + /** +

+ @attr description + The summary for the item. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#summary}. + @attr name android:summary + */ + public static final int PreferenceHeader_summary = 3; + /** +

+ @attr description + The title of the item that is shown to the user. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#title}. + @attr name android:title + */ + public static final int PreferenceHeader_title = 2; + /** Use print-service as the root tag of the XML resource that + describes an {@link android.printservice.PrintService} service, which is + referenced from its {@link android.printservice.PrintService#SERVICE_META_DATA} + meta-data entry. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #PrintService_addPrintersActivity android:addPrintersActivity} Fully qualified class name of an activity that allows the user to manually + add printers to this print service.
{@link #PrintService_advancedPrintOptionsActivity android:advancedPrintOptionsActivity} Fully qualified class name of an activity with advanced print options + specific to this print service.
{@link #PrintService_settingsActivity android:settingsActivity} Fully qualified class name of an activity that allows the user to modify + the settings for this service.
{@link #PrintService_vendor android:vendor} The vendor name if this print service is vendor specific.
+ @see #PrintService_addPrintersActivity + @see #PrintService_advancedPrintOptionsActivity + @see #PrintService_settingsActivity + @see #PrintService_vendor + */ + public static final int[] PrintService = { + 0x01010225, 0x010103e6, 0x010103e7, 0x010103f1 + }; + /** +

+ @attr description + Fully qualified class name of an activity that allows the user to manually + add printers to this print service. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#addPrintersActivity}. + @attr name android:addPrintersActivity + */ + public static final int PrintService_addPrintersActivity = 1; + /** +

+ @attr description + Fully qualified class name of an activity with advanced print options + specific to this print service. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#advancedPrintOptionsActivity}. + @attr name android:advancedPrintOptionsActivity + */ + public static final int PrintService_advancedPrintOptionsActivity = 3; + /** +

+ @attr description + Fully qualified class name of an activity that allows the user to modify + the settings for this service. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#settingsActivity}. + @attr name android:settingsActivity + */ + public static final int PrintService_settingsActivity = 0; + /** +

+ @attr description + The vendor name if this print service is vendor specific. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#vendor}. + @attr name android:vendor + */ + public static final int PrintService_vendor = 2; + /** Attributes that can be used with a ProgressBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ProgressBar_animationResolution android:animationResolution} Timeout between frames of animation in milliseconds + {@deprecated Not used by the framework.}
{@link #ProgressBar_backgroundTint android:backgroundTint} Tint to apply to the background.
{@link #ProgressBar_backgroundTintMode android:backgroundTintMode} Blending mode used to apply the background tint.
{@link #ProgressBar_indeterminate android:indeterminate} Allows to enable the indeterminate mode.
{@link #ProgressBar_indeterminateBehavior android:indeterminateBehavior} Defines how the indeterminate mode should behave when the progress + reaches max.
{@link #ProgressBar_indeterminateDrawable android:indeterminateDrawable} Drawable used for the indeterminate mode.
{@link #ProgressBar_indeterminateDuration android:indeterminateDuration} Duration of the indeterminate animation.
{@link #ProgressBar_indeterminateOnly android:indeterminateOnly} Restricts to ONLY indeterminate mode (state-keeping progress mode will not work).
{@link #ProgressBar_indeterminateTint android:indeterminateTint} Tint to apply to the indeterminate progress indicator.
{@link #ProgressBar_indeterminateTintMode android:indeterminateTintMode} Blending mode used to apply the indeterminate progress indicator tint.
{@link #ProgressBar_interpolator android:interpolator}
{@link #ProgressBar_max android:max} Defines the maximum value the progress can take.
{@link #ProgressBar_maxHeight android:maxHeight} An optional argument to supply a maximum height for this view.
{@link #ProgressBar_maxWidth android:maxWidth} An optional argument to supply a maximum width for this view.
{@link #ProgressBar_minHeight android:minHeight}
{@link #ProgressBar_minWidth android:minWidth}
{@link #ProgressBar_mirrorForRtl android:mirrorForRtl} Defines if the associated drawables need to be mirrored when in RTL mode.
{@link #ProgressBar_progress android:progress} Defines the default progress value, between 0 and max.
{@link #ProgressBar_progressBackgroundTint android:progressBackgroundTint} Tint to apply to the progress indicator background.
{@link #ProgressBar_progressBackgroundTintMode android:progressBackgroundTintMode} Blending mode used to apply the progress indicator background tint.
{@link #ProgressBar_progressDrawable android:progressDrawable} Drawable used for the progress mode.
{@link #ProgressBar_progressTint android:progressTint} Tint to apply to the progress indicator.
{@link #ProgressBar_progressTintMode android:progressTintMode} Blending mode used to apply the progress indicator tint.
{@link #ProgressBar_secondaryProgress android:secondaryProgress} Defines the secondary progress value, between 0 and max.
{@link #ProgressBar_secondaryProgressTint android:secondaryProgressTint} Tint to apply to the secondary progress indicator.
{@link #ProgressBar_secondaryProgressTintMode android:secondaryProgressTintMode} Blending mode used to apply the secondary progress indicator tint.
+ @see #ProgressBar_animationResolution + @see #ProgressBar_backgroundTint + @see #ProgressBar_backgroundTintMode + @see #ProgressBar_indeterminate + @see #ProgressBar_indeterminateBehavior + @see #ProgressBar_indeterminateDrawable + @see #ProgressBar_indeterminateDuration + @see #ProgressBar_indeterminateOnly + @see #ProgressBar_indeterminateTint + @see #ProgressBar_indeterminateTintMode + @see #ProgressBar_interpolator + @see #ProgressBar_max + @see #ProgressBar_maxHeight + @see #ProgressBar_maxWidth + @see #ProgressBar_minHeight + @see #ProgressBar_minWidth + @see #ProgressBar_mirrorForRtl + @see #ProgressBar_progress + @see #ProgressBar_progressBackgroundTint + @see #ProgressBar_progressBackgroundTintMode + @see #ProgressBar_progressDrawable + @see #ProgressBar_progressTint + @see #ProgressBar_progressTintMode + @see #ProgressBar_secondaryProgress + @see #ProgressBar_secondaryProgressTint + @see #ProgressBar_secondaryProgressTintMode + */ + public static final int[] ProgressBar = { + 0x0101011f, 0x01010120, 0x01010136, 0x01010137, + 0x01010138, 0x01010139, 0x0101013a, 0x0101013b, + 0x0101013c, 0x0101013d, 0x0101013e, 0x0101013f, + 0x01010140, 0x01010141, 0x0101031a, 0x010103ce, + 0x01010463, 0x01010464, 0x01010465, 0x01010466, + 0x01010467, 0x01010468, 0x01010469, 0x0101046a, + 0x0101046b, 0x0101046c + }; + /** +

+ @attr description + Timeout between frames of animation in milliseconds + {@deprecated Not used by the framework.} + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#animationResolution}. + @attr name android:animationResolution + */ + @Deprecated + public static final int ProgressBar_animationResolution = 14; + /** +

+ @attr description + Tint to apply to the background. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#backgroundTint}. + @attr name android:backgroundTint + */ + public static final int ProgressBar_backgroundTint = 24; + /** +

+ @attr description + Blending mode used to apply the background tint. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#backgroundTintMode}. + @attr name android:backgroundTintMode + */ + public static final int ProgressBar_backgroundTintMode = 25; + /** +

+ @attr description + Allows to enable the indeterminate mode. In this mode the progress + bar plays an infinite looping animation. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#indeterminate}. + @attr name android:indeterminate + */ + public static final int ProgressBar_indeterminate = 5; + /** +

+ @attr description + Defines how the indeterminate mode should behave when the progress + reaches max. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
repeat1 Progress starts over from 0.
cycle2 Progress keeps the current value and goes back to 0.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#indeterminateBehavior}. + @attr name android:indeterminateBehavior + */ + public static final int ProgressBar_indeterminateBehavior = 10; + /** +

+ @attr description + Drawable used for the indeterminate mode. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#indeterminateDrawable}. + @attr name android:indeterminateDrawable + */ + public static final int ProgressBar_indeterminateDrawable = 7; + /** +

+ @attr description + Duration of the indeterminate animation. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#indeterminateDuration}. + @attr name android:indeterminateDuration + */ + public static final int ProgressBar_indeterminateDuration = 9; + /** +

+ @attr description + Restricts to ONLY indeterminate mode (state-keeping progress mode will not work). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#indeterminateOnly}. + @attr name android:indeterminateOnly + */ + public static final int ProgressBar_indeterminateOnly = 6; + /** +

+ @attr description + Tint to apply to the indeterminate progress indicator. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#indeterminateTint}. + @attr name android:indeterminateTint + */ + public static final int ProgressBar_indeterminateTint = 22; + /** +

+ @attr description + Blending mode used to apply the indeterminate progress indicator tint. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#indeterminateTintMode}. + @attr name android:indeterminateTintMode + */ + public static final int ProgressBar_indeterminateTintMode = 23; + /** +

This symbol is the offset where the {@link android.R.attr#interpolator} + attribute's value can be found in the {@link #ProgressBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:interpolator + */ + public static final int ProgressBar_interpolator = 13; + /** +

+ @attr description + Defines the maximum value the progress can take. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#max}. + @attr name android:max + */ + public static final int ProgressBar_max = 2; + /** +

+ @attr description + An optional argument to supply a maximum height for this view. + See {see android.widget.ImageView#setMaxHeight} for details. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxHeight}. + @attr name android:maxHeight + */ + public static final int ProgressBar_maxHeight = 1; + /** +

+ @attr description + An optional argument to supply a maximum width for this view. + See {see android.widget.ImageView#setMaxWidth} for details. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxWidth}. + @attr name android:maxWidth + */ + public static final int ProgressBar_maxWidth = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #ProgressBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:minHeight + */ + public static final int ProgressBar_minHeight = 12; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ProgressBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:minWidth + */ + public static final int ProgressBar_minWidth = 11; + /** +

+ @attr description + Defines if the associated drawables need to be mirrored when in RTL mode. + Default is false + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#mirrorForRtl}. + @attr name android:mirrorForRtl + */ + public static final int ProgressBar_mirrorForRtl = 15; + /** +

+ @attr description + Defines the default progress value, between 0 and max. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#progress}. + @attr name android:progress + */ + public static final int ProgressBar_progress = 3; + /** +

+ @attr description + Tint to apply to the progress indicator background. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#progressBackgroundTint}. + @attr name android:progressBackgroundTint + */ + public static final int ProgressBar_progressBackgroundTint = 18; + /** +

+ @attr description + Blending mode used to apply the progress indicator background tint. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#progressBackgroundTintMode}. + @attr name android:progressBackgroundTintMode + */ + public static final int ProgressBar_progressBackgroundTintMode = 19; + /** +

+ @attr description + Drawable used for the progress mode. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#progressDrawable}. + @attr name android:progressDrawable + */ + public static final int ProgressBar_progressDrawable = 8; + /** +

+ @attr description + Tint to apply to the progress indicator. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#progressTint}. + @attr name android:progressTint + */ + public static final int ProgressBar_progressTint = 16; + /** +

+ @attr description + Blending mode used to apply the progress indicator tint. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#progressTintMode}. + @attr name android:progressTintMode + */ + public static final int ProgressBar_progressTintMode = 17; + /** +

+ @attr description + Defines the secondary progress value, between 0 and max. This progress is drawn between + the primary progress and the background. It can be ideal for media scenarios such as + showing the buffering progress while the default progress shows the play progress. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#secondaryProgress}. + @attr name android:secondaryProgress + */ + public static final int ProgressBar_secondaryProgress = 4; + /** +

+ @attr description + Tint to apply to the secondary progress indicator. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#secondaryProgressTint}. + @attr name android:secondaryProgressTint + */ + public static final int ProgressBar_secondaryProgressTint = 20; + /** +

+ @attr description + Blending mode used to apply the secondary progress indicator tint. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#secondaryProgressTintMode}. + @attr name android:secondaryProgressTintMode + */ + public static final int ProgressBar_secondaryProgressTintMode = 21; + /** Attributes that can be used with a PropertyAnimator. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #PropertyAnimator_pathData android:pathData} The path used to animate the properties in the ObjectAnimator
{@link #PropertyAnimator_propertyName android:propertyName} Name of the property being animated.
{@link #PropertyAnimator_propertyXName android:propertyXName} Name of the property being animated as the X coordinate of the pathData.
{@link #PropertyAnimator_propertyYName android:propertyYName} Name of the property being animated as the Y coordinate of the pathData.
+ @see #PropertyAnimator_pathData + @see #PropertyAnimator_propertyName + @see #PropertyAnimator_propertyXName + @see #PropertyAnimator_propertyYName + */ + public static final int[] PropertyAnimator = { + 0x010102e1, 0x01010405, 0x01010474, 0x01010475 + }; + /** +

+ @attr description + The path used to animate the properties in the ObjectAnimator + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#pathData}. + @attr name android:pathData + */ + public static final int PropertyAnimator_pathData = 1; + /** +

+ @attr description + Name of the property being animated. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#propertyName}. + @attr name android:propertyName + */ + public static final int PropertyAnimator_propertyName = 0; + /** +

+ @attr description + Name of the property being animated as the X coordinate of the pathData. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#propertyXName}. + @attr name android:propertyXName + */ + public static final int PropertyAnimator_propertyXName = 2; + /** +

+ @attr description + Name of the property being animated as the Y coordinate of the pathData. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#propertyYName}. + @attr name android:propertyYName + */ + public static final int PropertyAnimator_propertyYName = 3; + /** Attributes that can be used with a PropertyValuesHolder. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #PropertyValuesHolder_propertyName android:propertyName} Name of the property being animated.
{@link #PropertyValuesHolder_valueFrom android:valueFrom} Value the animation starts from.
{@link #PropertyValuesHolder_valueTo android:valueTo} Value the animation animates to.
{@link #PropertyValuesHolder_valueType android:valueType} The type of valueFrom and valueTo.
+ @see #PropertyValuesHolder_propertyName + @see #PropertyValuesHolder_valueFrom + @see #PropertyValuesHolder_valueTo + @see #PropertyValuesHolder_valueType + */ + public static final int[] PropertyValuesHolder = { + 0x010102de, 0x010102df, 0x010102e0, 0x010102e1 + }; + /** +

+ @attr description + Name of the property being animated. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#propertyName}. + @attr name android:propertyName + */ + public static final int PropertyValuesHolder_propertyName = 3; + /** +

+ @attr description + Value the animation starts from. + + +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

May be a floating point value, such as "1.2". +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#valueFrom}. + @attr name android:valueFrom + */ + public static final int PropertyValuesHolder_valueFrom = 0; + /** +

+ @attr description + Value the animation animates to. + + +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

May be a floating point value, such as "1.2". +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#valueTo}. + @attr name android:valueTo + */ + public static final int PropertyValuesHolder_valueTo = 1; + /** +

+ @attr description + The type of valueFrom and valueTo. + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
floatType0 The given values are floats. This is the default value if valueType is + unspecified. Note that if any value attribute has a color value + (beginning with "#"), then this attribute is ignored and the color values are + interpreted as integers.
intType1 values are integers.
pathType2 values are paths defined as strings. + This type is used for path morphing in AnimatedVectorDrawable.
colorType3 values are colors, which are integers starting with "#".
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#valueType}. + @attr name android:valueType + */ + public static final int PropertyValuesHolder_valueType = 2; + /** Attributes that can be used with a QuickContactBadge. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #QuickContactBadge_quickContactWindowSize android:quickContactWindowSize}
+ @see #QuickContactBadge_quickContactWindowSize + */ + public static final int[] QuickContactBadge = { + 0x01160064 + }; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#quickContactWindowSize} + attribute's value can be found in the {@link #QuickContactBadge} array. + @attr name com.android.internal:quickContactWindowSize + */ + public static final int QuickContactBadge_quickContactWindowSize = 0; + /** Attributes that can be used with a RadioGroup. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #RadioGroup_checkedButton android:checkedButton} The id of the child radio button that should be checked by default + within this radio group.
{@link #RadioGroup_orientation android:orientation} Should the radio group be a column or a row? Use "horizontal" + for a row, "vertical" for a column.
+ @see #RadioGroup_checkedButton + @see #RadioGroup_orientation + */ + public static final int[] RadioGroup = { + 0x010100c4, 0x01010148 + }; + /** +

+ @attr description + The id of the child radio button that should be checked by default + within this radio group. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#checkedButton}. + @attr name android:checkedButton + */ + public static final int RadioGroup_checkedButton = 1; + /** +

+ @attr description + Should the radio group be a column or a row? Use "horizontal" + for a row, "vertical" for a column. The default is + vertical. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
horizontal0 Defines an horizontal widget.
vertical1 Defines a vertical widget.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#orientation}. + @attr name android:orientation + */ + public static final int RadioGroup_orientation = 0; + /** Attributes that can be used with a RatingBar. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #RatingBar_isIndicator android:isIndicator} Whether this rating bar is an indicator (and non-changeable by the user).
{@link #RatingBar_numStars android:numStars} The number of stars (or rating items) to show.
{@link #RatingBar_rating android:rating} The rating to set by default.
{@link #RatingBar_stepSize android:stepSize} The step size of the rating.
+ @see #RatingBar_isIndicator + @see #RatingBar_numStars + @see #RatingBar_rating + @see #RatingBar_stepSize + */ + public static final int[] RatingBar = { + 0x01010144, 0x01010145, 0x01010146, 0x01010147 + }; + /** +

+ @attr description + Whether this rating bar is an indicator (and non-changeable by the user). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#isIndicator}. + @attr name android:isIndicator + */ + public static final int RatingBar_isIndicator = 3; + /** +

+ @attr description + The number of stars (or rating items) to show. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#numStars}. + @attr name android:numStars + */ + public static final int RatingBar_numStars = 0; + /** +

+ @attr description + The rating to set by default. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#rating}. + @attr name android:rating + */ + public static final int RatingBar_rating = 1; + /** +

+ @attr description + The step size of the rating. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#stepSize}. + @attr name android:stepSize + */ + public static final int RatingBar_stepSize = 2; + /** Attributes that can be used with rating-definition tags inside of the XML + resource that describes TV content rating of a {@link android.media.tv.TvInputService}, + which is referenced from its + {@link android.media.tv.TvInputManager#META_DATA_CONTENT_RATING_SYSTEMS}. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #RatingDefinition_contentAgeHint android:contentAgeHint} The age associated with the content rating.
{@link #RatingDefinition_description android:description} The short description of the content rating.
{@link #RatingDefinition_name android:name} The unique name of the content rating.
{@link #RatingDefinition_title android:title} The title of the content rating which is shown to the user.
+ @see #RatingDefinition_contentAgeHint + @see #RatingDefinition_description + @see #RatingDefinition_name + @see #RatingDefinition_title + */ + public static final int[] RatingDefinition = { + 0x01010003, 0x01010020, 0x010101e1, 0x010104b9 + }; + /** +

+ @attr description + The age associated with the content rating. The content of this rating is suitable for + people of this age or above. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#contentAgeHint}. + @attr name android:contentAgeHint + */ + public static final int RatingDefinition_contentAgeHint = 3; + /** +

+ @attr description + The short description of the content rating. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#description}. + @attr name android:description + */ + public static final int RatingDefinition_description = 1; + /** +

+ @attr description + The unique name of the content rating. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int RatingDefinition_name = 0; + /** +

+ @attr description + The title of the content rating which is shown to the user. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#title}. + @attr name android:title + */ + public static final int RatingDefinition_title = 2; + /** Attributes that can be used with rating-system-definition tags inside of the + XML resource that describes TV content rating of a {@link android.media.tv.TvInputService}, + which is referenced from its + {@link android.media.tv.TvInputManager#META_DATA_CONTENT_RATING_SYSTEMS}. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #RatingSystemDefinition_country android:country} The country code associated with the content rating system, which consists of two + uppercase letters that conform to the ISO 3166 standard.
{@link #RatingSystemDefinition_description android:description} The short description of the content rating system.
{@link #RatingSystemDefinition_name android:name} The unique name of the content rating system.
{@link #RatingSystemDefinition_title android:title} The title of the content rating system which is shown to the user.
+ @see #RatingSystemDefinition_country + @see #RatingSystemDefinition_description + @see #RatingSystemDefinition_name + @see #RatingSystemDefinition_title + */ + public static final int[] RatingSystemDefinition = { + 0x01010003, 0x01010020, 0x010101e1, 0x010104ba + }; + /** +

+ @attr description + The country code associated with the content rating system, which consists of two + uppercase letters that conform to the ISO 3166 standard. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#country}. + @attr name android:country + */ + public static final int RatingSystemDefinition_country = 3; + /** +

+ @attr description + The short description of the content rating system. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#description}. + @attr name android:description + */ + public static final int RatingSystemDefinition_description = 1; + /** +

+ @attr description + The unique name of the content rating system. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int RatingSystemDefinition_name = 0; + /** +

+ @attr description + The title of the content rating system which is shown to the user. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#title}. + @attr name android:title + */ + public static final int RatingSystemDefinition_title = 2; + /** Use recognition-service as the root tag of the XML resource that + describes a {@link android.speech.RecognitionService}, which is referenced from + its {@link android.speech.RecognitionService#SERVICE_META_DATA} meta-data entry. + Described here are the attributes that can be included in that tag. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #RecognitionService_settingsActivity android:settingsActivity} Component name of an activity that allows the user to modify + the settings for this service.
+ @see #RecognitionService_settingsActivity + */ + public static final int[] RecognitionService = { + 0x01010225 + }; + /** +

+ @attr description + Component name of an activity that allows the user to modify + the settings for this service. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#settingsActivity}. + @attr name android:settingsActivity + */ + public static final int RecognitionService_settingsActivity = 0; + /** Attributes that can be used with a RelativeLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #RelativeLayout_gravity android:gravity} Specifies how an object should position its content, on both the X and Y axes, + within its own bounds.
{@link #RelativeLayout_ignoreGravity android:ignoreGravity} Indicates what view should not be affected by gravity.
+ @see #RelativeLayout_gravity + @see #RelativeLayout_ignoreGravity + */ + public static final int[] RelativeLayout = { + 0x010100af, 0x010101ff + }; + /** +

+ @attr description + Specifies how an object should position its content, on both the X and Y axes, + within its own bounds. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#gravity}. + @attr name android:gravity + */ + public static final int RelativeLayout_gravity = 0; + /** +

+ @attr description + Indicates what view should not be affected by gravity. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#ignoreGravity}. + @attr name android:ignoreGravity + */ + public static final int RelativeLayout_ignoreGravity = 1; + /** Attributes that can be used with a RelativeLayout_Layout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #RelativeLayout_Layout_layout_above android:layout_above} Positions the bottom edge of this view above the given anchor view ID.
{@link #RelativeLayout_Layout_layout_alignBaseline android:layout_alignBaseline} Positions the baseline of this view on the baseline of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_alignBottom android:layout_alignBottom} Makes the bottom edge of this view match the bottom edge of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_alignEnd android:layout_alignEnd} Makes the end edge of this view match the end edge of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_alignLeft android:layout_alignLeft} Makes the left edge of this view match the left edge of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_alignParentBottom android:layout_alignParentBottom} If true, makes the bottom edge of this view match the bottom edge of the parent.
{@link #RelativeLayout_Layout_layout_alignParentEnd android:layout_alignParentEnd} If true, makes the end edge of this view match the end edge of the parent.
{@link #RelativeLayout_Layout_layout_alignParentLeft android:layout_alignParentLeft} If true, makes the left edge of this view match the left edge of the parent.
{@link #RelativeLayout_Layout_layout_alignParentRight android:layout_alignParentRight} If true, makes the right edge of this view match the right edge of the parent.
{@link #RelativeLayout_Layout_layout_alignParentStart android:layout_alignParentStart} If true, makes the start edge of this view match the start edge of the parent.
{@link #RelativeLayout_Layout_layout_alignParentTop android:layout_alignParentTop} If true, makes the top edge of this view match the top edge of the parent.
{@link #RelativeLayout_Layout_layout_alignRight android:layout_alignRight} Makes the right edge of this view match the right edge of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_alignStart android:layout_alignStart} Makes the start edge of this view match the start edge of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_alignTop android:layout_alignTop} Makes the top edge of this view match the top edge of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_alignWithParentIfMissing android:layout_alignWithParentIfMissing} If set to true, the parent will be used as the anchor when the anchor cannot be + be found for layout_toLeftOf, layout_toRightOf, etc.
{@link #RelativeLayout_Layout_layout_below android:layout_below} Positions the top edge of this view below the given anchor view ID.
{@link #RelativeLayout_Layout_layout_centerHorizontal android:layout_centerHorizontal} If true, centers this child horizontally within its parent.
{@link #RelativeLayout_Layout_layout_centerInParent android:layout_centerInParent} If true, centers this child horizontally and vertically within its parent.
{@link #RelativeLayout_Layout_layout_centerVertical android:layout_centerVertical} If true, centers this child vertically within its parent.
{@link #RelativeLayout_Layout_layout_toEndOf android:layout_toEndOf} Positions the start edge of this view to the end of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_toLeftOf android:layout_toLeftOf} Positions the right edge of this view to the left of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_toRightOf android:layout_toRightOf} Positions the left edge of this view to the right of the given anchor view ID.
{@link #RelativeLayout_Layout_layout_toStartOf android:layout_toStartOf} Positions the end edge of this view to the start of the given anchor view ID.
+ @see #RelativeLayout_Layout_layout_above + @see #RelativeLayout_Layout_layout_alignBaseline + @see #RelativeLayout_Layout_layout_alignBottom + @see #RelativeLayout_Layout_layout_alignEnd + @see #RelativeLayout_Layout_layout_alignLeft + @see #RelativeLayout_Layout_layout_alignParentBottom + @see #RelativeLayout_Layout_layout_alignParentEnd + @see #RelativeLayout_Layout_layout_alignParentLeft + @see #RelativeLayout_Layout_layout_alignParentRight + @see #RelativeLayout_Layout_layout_alignParentStart + @see #RelativeLayout_Layout_layout_alignParentTop + @see #RelativeLayout_Layout_layout_alignRight + @see #RelativeLayout_Layout_layout_alignStart + @see #RelativeLayout_Layout_layout_alignTop + @see #RelativeLayout_Layout_layout_alignWithParentIfMissing + @see #RelativeLayout_Layout_layout_below + @see #RelativeLayout_Layout_layout_centerHorizontal + @see #RelativeLayout_Layout_layout_centerInParent + @see #RelativeLayout_Layout_layout_centerVertical + @see #RelativeLayout_Layout_layout_toEndOf + @see #RelativeLayout_Layout_layout_toLeftOf + @see #RelativeLayout_Layout_layout_toRightOf + @see #RelativeLayout_Layout_layout_toStartOf + */ + public static final int[] RelativeLayout_Layout = { + 0x01010182, 0x01010183, 0x01010184, 0x01010185, + 0x01010186, 0x01010187, 0x01010188, 0x01010189, + 0x0101018a, 0x0101018b, 0x0101018c, 0x0101018d, + 0x0101018e, 0x0101018f, 0x01010190, 0x01010191, + 0x01010192, 0x010103b7, 0x010103b8, 0x010103b9, + 0x010103ba, 0x010103bb, 0x010103bc + }; + /** +

+ @attr description + Positions the bottom edge of this view above the given anchor view ID. + Accommodates bottom margin of this view and top margin of anchor view. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_above}. + @attr name android:layout_above + */ + public static final int RelativeLayout_Layout_layout_above = 2; + /** +

+ @attr description + Positions the baseline of this view on the baseline of the given anchor view ID. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_alignBaseline}. + @attr name android:layout_alignBaseline + */ + public static final int RelativeLayout_Layout_layout_alignBaseline = 4; + /** +

+ @attr description + Makes the bottom edge of this view match the bottom edge of the given anchor view ID. + Accommodates bottom margin. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_alignBottom}. + @attr name android:layout_alignBottom + */ + public static final int RelativeLayout_Layout_layout_alignBottom = 8; + /** +

+ @attr description + Makes the end edge of this view match the end edge of the given anchor view ID. + Accommodates end margin. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_alignEnd}. + @attr name android:layout_alignEnd + */ + public static final int RelativeLayout_Layout_layout_alignEnd = 20; + /** +

+ @attr description + Makes the left edge of this view match the left edge of the given anchor view ID. + Accommodates left margin. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_alignLeft}. + @attr name android:layout_alignLeft + */ + public static final int RelativeLayout_Layout_layout_alignLeft = 5; + /** +

+ @attr description + If true, makes the bottom edge of this view match the bottom edge of the parent. + Accommodates bottom margin. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_alignParentBottom}. + @attr name android:layout_alignParentBottom + */ + public static final int RelativeLayout_Layout_layout_alignParentBottom = 12; + /** +

+ @attr description + If true, makes the end edge of this view match the end edge of the parent. + Accommodates end margin. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_alignParentEnd}. + @attr name android:layout_alignParentEnd + */ + public static final int RelativeLayout_Layout_layout_alignParentEnd = 22; + /** +

+ @attr description + If true, makes the left edge of this view match the left edge of the parent. + Accommodates left margin. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_alignParentLeft}. + @attr name android:layout_alignParentLeft + */ + public static final int RelativeLayout_Layout_layout_alignParentLeft = 9; + /** +

+ @attr description + If true, makes the right edge of this view match the right edge of the parent. + Accommodates right margin. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_alignParentRight}. + @attr name android:layout_alignParentRight + */ + public static final int RelativeLayout_Layout_layout_alignParentRight = 11; + /** +

+ @attr description + If true, makes the start edge of this view match the start edge of the parent. + Accommodates start margin. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_alignParentStart}. + @attr name android:layout_alignParentStart + */ + public static final int RelativeLayout_Layout_layout_alignParentStart = 21; + /** +

+ @attr description + If true, makes the top edge of this view match the top edge of the parent. + Accommodates top margin. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_alignParentTop}. + @attr name android:layout_alignParentTop + */ + public static final int RelativeLayout_Layout_layout_alignParentTop = 10; + /** +

+ @attr description + Makes the right edge of this view match the right edge of the given anchor view ID. + Accommodates right margin. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_alignRight}. + @attr name android:layout_alignRight + */ + public static final int RelativeLayout_Layout_layout_alignRight = 7; + /** +

+ @attr description + Makes the start edge of this view match the start edge of the given anchor view ID. + Accommodates start margin. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_alignStart}. + @attr name android:layout_alignStart + */ + public static final int RelativeLayout_Layout_layout_alignStart = 19; + /** +

+ @attr description + Makes the top edge of this view match the top edge of the given anchor view ID. + Accommodates top margin. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_alignTop}. + @attr name android:layout_alignTop + */ + public static final int RelativeLayout_Layout_layout_alignTop = 6; + /** +

+ @attr description + If set to true, the parent will be used as the anchor when the anchor cannot be + be found for layout_toLeftOf, layout_toRightOf, etc. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_alignWithParentIfMissing}. + @attr name android:layout_alignWithParentIfMissing + */ + public static final int RelativeLayout_Layout_layout_alignWithParentIfMissing = 16; + /** +

+ @attr description + Positions the top edge of this view below the given anchor view ID. + Accommodates top margin of this view and bottom margin of anchor view. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_below}. + @attr name android:layout_below + */ + public static final int RelativeLayout_Layout_layout_below = 3; + /** +

+ @attr description + If true, centers this child horizontally within its parent. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_centerHorizontal}. + @attr name android:layout_centerHorizontal + */ + public static final int RelativeLayout_Layout_layout_centerHorizontal = 14; + /** +

+ @attr description + If true, centers this child horizontally and vertically within its parent. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_centerInParent}. + @attr name android:layout_centerInParent + */ + public static final int RelativeLayout_Layout_layout_centerInParent = 13; + /** +

+ @attr description + If true, centers this child vertically within its parent. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_centerVertical}. + @attr name android:layout_centerVertical + */ + public static final int RelativeLayout_Layout_layout_centerVertical = 15; + /** +

+ @attr description + Positions the start edge of this view to the end of the given anchor view ID. + Accommodates start margin of this view and end margin of anchor view. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_toEndOf}. + @attr name android:layout_toEndOf + */ + public static final int RelativeLayout_Layout_layout_toEndOf = 18; + /** +

+ @attr description + Positions the right edge of this view to the left of the given anchor view ID. + Accommodates right margin of this view and left margin of anchor view. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_toLeftOf}. + @attr name android:layout_toLeftOf + */ + public static final int RelativeLayout_Layout_layout_toLeftOf = 0; + /** +

+ @attr description + Positions the left edge of this view to the right of the given anchor view ID. + Accommodates left margin of this view and right margin of anchor view. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_toRightOf}. + @attr name android:layout_toRightOf + */ + public static final int RelativeLayout_Layout_layout_toRightOf = 1; + /** +

+ @attr description + Positions the end edge of this view to the start of the given anchor view ID. + Accommodates end margin of this view and start margin of anchor view. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_toStartOf}. + @attr name android:layout_toStartOf + */ + public static final int RelativeLayout_Layout_layout_toStartOf = 17; + /** Attributes that can be used with a ResolverDrawerLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ResolverDrawerLayout_maxCollapsedHeight android:maxCollapsedHeight}
{@link #ResolverDrawerLayout_maxCollapsedHeightSmall android:maxCollapsedHeightSmall}
{@link #ResolverDrawerLayout_maxWidth android:maxWidth} An optional argument to supply a maximum width for this view.
+ @see #ResolverDrawerLayout_maxCollapsedHeight + @see #ResolverDrawerLayout_maxCollapsedHeightSmall + @see #ResolverDrawerLayout_maxWidth + */ + public static final int[] ResolverDrawerLayout = { + 0x0101011f, 0x011600b1, 0x011600b2 + }; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#maxCollapsedHeight} + attribute's value can be found in the {@link #ResolverDrawerLayout} array. + @attr name com.android.internal:maxCollapsedHeight + */ + public static final int ResolverDrawerLayout_maxCollapsedHeight = 1; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#maxCollapsedHeightSmall} + attribute's value can be found in the {@link #ResolverDrawerLayout} array. + @attr name com.android.internal:maxCollapsedHeightSmall + */ + public static final int ResolverDrawerLayout_maxCollapsedHeightSmall = 2; + /** +

+ @attr description + An optional argument to supply a maximum width for this view. + See {see android.widget.ImageView#setMaxWidth} for details. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxWidth}. + @attr name android:maxWidth + */ + public static final int ResolverDrawerLayout_maxWidth = 0; + /** Attributes that can be used with a ResolverDrawerLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ResolverDrawerLayout_LayoutParams_layout_alwaysShow android:layout_alwaysShow}
{@link #ResolverDrawerLayout_LayoutParams_layout_gravity android:layout_gravity} Standard gravity constant that a child supplies to its parent.
{@link #ResolverDrawerLayout_LayoutParams_layout_ignoreOffset android:layout_ignoreOffset}
+ @see #ResolverDrawerLayout_LayoutParams_layout_alwaysShow + @see #ResolverDrawerLayout_LayoutParams_layout_gravity + @see #ResolverDrawerLayout_LayoutParams_layout_ignoreOffset + */ + public static final int[] ResolverDrawerLayout_LayoutParams = { + 0x010100b3, 0x011600b3, 0x011600b4 + }; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#layout_alwaysShow} + attribute's value can be found in the {@link #ResolverDrawerLayout_LayoutParams} array. + @attr name com.android.internal:layout_alwaysShow + */ + public static final int ResolverDrawerLayout_LayoutParams_layout_alwaysShow = 1; + /** +

+ @attr description + Standard gravity constant that a child supplies to its parent. + Defines how the child view should be positioned, on both the X and Y axes, within its enclosing layout. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_gravity}. + @attr name android:layout_gravity + */ + public static final int ResolverDrawerLayout_LayoutParams_layout_gravity = 0; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#layout_ignoreOffset} + attribute's value can be found in the {@link #ResolverDrawerLayout_LayoutParams} array. + @attr name com.android.internal:layout_ignoreOffset + */ + public static final int ResolverDrawerLayout_LayoutParams_layout_ignoreOffset = 2; + /** Attributes that can be used with a RestrictionEntry. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #RestrictionEntry_defaultValue android:defaultValue} The default value for the preference, which will be set either if persistence + is off or persistence is on and the preference is not found in the persistent + storage.
{@link #RestrictionEntry_description android:description} Descriptive text for the associated data.
{@link #RestrictionEntry_entries android:entries} Reference to an array resource that will populate a list/adapter.
{@link #RestrictionEntry_entryValues android:entryValues} The array to find the value to save for a preference when an entry from + entries is selected.
{@link #RestrictionEntry_key android:key} The key to store the Preference value.
{@link #RestrictionEntry_restrictionType android:restrictionType}
{@link #RestrictionEntry_title android:title} The title associated with the item.
+ @see #RestrictionEntry_defaultValue + @see #RestrictionEntry_description + @see #RestrictionEntry_entries + @see #RestrictionEntry_entryValues + @see #RestrictionEntry_key + @see #RestrictionEntry_restrictionType + @see #RestrictionEntry_title + */ + public static final int[] RestrictionEntry = { + 0x01010020, 0x010100b2, 0x010101e1, 0x010101e8, + 0x010101ed, 0x010101f8, 0x01010493 + }; + /** +

+ @attr description + The default value for the preference, which will be set either if persistence + is off or persistence is on and the preference is not found in the persistent + storage. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a boolean value, either "true" or "false". +

May be a floating point value, such as "1.2". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#defaultValue}. + @attr name android:defaultValue + */ + public static final int RestrictionEntry_defaultValue = 4; + /** +

+ @attr description + Descriptive text for the associated data. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#description}. + @attr name android:description + */ + public static final int RestrictionEntry_description = 0; + /** +

+ @attr description + Reference to an array resource that will populate a list/adapter. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#entries}. + @attr name android:entries + */ + public static final int RestrictionEntry_entries = 1; + /** +

+ @attr description + The array to find the value to save for a preference when an entry from + entries is selected. If a user clicks on the second item in entries, the + second item in this array will be saved to the preference. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#entryValues}. + @attr name android:entryValues + */ + public static final int RestrictionEntry_entryValues = 5; + /** +

+ @attr description + The key to store the Preference value. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#key}. + @attr name android:key + */ + public static final int RestrictionEntry_key = 3; + /** +

This symbol is the offset where the {@link android.R.attr#restrictionType} + attribute's value can be found in the {@link #RestrictionEntry} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
hidden0
bool1
choice2
multi-select4
integer5
string6
bundle7
bundle_array8
+ @attr name android:restrictionType + */ + public static final int RestrictionEntry_restrictionType = 6; + /** +

+ @attr description + The title associated with the item. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#title}. + @attr name android:title + */ + public static final int RestrictionEntry_title = 2; + /** Base attributes available to RingtonePreference. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #RingtonePreference_ringtoneType android:ringtoneType} Which ringtone type(s) to show in the picker.
{@link #RingtonePreference_showDefault android:showDefault} Whether to show an item for a default sound.
{@link #RingtonePreference_showSilent android:showSilent} Whether to show an item for 'Silent'.
+ @see #RingtonePreference_ringtoneType + @see #RingtonePreference_showDefault + @see #RingtonePreference_showSilent + */ + public static final int[] RingtonePreference = { + 0x010101f9, 0x010101fa, 0x010101fb + }; + /** +

+ @attr description + Which ringtone type(s) to show in the picker. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
ringtone1 Ringtones.
notification2 Notification sounds.
alarm4 Alarm sounds.
all7 All available ringtone sounds.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#ringtoneType}. + @attr name android:ringtoneType + */ + public static final int RingtonePreference_ringtoneType = 0; + /** +

+ @attr description + Whether to show an item for a default sound. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#showDefault}. + @attr name android:showDefault + */ + public static final int RingtonePreference_showDefault = 1; + /** +

+ @attr description + Whether to show an item for 'Silent'. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#showSilent}. + @attr name android:showSilent + */ + public static final int RingtonePreference_showSilent = 2; + /** Drawable used to show animated touch feedback. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #RippleDrawable_color android:color} The color to use for ripple effects.
{@link #RippleDrawable_radius android:radius} The radius of the ripple when fully expanded.
+ @see #RippleDrawable_color + @see #RippleDrawable_radius + */ + public static final int[] RippleDrawable = { + 0x010101a5, 0x010101a8 + }; + /** +

+ @attr description + The color to use for ripple effects. This attribute is required. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int RippleDrawable_color = 0; + /** +

+ @attr description + The radius of the ripple when fully expanded. By default, the + radius is computed based on the size of the ripple's container. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#radius}. + @attr name android:radius + */ + public static final int RippleDrawable_radius = 1; + /** attributes for internal rotary widget used in lock screen and phone app + @hide +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #RotarySelector_orientation android:orientation} Use "horizontal" or "vertical".
+ @see #RotarySelector_orientation + */ + public static final int[] RotarySelector = { + 0x010100c4 + }; + /** +

+ @attr description + Use "horizontal" or "vertical". The default is horizontal. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
horizontal0 Defines an horizontal widget.
vertical1 Defines a vertical widget.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#orientation}. + @attr name android:orientation + */ + public static final int RotarySelector_orientation = 0; + /** Attributes that can be used with a RotateAnimation. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #RotateAnimation_fromDegrees android:fromDegrees}
{@link #RotateAnimation_pivotX android:pivotX}
{@link #RotateAnimation_pivotY android:pivotY}
{@link #RotateAnimation_toDegrees android:toDegrees}
+ @see #RotateAnimation_fromDegrees + @see #RotateAnimation_pivotX + @see #RotateAnimation_pivotY + @see #RotateAnimation_toDegrees + */ + public static final int[] RotateAnimation = { + 0x010101b3, 0x010101b4, 0x010101b5, 0x010101b6 + }; + /** +

This symbol is the offset where the {@link android.R.attr#fromDegrees} + attribute's value can be found in the {@link #RotateAnimation} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:fromDegrees + */ + public static final int RotateAnimation_fromDegrees = 0; + /** +

This symbol is the offset where the {@link android.R.attr#pivotX} + attribute's value can be found in the {@link #RotateAnimation} array. + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:pivotX + */ + public static final int RotateAnimation_pivotX = 2; + /** +

This symbol is the offset where the {@link android.R.attr#pivotY} + attribute's value can be found in the {@link #RotateAnimation} array. + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:pivotY + */ + public static final int RotateAnimation_pivotY = 3; + /** +

This symbol is the offset where the {@link android.R.attr#toDegrees} + attribute's value can be found in the {@link #RotateAnimation} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:toDegrees + */ + public static final int RotateAnimation_toDegrees = 1; + /** Drawable used to rotate another drawable. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #RotateDrawable_drawable android:drawable} Reference to a drawable resource to use for the frame.
{@link #RotateDrawable_fromDegrees android:fromDegrees}
{@link #RotateDrawable_pivotX android:pivotX}
{@link #RotateDrawable_pivotY android:pivotY}
{@link #RotateDrawable_toDegrees android:toDegrees}
{@link #RotateDrawable_visible android:visible} Provides initial visibility state of the drawable; the default + value is false.
+ @see #RotateDrawable_drawable + @see #RotateDrawable_fromDegrees + @see #RotateDrawable_pivotX + @see #RotateDrawable_pivotY + @see #RotateDrawable_toDegrees + @see #RotateDrawable_visible + */ + public static final int[] RotateDrawable = { + 0x01010194, 0x01010199, 0x010101b3, 0x010101b4, + 0x010101b5, 0x010101b6 + }; + /** +

+ @attr description + Reference to a drawable resource to use for the frame. If not + given, the drawable must be defined by the first child tag. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawable}. + @attr name android:drawable + */ + public static final int RotateDrawable_drawable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#fromDegrees} + attribute's value can be found in the {@link #RotateDrawable} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:fromDegrees + */ + public static final int RotateDrawable_fromDegrees = 2; + /** +

This symbol is the offset where the {@link android.R.attr#pivotX} + attribute's value can be found in the {@link #RotateDrawable} array. + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:pivotX + */ + public static final int RotateDrawable_pivotX = 4; + /** +

This symbol is the offset where the {@link android.R.attr#pivotY} + attribute's value can be found in the {@link #RotateDrawable} array. + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:pivotY + */ + public static final int RotateDrawable_pivotY = 5; + /** +

This symbol is the offset where the {@link android.R.attr#toDegrees} + attribute's value can be found in the {@link #RotateDrawable} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:toDegrees + */ + public static final int RotateDrawable_toDegrees = 3; + /** +

+ @attr description + Provides initial visibility state of the drawable; the default + value is false. See + {@link android.graphics.drawable.Drawable#setVisible}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#visible}. + @attr name android:visible + */ + public static final int RotateDrawable_visible = 0; + /** Attributes that can be used with a ScaleAnimation. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ScaleAnimation_fromXScale android:fromXScale}
{@link #ScaleAnimation_fromYScale android:fromYScale}
{@link #ScaleAnimation_pivotX android:pivotX}
{@link #ScaleAnimation_pivotY android:pivotY}
{@link #ScaleAnimation_toXScale android:toXScale}
{@link #ScaleAnimation_toYScale android:toYScale}
+ @see #ScaleAnimation_fromXScale + @see #ScaleAnimation_fromYScale + @see #ScaleAnimation_pivotX + @see #ScaleAnimation_pivotY + @see #ScaleAnimation_toXScale + @see #ScaleAnimation_toYScale + */ + public static final int[] ScaleAnimation = { + 0x010101b5, 0x010101b6, 0x010101c2, 0x010101c3, + 0x010101c4, 0x010101c5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#fromXScale} + attribute's value can be found in the {@link #ScaleAnimation} array. + + +

May be a floating point value, such as "1.2". +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:fromXScale + */ + public static final int ScaleAnimation_fromXScale = 2; + /** +

This symbol is the offset where the {@link android.R.attr#fromYScale} + attribute's value can be found in the {@link #ScaleAnimation} array. + + +

May be a floating point value, such as "1.2". +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:fromYScale + */ + public static final int ScaleAnimation_fromYScale = 4; + /** +

This symbol is the offset where the {@link android.R.attr#pivotX} + attribute's value can be found in the {@link #ScaleAnimation} array. + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:pivotX + */ + public static final int ScaleAnimation_pivotX = 0; + /** +

This symbol is the offset where the {@link android.R.attr#pivotY} + attribute's value can be found in the {@link #ScaleAnimation} array. + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:pivotY + */ + public static final int ScaleAnimation_pivotY = 1; + /** +

This symbol is the offset where the {@link android.R.attr#toXScale} + attribute's value can be found in the {@link #ScaleAnimation} array. + + +

May be a floating point value, such as "1.2". +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:toXScale + */ + public static final int ScaleAnimation_toXScale = 3; + /** +

This symbol is the offset where the {@link android.R.attr#toYScale} + attribute's value can be found in the {@link #ScaleAnimation} array. + + +

May be a floating point value, such as "1.2". +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:toYScale + */ + public static final int ScaleAnimation_toYScale = 5; + /** Attributes that can be used with a ScaleDrawable. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #ScaleDrawable_drawable android:drawable} Reference to a drawable resource to draw with the specified scale.
{@link #ScaleDrawable_scaleGravity android:scaleGravity} Specifies where the drawable is positioned after scaling.
{@link #ScaleDrawable_scaleHeight android:scaleHeight} Scale height, expressed as a percentage of the drawable's bound.
{@link #ScaleDrawable_scaleWidth android:scaleWidth} Scale width, expressed as a percentage of the drawable's bound.
{@link #ScaleDrawable_useIntrinsicSizeAsMinimum android:useIntrinsicSizeAsMinimum} Use the drawable's intrinsic width and height as minimum size values.
+ @see #ScaleDrawable_drawable + @see #ScaleDrawable_scaleGravity + @see #ScaleDrawable_scaleHeight + @see #ScaleDrawable_scaleWidth + @see #ScaleDrawable_useIntrinsicSizeAsMinimum + */ + public static final int[] ScaleDrawable = { + 0x01010199, 0x010101fc, 0x010101fd, 0x010101fe, + 0x01010310 + }; + /** +

+ @attr description + Reference to a drawable resource to draw with the specified scale. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawable}. + @attr name android:drawable + */ + public static final int ScaleDrawable_drawable = 0; + /** +

+ @attr description + Specifies where the drawable is positioned after scaling. The default value is + left. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#scaleGravity}. + @attr name android:scaleGravity + */ + public static final int ScaleDrawable_scaleGravity = 3; + /** +

+ @attr description + Scale height, expressed as a percentage of the drawable's bound. The value's + format is XX%. For instance: 100%, 12.5%, etc. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scaleHeight}. + @attr name android:scaleHeight + */ + public static final int ScaleDrawable_scaleHeight = 2; + /** +

+ @attr description + Scale width, expressed as a percentage of the drawable's bound. The value's + format is XX%. For instance: 100%, 12.5%, etc. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scaleWidth}. + @attr name android:scaleWidth + */ + public static final int ScaleDrawable_scaleWidth = 1; + /** +

+ @attr description + Use the drawable's intrinsic width and height as minimum size values. + Useful if the target drawable is a 9-patch or otherwise should not be scaled + down beyond a minimum size. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#useIntrinsicSizeAsMinimum}. + @attr name android:useIntrinsicSizeAsMinimum + */ + public static final int ScaleDrawable_useIntrinsicSizeAsMinimum = 4; + /** Attributes that can be used with a ScrollView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollView_fillViewport android:fillViewport} Defines whether the scrollview should stretch its content to fill the viewport.
+ @see #ScrollView_fillViewport + */ + public static final int[] ScrollView = { + 0x0101017a + }; + /** +

+ @attr description + Defines whether the scrollview should stretch its content to fill the viewport. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fillViewport}. + @attr name android:fillViewport + */ + public static final int ScrollView_fillViewport = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_closeIcon android:closeIcon} Close button icon
{@link #SearchView_commitIcon android:commitIcon} Commit icon shown in the query suggestion row
{@link #SearchView_defaultQueryHint android:defaultQueryHint} Default query hint used when {@code queryHint} is undefined and + the search view's {@code SearchableInfo} does not provide a hint.
{@link #SearchView_focusable android:focusable} Boolean that controls whether a view can take focus.
{@link #SearchView_goIcon android:goIcon} Go button icon
{@link #SearchView_iconifiedByDefault android:iconifiedByDefault} The default state of the SearchView.
{@link #SearchView_imeOptions android:imeOptions} The IME options to set on the query text field.
{@link #SearchView_inputType android:inputType} The input type to set on the query text field.
{@link #SearchView_layout android:layout} The layout to use for the search view.
{@link #SearchView_maxWidth android:maxWidth} An optional maximum width of the SearchView.
{@link #SearchView_queryBackground android:queryBackground} Background for the section containing the search query
{@link #SearchView_queryHint android:queryHint} An optional query hint string to be displayed in the empty query field.
{@link #SearchView_searchHintIcon android:searchHintIcon} Search icon displayed as a text field hint
{@link #SearchView_searchIcon android:searchIcon} Search icon
{@link #SearchView_submitBackground android:submitBackground} Background for the section containing the action (e.
{@link #SearchView_suggestionRowLayout android:suggestionRowLayout} Layout for query suggestion rows
{@link #SearchView_voiceIcon android:voiceIcon} Voice button icon
+ @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_focusable + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_imeOptions + @see #SearchView_inputType + @see #SearchView_layout + @see #SearchView_maxWidth + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x010100f2, 0x0101011f, 0x01010220, + 0x01010264, 0x010102fa, 0x01010358, 0x01010481, + 0x01010482, 0x01010483, 0x01010484, 0x01010485, + 0x01010486, 0x01010487, 0x01010488, 0x010104d4, + 0x0116008b + }; + /** +

+ @attr description + Close button icon + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#closeIcon}. + @attr name android:closeIcon + */ + public static final int SearchView_closeIcon = 7; + /** +

+ @attr description + Commit icon shown in the query suggestion row + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#commitIcon}. + @attr name android:commitIcon + */ + public static final int SearchView_commitIcon = 11; + /** +

+ @attr description + Default query hint used when {@code queryHint} is undefined and + the search view's {@code SearchableInfo} does not provide a hint. + @hide +

This is a private symbol. + @attr name com.android.internal:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 16; + /** +

+ @attr description + Boolean that controls whether a view can take focus. By default the user can not + move focus to a view; by setting this attribute to true the view is + allowed to take focus. This value does not impact the behavior of + directly calling {@link android.view.View#requestFocus}, which will + always request focus regardless of this view. It only impacts where + focus navigation will try to move focus. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#focusable}. + @attr name android:focusable + */ + public static final int SearchView_focusable = 0; + /** +

+ @attr description + Go button icon + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#goIcon}. + @attr name android:goIcon + */ + public static final int SearchView_goIcon = 8; + /** +

+ @attr description + The default state of the SearchView. If true, it will be iconified when not in + use and expanded when clicked. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#iconifiedByDefault}. + @attr name android:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

+ @attr description + The IME options to set on the query text field. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + + + +
ConstantValueDescription
normal0x00000000 There are no special semantics associated with this editor.
actionUnspecified0x00000000 There is no specific action associated with this editor, let the + editor come up with its own if it can. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_NULL}.
actionNone0x00000001 This editor has no action associated with it. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_NONE}.
actionGo0x00000002 The action key performs a "go" + operation to take the user to the target of the text they typed. + Typically used, for example, when entering a URL. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_GO}.
actionSearch0x00000003 The action key performs a "search" + operation, taking the user to the results of searching for the text + the have typed (in whatever context is appropriate). + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEARCH}.
actionSend0x00000004 The action key performs a "send" + operation, delivering the text to its target. This is typically used + when composing a message. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEND}.
actionNext0x00000005 The action key performs a "next" + operation, taking the user to the next field that will accept text. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_NEXT}.
actionDone0x00000006 The action key performs a "done" + operation, closing the soft input method. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_DONE}.
actionPrevious0x00000007 The action key performs a "previous" + operation, taking the user to the previous field that will accept text. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_PREVIOUS}.
flagNoFullscreen0x2000000 Used to request that the IME never go + into fullscreen mode. Applications need to be aware that the flag is not + a guarantee, and not all IMEs will respect it. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}.

flagNavigatePrevious0x4000000 Like flagNavigateNext, but + specifies there is something interesting that a backward navigation + can focus on. If the user selects the IME's facility to backward + navigate, this will show up in the application as an actionPrevious + at {@link android.view.inputmethod.InputConnection#performEditorAction(int) + InputConnection.performEditorAction(int)}. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}.

flagNavigateNext0x8000000 Used to specify that there is something + interesting that a forward navigation can focus on. This is like using + actionNext, except allows the IME to be multiline (with + an enter key) as well as provide forward navigation. Note that some + IMEs may not be able to do this, especially when running on a small + screen where there is little space. In that case it does not need to + present a UI for this option. Like actionNext, if the + user selects the IME's facility to forward navigate, this will show up + in the application at + {@link android.view.inputmethod.InputConnection#performEditorAction(int) + InputConnection.performEditorAction(int)}. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NAVIGATE_NEXT}.

flagNoExtractUi0x10000000 Used to specify that the IME does not need + to show its extracted text UI. For input methods that may be fullscreen, + often when in landscape mode, this allows them to be smaller and let part + of the application be shown behind. Though there will likely be limited + access to the application available from the user, it can make the + experience of a (mostly) fullscreen IME less jarring. Note that when + this flag is specified the IME may not be set up to be able + to display text, so it should only be used in situations where this is + not needed. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_EXTRACT_UI}.

flagNoAccessoryAction0x20000000 Used in conjunction with a custom action, this indicates that the + action should not be available as an accessory button when the + input method is full-screen. + Note that by setting this flag, there can be cases where the action + is simply never available to the user. Setting this generally means + that you think showing text being edited is more important than the + action you have supplied. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ACCESSORY_ACTION}.

flagNoEnterAction0x40000000 Used in conjunction with a custom action, + this indicates that the action should not be available in-line as + a replacement for the "enter" key. Typically this is + because the action has such a significant impact or is not recoverable + enough that accidentally hitting it should be avoided, such as sending + a message. Note that {@link android.widget.TextView} will + automatically set this flag for you on multi-line text views. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ENTER_ACTION}.

flagForceAscii0x80000000 Used to request that the IME should be capable of inputting ASCII + characters. The intention of this flag is to ensure that the user + can type Roman alphabet characters in a {@link android.widget.TextView} + used for, typically, account ID or password input. It is expected that IMEs + normally are able to input ASCII even without being told so (such IMEs + already respect this flag in a sense), but there could be some cases they + aren't when, for instance, only non-ASCII input languagaes like Arabic, + Greek, Hebrew, Russian are enabled in the IME. Applications need to be + aware that the flag is not a guarantee, and not all IMEs will respect it. + However, it is strongly recommended for IME authors to respect this flag + especially when their IME could end up with a state that has only non-ASCII + input languages enabled. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_FORCE_ASCII}.

+

This corresponds to the global attribute + resource symbol {@link android.R.attr#imeOptions}. + @attr name android:imeOptions + */ + public static final int SearchView_imeOptions = 4; + /** +

+ @attr description + The input type to set on the query text field. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ConstantValueDescription
none0x00000000 There is no content type. The text is not editable.
text0x00000001 Just plain old text. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_NORMAL}.
textCapCharacters0x00001001 Can be combined with text and its variations to + request capitalization of all characters. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_CHARACTERS}.
textCapWords0x00002001 Can be combined with text and its variations to + request capitalization of the first character of every word. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_WORDS}.
textCapSentences0x00004001 Can be combined with text and its variations to + request capitalization of the first character of every sentence. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_SENTENCES}.
textAutoCorrect0x00008001 Can be combined with text and its variations to + request auto-correction of text being input. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_CORRECT}.
textAutoComplete0x00010001 Can be combined with text and its variations to + specify that this field will be doing its own auto-completion and + talking with the input method appropriately. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_COMPLETE}.
textMultiLine0x00020001 Can be combined with text and its variations to + allow multiple lines of text in the field. If this flag is not set, + the text field will be constrained to a single line. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_MULTI_LINE}.
textImeMultiLine0x00040001 Can be combined with text and its variations to + indicate that though the regular text view should not be multiple + lines, the IME should provide multiple lines if it can. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_IME_MULTI_LINE}.
textNoSuggestions0x00080001 Can be combined with text and its variations to + indicate that the IME should not show any + dictionary-based word suggestions. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_NO_SUGGESTIONS}.
textUri0x00000011 Text that will be used as a URI. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_URI}.
textEmailAddress0x00000021 Text that will be used as an e-mail address. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_ADDRESS}.
textEmailSubject0x00000031 Text that is being supplied as the subject of an e-mail. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_SUBJECT}.
textShortMessage0x00000041 Text that is the content of a short message. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_SHORT_MESSAGE}.
textLongMessage0x00000051 Text that is the content of a long message. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_LONG_MESSAGE}.
textPersonName0x00000061 Text that is the name of a person. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_PERSON_NAME}.
textPostalAddress0x00000071 Text that is being supplied as a postal mailing address. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_POSTAL_ADDRESS}.
textPassword0x00000081 Text that is a password. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_PASSWORD}.
textVisiblePassword0x00000091 Text that is a password that should be visible. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_VISIBLE_PASSWORD}.
textWebEditText0x000000a1 Text that is being supplied as text in a web form. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EDIT_TEXT}.
textFilter0x000000b1 Text that is filtering some other data. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_FILTER}.
textPhonetic0x000000c1 Text that is for phonetic pronunciation, such as a phonetic name + field in a contact entry. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_PHONETIC}.
textWebEmailAddress0x000000d1 Text that will be used as an e-mail address on a web form. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS}.
textWebPassword0x000000e1 Text that will be used as a password on a web form. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_PASSWORD}.
number0x00000002 A numeric only field. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_VARIATION_NORMAL}.
numberSigned0x00001002 Can be combined with number and its other options to + allow a signed number. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_FLAG_SIGNED}.
numberDecimal0x00002002 Can be combined with number and its other options to + allow a decimal (fractional) number. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_FLAG_DECIMAL}.
numberPassword0x00000012 A numeric password field. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_VARIATION_PASSWORD}.
phone0x00000003 For entering a phone number. Corresponds to + {@link android.text.InputType#TYPE_CLASS_PHONE}.
datetime0x00000004 For entering a date and time. Corresponds to + {@link android.text.InputType#TYPE_CLASS_DATETIME} | + {@link android.text.InputType#TYPE_DATETIME_VARIATION_NORMAL}.
date0x00000014 For entering a date. Corresponds to + {@link android.text.InputType#TYPE_CLASS_DATETIME} | + {@link android.text.InputType#TYPE_DATETIME_VARIATION_DATE}.
time0x00000024 For entering a time. Corresponds to + {@link android.text.InputType#TYPE_CLASS_DATETIME} | + {@link android.text.InputType#TYPE_DATETIME_VARIATION_TIME}.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#inputType}. + @attr name android:inputType + */ + public static final int SearchView_inputType = 3; + /** +

+ @attr description + The layout to use for the search view. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout}. + @attr name android:layout + */ + public static final int SearchView_layout = 1; + /** +

+ @attr description + An optional maximum width of the SearchView. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxWidth}. + @attr name android:maxWidth + */ + public static final int SearchView_maxWidth = 2; + /** +

+ @attr description + Background for the section containing the search query + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#queryBackground}. + @attr name android:queryBackground + */ + public static final int SearchView_queryBackground = 13; + /** +

+ @attr description + An optional query hint string to be displayed in the empty query field. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#queryHint}. + @attr name android:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

+ @attr description + Search icon displayed as a text field hint + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#searchHintIcon}. + @attr name android:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 15; + /** +

+ @attr description + Search icon + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#searchIcon}. + @attr name android:searchIcon + */ + public static final int SearchView_searchIcon = 9; + /** +

+ @attr description + Background for the section containing the action (e.g. voice search) + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#submitBackground}. + @attr name android:submitBackground + */ + public static final int SearchView_submitBackground = 14; + /** +

+ @attr description + Layout for query suggestion rows + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#suggestionRowLayout}. + @attr name android:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 12; + /** +

+ @attr description + Voice button icon + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#voiceIcon}. + @attr name android:voiceIcon + */ + public static final int SearchView_voiceIcon = 10; + /** Searchable activities and applications must provide search configuration information + in an XML file, typically called searchable.xml. This file is referenced in your manifest. + For a more in-depth discussion of search configuration, please refer to + {@link android.app.SearchManager}. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Searchable_autoUrlDetect android:autoUrlDetect} If provided and true, URLs entered in the search dialog while searching + within this activity would be detected and treated as URLs (show a 'go' button in the + keyboard and invoke the browser directly when user launches the URL instead of passing + the URL to the activity).
{@link #Searchable_hint android:hint} If supplied, this string will be displayed as a hint to the user.
{@link #Searchable_icon android:icon}This is deprecated.
{@link #Searchable_imeOptions android:imeOptions} Additional features you can enable in an IME associated with an editor + to improve the integration with your application.
{@link #Searchable_includeInGlobalSearch android:includeInGlobalSearch} If provided and true, this searchable activity will be + included in any global lists of search targets.
{@link #Searchable_inputType android:inputType} The type of data being placed in a text field, used to help an + input method decide how to let the user enter text.
{@link #Searchable_label android:label} This is the user-displayed name of the searchable activity.
{@link #Searchable_queryAfterZeroResults android:queryAfterZeroResults} If provided and true, this searchable activity will be invoked for all + queries in a particular session.
{@link #Searchable_searchButtonText android:searchButtonText} If supplied, this string will be displayed as the text of the "Search" button.
{@link #Searchable_searchMode android:searchMode} Additional features are controlled by mode bits in this field.
{@link #Searchable_searchSettingsDescription android:searchSettingsDescription} If provided, this string will be used to describe the searchable item in the + searchable items settings within system search settings.
{@link #Searchable_searchSuggestAuthority android:searchSuggestAuthority} If provided, this is the trigger indicating that the searchable activity + provides suggestions as well.
{@link #Searchable_searchSuggestIntentAction android:searchSuggestIntentAction} If provided, and not overridden by an action in the selected suggestion, this + string will be placed in the action field of the {@link android.content.Intent Intent} + when the user clicks a suggestion.
{@link #Searchable_searchSuggestIntentData android:searchSuggestIntentData} If provided, and not overridden by an action in the selected suggestion, this + string will be placed in the data field of the {@link android.content.Intent Intent} + when the user clicks a suggestion.
{@link #Searchable_searchSuggestPath android:searchSuggestPath} If provided, this will be inserted in the suggestions query Uri, after the authority + you have provide but before the standard suggestions path.
{@link #Searchable_searchSuggestSelection android:searchSuggestSelection} If provided, suggestion queries will be passed into your query function + as the selection parameter.
{@link #Searchable_searchSuggestThreshold android:searchSuggestThreshold} If provided, this is the minimum number of characters needed to trigger + search suggestions.
{@link #Searchable_voiceLanguage android:voiceLanguage} If provided, this specifies the spoken language to be expected, and that it will be + different than the one set in the {@link java.util.Locale#getDefault()}.
{@link #Searchable_voiceLanguageModel android:voiceLanguageModel} If provided, this specifies the language model that should be used by the + voice recognition system.
{@link #Searchable_voiceMaxResults android:voiceMaxResults} If provided, enforces the maximum number of results to return, including the "best" + result which will always be provided as the SEARCH intent's primary query.
{@link #Searchable_voicePromptText android:voicePromptText} If provided, this specifies a prompt that will be displayed during voice input.
{@link #Searchable_voiceSearchMode android:voiceSearchMode} Voice search features are controlled by mode bits in this field.
+ @see #Searchable_autoUrlDetect + @see #Searchable_hint + @see #Searchable_icon + @see #Searchable_imeOptions + @see #Searchable_includeInGlobalSearch + @see #Searchable_inputType + @see #Searchable_label + @see #Searchable_queryAfterZeroResults + @see #Searchable_searchButtonText + @see #Searchable_searchMode + @see #Searchable_searchSettingsDescription + @see #Searchable_searchSuggestAuthority + @see #Searchable_searchSuggestIntentAction + @see #Searchable_searchSuggestIntentData + @see #Searchable_searchSuggestPath + @see #Searchable_searchSuggestSelection + @see #Searchable_searchSuggestThreshold + @see #Searchable_voiceLanguage + @see #Searchable_voiceLanguageModel + @see #Searchable_voiceMaxResults + @see #Searchable_voicePromptText + @see #Searchable_voiceSearchMode + */ + public static final int[] Searchable = { + 0x01010001, 0x01010002, 0x01010150, 0x010101d5, + 0x010101d6, 0x010101d7, 0x010101d8, 0x010101d9, + 0x010101da, 0x01010205, 0x01010220, 0x01010252, + 0x01010253, 0x01010254, 0x01010255, 0x01010256, + 0x01010264, 0x0101026d, 0x0101026e, 0x01010282, + 0x0101028a, 0x0101028c + }; + /** +

+ @attr description + If provided and true, URLs entered in the search dialog while searching + within this activity would be detected and treated as URLs (show a 'go' button in the + keyboard and invoke the browser directly when user launches the URL instead of passing + the URL to the activity). If set to false any URLs entered are treated as + normal query text. + The default value is false. Optional attribute.. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#autoUrlDetect}. + @attr name android:autoUrlDetect + */ + public static final int Searchable_autoUrlDetect = 21; + /** +

+ @attr description + If supplied, this string will be displayed as a hint to the user. Optional + attribute. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#hint}. + @attr name android:hint + */ + public static final int Searchable_hint = 2; + /** +

+ @attr description + This is deprecated.
The default + application icon is now always used, so this attribute is + obsolete. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int Searchable_icon = 1; + /** +

+ @attr description + Additional features you can enable in an IME associated with an editor + to improve the integration with your application. The constants + here correspond to those defined by + {@link android.view.inputmethod.EditorInfo#imeOptions}. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + + + +
ConstantValueDescription
normal0x00000000 There are no special semantics associated with this editor.
actionUnspecified0x00000000 There is no specific action associated with this editor, let the + editor come up with its own if it can. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_NULL}.
actionNone0x00000001 This editor has no action associated with it. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_NONE}.
actionGo0x00000002 The action key performs a "go" + operation to take the user to the target of the text they typed. + Typically used, for example, when entering a URL. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_GO}.
actionSearch0x00000003 The action key performs a "search" + operation, taking the user to the results of searching for the text + the have typed (in whatever context is appropriate). + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEARCH}.
actionSend0x00000004 The action key performs a "send" + operation, delivering the text to its target. This is typically used + when composing a message. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEND}.
actionNext0x00000005 The action key performs a "next" + operation, taking the user to the next field that will accept text. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_NEXT}.
actionDone0x00000006 The action key performs a "done" + operation, closing the soft input method. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_DONE}.
actionPrevious0x00000007 The action key performs a "previous" + operation, taking the user to the previous field that will accept text. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_PREVIOUS}.
flagNoFullscreen0x2000000 Used to request that the IME never go + into fullscreen mode. Applications need to be aware that the flag is not + a guarantee, and not all IMEs will respect it. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}.

flagNavigatePrevious0x4000000 Like flagNavigateNext, but + specifies there is something interesting that a backward navigation + can focus on. If the user selects the IME's facility to backward + navigate, this will show up in the application as an actionPrevious + at {@link android.view.inputmethod.InputConnection#performEditorAction(int) + InputConnection.performEditorAction(int)}. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}.

flagNavigateNext0x8000000 Used to specify that there is something + interesting that a forward navigation can focus on. This is like using + actionNext, except allows the IME to be multiline (with + an enter key) as well as provide forward navigation. Note that some + IMEs may not be able to do this, especially when running on a small + screen where there is little space. In that case it does not need to + present a UI for this option. Like actionNext, if the + user selects the IME's facility to forward navigate, this will show up + in the application at + {@link android.view.inputmethod.InputConnection#performEditorAction(int) + InputConnection.performEditorAction(int)}. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NAVIGATE_NEXT}.

flagNoExtractUi0x10000000 Used to specify that the IME does not need + to show its extracted text UI. For input methods that may be fullscreen, + often when in landscape mode, this allows them to be smaller and let part + of the application be shown behind. Though there will likely be limited + access to the application available from the user, it can make the + experience of a (mostly) fullscreen IME less jarring. Note that when + this flag is specified the IME may not be set up to be able + to display text, so it should only be used in situations where this is + not needed. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_EXTRACT_UI}.

flagNoAccessoryAction0x20000000 Used in conjunction with a custom action, this indicates that the + action should not be available as an accessory button when the + input method is full-screen. + Note that by setting this flag, there can be cases where the action + is simply never available to the user. Setting this generally means + that you think showing text being edited is more important than the + action you have supplied. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ACCESSORY_ACTION}.

flagNoEnterAction0x40000000 Used in conjunction with a custom action, + this indicates that the action should not be available in-line as + a replacement for the "enter" key. Typically this is + because the action has such a significant impact or is not recoverable + enough that accidentally hitting it should be avoided, such as sending + a message. Note that {@link android.widget.TextView} will + automatically set this flag for you on multi-line text views. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ENTER_ACTION}.

flagForceAscii0x80000000 Used to request that the IME should be capable of inputting ASCII + characters. The intention of this flag is to ensure that the user + can type Roman alphabet characters in a {@link android.widget.TextView} + used for, typically, account ID or password input. It is expected that IMEs + normally are able to input ASCII even without being told so (such IMEs + already respect this flag in a sense), but there could be some cases they + aren't when, for instance, only non-ASCII input languagaes like Arabic, + Greek, Hebrew, Russian are enabled in the IME. Applications need to be + aware that the flag is not a guarantee, and not all IMEs will respect it. + However, it is strongly recommended for IME authors to respect this flag + especially when their IME could end up with a state that has only non-ASCII + input languages enabled. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_FORCE_ASCII}.

+

This corresponds to the global attribute + resource symbol {@link android.R.attr#imeOptions}. + @attr name android:imeOptions + */ + public static final int Searchable_imeOptions = 16; + /** +

+ @attr description + If provided and true, this searchable activity will be + included in any global lists of search targets. + The default value is false. Optional attribute.. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#includeInGlobalSearch}. + @attr name android:includeInGlobalSearch + */ + public static final int Searchable_includeInGlobalSearch = 18; + /** +

+ @attr description + The type of data being placed in a text field, used to help an + input method decide how to let the user enter text. The constants + here correspond to those defined by + {@link android.text.InputType}. Generally you can select + a single value, though some can be combined together as + indicated. Setting this attribute to anything besides + none also implies that the text is editable. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ConstantValueDescription
none0x00000000 There is no content type. The text is not editable.
text0x00000001 Just plain old text. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_NORMAL}.
textCapCharacters0x00001001 Can be combined with text and its variations to + request capitalization of all characters. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_CHARACTERS}.
textCapWords0x00002001 Can be combined with text and its variations to + request capitalization of the first character of every word. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_WORDS}.
textCapSentences0x00004001 Can be combined with text and its variations to + request capitalization of the first character of every sentence. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_SENTENCES}.
textAutoCorrect0x00008001 Can be combined with text and its variations to + request auto-correction of text being input. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_CORRECT}.
textAutoComplete0x00010001 Can be combined with text and its variations to + specify that this field will be doing its own auto-completion and + talking with the input method appropriately. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_COMPLETE}.
textMultiLine0x00020001 Can be combined with text and its variations to + allow multiple lines of text in the field. If this flag is not set, + the text field will be constrained to a single line. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_MULTI_LINE}.
textImeMultiLine0x00040001 Can be combined with text and its variations to + indicate that though the regular text view should not be multiple + lines, the IME should provide multiple lines if it can. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_IME_MULTI_LINE}.
textNoSuggestions0x00080001 Can be combined with text and its variations to + indicate that the IME should not show any + dictionary-based word suggestions. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_NO_SUGGESTIONS}.
textUri0x00000011 Text that will be used as a URI. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_URI}.
textEmailAddress0x00000021 Text that will be used as an e-mail address. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_ADDRESS}.
textEmailSubject0x00000031 Text that is being supplied as the subject of an e-mail. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_SUBJECT}.
textShortMessage0x00000041 Text that is the content of a short message. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_SHORT_MESSAGE}.
textLongMessage0x00000051 Text that is the content of a long message. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_LONG_MESSAGE}.
textPersonName0x00000061 Text that is the name of a person. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_PERSON_NAME}.
textPostalAddress0x00000071 Text that is being supplied as a postal mailing address. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_POSTAL_ADDRESS}.
textPassword0x00000081 Text that is a password. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_PASSWORD}.
textVisiblePassword0x00000091 Text that is a password that should be visible. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_VISIBLE_PASSWORD}.
textWebEditText0x000000a1 Text that is being supplied as text in a web form. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EDIT_TEXT}.
textFilter0x000000b1 Text that is filtering some other data. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_FILTER}.
textPhonetic0x000000c1 Text that is for phonetic pronunciation, such as a phonetic name + field in a contact entry. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_PHONETIC}.
textWebEmailAddress0x000000d1 Text that will be used as an e-mail address on a web form. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS}.
textWebPassword0x000000e1 Text that will be used as a password on a web form. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_PASSWORD}.
number0x00000002 A numeric only field. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_VARIATION_NORMAL}.
numberSigned0x00001002 Can be combined with number and its other options to + allow a signed number. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_FLAG_SIGNED}.
numberDecimal0x00002002 Can be combined with number and its other options to + allow a decimal (fractional) number. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_FLAG_DECIMAL}.
numberPassword0x00000012 A numeric password field. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_VARIATION_PASSWORD}.
phone0x00000003 For entering a phone number. Corresponds to + {@link android.text.InputType#TYPE_CLASS_PHONE}.
datetime0x00000004 For entering a date and time. Corresponds to + {@link android.text.InputType#TYPE_CLASS_DATETIME} | + {@link android.text.InputType#TYPE_DATETIME_VARIATION_NORMAL}.
date0x00000014 For entering a date. Corresponds to + {@link android.text.InputType#TYPE_CLASS_DATETIME} | + {@link android.text.InputType#TYPE_DATETIME_VARIATION_DATE}.
time0x00000024 For entering a time. Corresponds to + {@link android.text.InputType#TYPE_CLASS_DATETIME} | + {@link android.text.InputType#TYPE_DATETIME_VARIATION_TIME}.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#inputType}. + @attr name android:inputType + */ + public static final int Searchable_inputType = 10; + /** +

+ @attr description + This is the user-displayed name of the searchable activity. Required + attribute. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#label}. + @attr name android:label + */ + public static final int Searchable_label = 0; + /** +

+ @attr description + If provided and true, this searchable activity will be invoked for all + queries in a particular session. If set to false and the activity + returned zero results for a query, it will not be invoked again in that session for + supersets of that zero-results query. For example, if the activity returned zero + results for "bo", it would not be queried again for "bob". + The default value is false. Optional attribute.. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#queryAfterZeroResults}. + @attr name android:queryAfterZeroResults + */ + public static final int Searchable_queryAfterZeroResults = 19; + /** +

+ @attr description + If supplied, this string will be displayed as the text of the "Search" button. + Optional attribute. + {@deprecated This will create a non-standard UI appearance, because the search bar UI is + changing to use only icons for its buttons.} + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#searchButtonText}. + @attr name android:searchButtonText + */ + @Deprecated + public static final int Searchable_searchButtonText = 9; + /** +

+ @attr description + Additional features are controlled by mode bits in this field. Omitting + this field, or setting to zero, provides default behavior. Optional attribute. + + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
showSearchLabelAsBadge0x04 If set, this flag enables the display of the search target (label) within the + search bar. If neither bad mode is selected, no badge will be shown.
showSearchIconAsBadge0x08This is deprecated.
The default + application icon is now always used, so this option is + obsolete.
queryRewriteFromData0x10 If set, this flag causes the suggestion column SUGGEST_COLUMN_INTENT_DATA to + be considered as the text for suggestion query rewriting. This should only + be used when the values in SUGGEST_COLUMN_INTENT_DATA are suitable for user + inspection and editing - typically, HTTP/HTTPS Uri's.
queryRewriteFromText0x20 If set, this flag causes the suggestion column SUGGEST_COLUMN_TEXT_1 to + be considered as the text for suggestion query rewriting. This should be used + for suggestions in which no query text is provided and the SUGGEST_COLUMN_INTENT_DATA + values are not suitable for user inspection and editing.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#searchMode}. + @attr name android:searchMode + */ + public static final int Searchable_searchMode = 3; + /** +

+ @attr description + If provided, this string will be used to describe the searchable item in the + searchable items settings within system search settings. Optional + attribute. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#searchSettingsDescription}. + @attr name android:searchSettingsDescription + */ + public static final int Searchable_searchSettingsDescription = 20; + /** +

+ @attr description + If provided, this is the trigger indicating that the searchable activity + provides suggestions as well. The value must be a fully-qualified content provider + authority (e.g. "com.example.android.apis.SuggestionProvider") and should match the + "android:authorities" tag in your content provider's manifest entry. Optional + attribute. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#searchSuggestAuthority}. + @attr name android:searchSuggestAuthority + */ + public static final int Searchable_searchSuggestAuthority = 4; + /** +

+ @attr description + If provided, and not overridden by an action in the selected suggestion, this + string will be placed in the action field of the {@link android.content.Intent Intent} + when the user clicks a suggestion. Optional attribute. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#searchSuggestIntentAction}. + @attr name android:searchSuggestIntentAction + */ + public static final int Searchable_searchSuggestIntentAction = 7; + /** +

+ @attr description + If provided, and not overridden by an action in the selected suggestion, this + string will be placed in the data field of the {@link android.content.Intent Intent} + when the user clicks a suggestion. Optional attribute. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#searchSuggestIntentData}. + @attr name android:searchSuggestIntentData + */ + public static final int Searchable_searchSuggestIntentData = 8; + /** +

+ @attr description + If provided, this will be inserted in the suggestions query Uri, after the authority + you have provide but before the standard suggestions path. Optional attribute. + + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#searchSuggestPath}. + @attr name android:searchSuggestPath + */ + public static final int Searchable_searchSuggestPath = 5; + /** +

+ @attr description + If provided, suggestion queries will be passed into your query function + as the selection parameter. Typically this will be a WHERE clause for your + database, and will contain a single question mark, which represents the actual query + string that has been typed by the user. If not provided, then the user query text + will be appended to the query Uri (after an additional "/".) Optional + attribute. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#searchSuggestSelection}. + @attr name android:searchSuggestSelection + */ + public static final int Searchable_searchSuggestSelection = 6; + /** +

+ @attr description + If provided, this is the minimum number of characters needed to trigger + search suggestions. The default value is 0. Optional attribute. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#searchSuggestThreshold}. + @attr name android:searchSuggestThreshold + */ + public static final int Searchable_searchSuggestThreshold = 17; + /** +

+ @attr description + If provided, this specifies the spoken language to be expected, and that it will be + different than the one set in the {@link java.util.Locale#getDefault()}. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#voiceLanguage}. + @attr name android:voiceLanguage + */ + public static final int Searchable_voiceLanguage = 14; + /** +

+ @attr description + If provided, this specifies the language model that should be used by the + voice recognition system. See + {@link android.speech.RecognizerIntent#EXTRA_LANGUAGE_MODEL } for more information. + If not provided, the default value + {@link android.speech.RecognizerIntent#LANGUAGE_MODEL_FREE_FORM } will be used. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#voiceLanguageModel}. + @attr name android:voiceLanguageModel + */ + public static final int Searchable_voiceLanguageModel = 12; + /** +

+ @attr description + If provided, enforces the maximum number of results to return, including the "best" + result which will always be provided as the SEARCH intent's primary query. Must be one + or greater. If not provided, the recognizer will choose how many results to return. + + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#voiceMaxResults}. + @attr name android:voiceMaxResults + */ + public static final int Searchable_voiceMaxResults = 15; + /** +

+ @attr description + If provided, this specifies a prompt that will be displayed during voice input. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#voicePromptText}. + @attr name android:voicePromptText + */ + public static final int Searchable_voicePromptText = 13; + /** +

+ @attr description + Voice search features are controlled by mode bits in this field. Omitting + this field, or setting to zero, provides default behavior. + If showVoiceSearchButton is set, then launchWebSearch or launchRecognizer must + also be set. Optional attribute. + + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
showVoiceSearchButton0x01 If set, display a voice search button. This only takes effect if voice search is + available on the device.
launchWebSearch0x02 If set, the voice search button will take the user directly to a built-in + voice web search activity. Most applications will not use this flag, as it + will take the user away from the activity in which search was invoked.
launchRecognizer0x04 If set, the voice search button will take the user directly to a built-in + voice recording activity. This activity will prompt the user to speak, + transcribe the spoken text, and forward the resulting query + text to the searchable activity, just as if the user had typed it into + the search UI and clicked the search button.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#voiceSearchMode}. + @attr name android:voiceSearchMode + */ + public static final int Searchable_voiceSearchMode = 11; + /** In order to process special action keys during search, you must define them using + one or more "ActionKey" elements in your Searchable metadata. For a more in-depth + discussion of action code handling, please refer to {@link android.app.SearchManager}. + +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #SearchableActionKey_keycode android:keycode} This attribute denotes the action key you wish to respond to.
{@link #SearchableActionKey_queryActionMsg android:queryActionMsg} If you wish to handle an action key during normal search query entry, you + must define an action string here.
{@link #SearchableActionKey_suggestActionMsg android:suggestActionMsg} If you wish to handle an action key while a suggestion is being displayed and + selected, there are two ways to handle this.
{@link #SearchableActionKey_suggestActionMsgColumn android:suggestActionMsgColumn} If you wish to handle an action key while a suggestion is being displayed and + selected, but you do not wish to enable this action key for every suggestion, + then you can use this attribute to control it on a suggestion-by-suggestion basis.
+ @see #SearchableActionKey_keycode + @see #SearchableActionKey_queryActionMsg + @see #SearchableActionKey_suggestActionMsg + @see #SearchableActionKey_suggestActionMsgColumn + */ + public static final int[] SearchableActionKey = { + 0x010100c5, 0x010101db, 0x010101dc, 0x010101dd + }; + /** +

+ @attr description + This attribute denotes the action key you wish to respond to. Note that not + all action keys are actually supported using this mechanism, as many of them are + used for typing, navigation, or system functions. This will be added to the + {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to your + searchable activity. To examine the key code, use + {@link android.content.Intent#getIntExtra getIntExtra(SearchManager.ACTION_KEY)}. +

Note, in addition to the keycode, you must also provide one or more of the action + specifier attributes. Required attribute. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ConstantValueDescription
KEYCODE_UNKNOWN0
KEYCODE_SOFT_LEFT1
KEYCODE_SOFT_RIGHT2
KEYCODE_HOME3
KEYCODE_BACK4
KEYCODE_CALL5
KEYCODE_ENDCALL6
KEYCODE_07
KEYCODE_18
KEYCODE_29
KEYCODE_310
KEYCODE_411
KEYCODE_512
KEYCODE_613
KEYCODE_714
KEYCODE_815
KEYCODE_916
KEYCODE_STAR17
KEYCODE_POUND18
KEYCODE_DPAD_UP19
KEYCODE_DPAD_DOWN20
KEYCODE_DPAD_LEFT21
KEYCODE_DPAD_RIGHT22
KEYCODE_DPAD_CENTER23
KEYCODE_VOLUME_UP24
KEYCODE_VOLUME_DOWN25
KEYCODE_POWER26
KEYCODE_CAMERA27
KEYCODE_CLEAR28
KEYCODE_A29
KEYCODE_B30
KEYCODE_C31
KEYCODE_D32
KEYCODE_E33
KEYCODE_F34
KEYCODE_G35
KEYCODE_H36
KEYCODE_I37
KEYCODE_J38
KEYCODE_K39
KEYCODE_L40
KEYCODE_M41
KEYCODE_N42
KEYCODE_O43
KEYCODE_P44
KEYCODE_Q45
KEYCODE_R46
KEYCODE_S47
KEYCODE_T48
KEYCODE_U49
KEYCODE_V50
KEYCODE_W51
KEYCODE_X52
KEYCODE_Y53
KEYCODE_Z54
KEYCODE_COMMA55
KEYCODE_PERIOD56
KEYCODE_ALT_LEFT57
KEYCODE_ALT_RIGHT58
KEYCODE_SHIFT_LEFT59
KEYCODE_SHIFT_RIGHT60
KEYCODE_TAB61
KEYCODE_SPACE62
KEYCODE_SYM63
KEYCODE_EXPLORER64
KEYCODE_ENVELOPE65
KEYCODE_ENTER66
KEYCODE_DEL67
KEYCODE_GRAVE68
KEYCODE_MINUS69
KEYCODE_EQUALS70
KEYCODE_LEFT_BRACKET71
KEYCODE_RIGHT_BRACKET72
KEYCODE_BACKSLASH73
KEYCODE_SEMICOLON74
KEYCODE_APOSTROPHE75
KEYCODE_SLASH76
KEYCODE_AT77
KEYCODE_NUM78
KEYCODE_HEADSETHOOK79
KEYCODE_FOCUS80
KEYCODE_PLUS81
KEYCODE_MENU82
KEYCODE_NOTIFICATION83
KEYCODE_SEARCH84
KEYCODE_MEDIA_PLAY_PAUSE85
KEYCODE_MEDIA_STOP86
KEYCODE_MEDIA_NEXT87
KEYCODE_MEDIA_PREVIOUS88
KEYCODE_MEDIA_REWIND89
KEYCODE_MEDIA_FAST_FORWARD90
KEYCODE_MUTE91
KEYCODE_PAGE_UP92
KEYCODE_PAGE_DOWN93
KEYCODE_PICTSYMBOLS94
KEYCODE_SWITCH_CHARSET95
KEYCODE_BUTTON_A96
KEYCODE_BUTTON_B97
KEYCODE_BUTTON_C98
KEYCODE_BUTTON_X99
KEYCODE_BUTTON_Y100
KEYCODE_BUTTON_Z101
KEYCODE_BUTTON_L1102
KEYCODE_BUTTON_R1103
KEYCODE_BUTTON_L2104
KEYCODE_BUTTON_R2105
KEYCODE_BUTTON_THUMBL106
KEYCODE_BUTTON_THUMBR107
KEYCODE_BUTTON_START108
KEYCODE_BUTTON_SELECT109
KEYCODE_BUTTON_MODE110
KEYCODE_ESCAPE111
KEYCODE_FORWARD_DEL112
KEYCODE_CTRL_LEFT113
KEYCODE_CTRL_RIGHT114
KEYCODE_CAPS_LOCK115
KEYCODE_SCROLL_LOCK116
KEYCODE_META_LEFT117
KEYCODE_META_RIGHT118
KEYCODE_FUNCTION119
KEYCODE_SYSRQ120
KEYCODE_BREAK121
KEYCODE_MOVE_HOME122
KEYCODE_MOVE_END123
KEYCODE_INSERT124
KEYCODE_FORWARD125
KEYCODE_MEDIA_PLAY126
KEYCODE_MEDIA_PAUSE127
KEYCODE_MEDIA_CLOSE128
KEYCODE_MEDIA_EJECT129
KEYCODE_MEDIA_RECORD130
KEYCODE_F1131
KEYCODE_F2132
KEYCODE_F3133
KEYCODE_F4134
KEYCODE_F5135
KEYCODE_F6136
KEYCODE_F7137
KEYCODE_F8138
KEYCODE_F9139
KEYCODE_F10140
KEYCODE_F11141
KEYCODE_F12142
KEYCODE_NUM_LOCK143
KEYCODE_NUMPAD_0144
KEYCODE_NUMPAD_1145
KEYCODE_NUMPAD_2146
KEYCODE_NUMPAD_3147
KEYCODE_NUMPAD_4148
KEYCODE_NUMPAD_5149
KEYCODE_NUMPAD_6150
KEYCODE_NUMPAD_7151
KEYCODE_NUMPAD_8152
KEYCODE_NUMPAD_9153
KEYCODE_NUMPAD_DIVIDE154
KEYCODE_NUMPAD_MULTIPLY155
KEYCODE_NUMPAD_SUBTRACT156
KEYCODE_NUMPAD_ADD157
KEYCODE_NUMPAD_DOT158
KEYCODE_NUMPAD_COMMA159
KEYCODE_NUMPAD_ENTER160
KEYCODE_NUMPAD_EQUALS161
KEYCODE_NUMPAD_LEFT_PAREN162
KEYCODE_NUMPAD_RIGHT_PAREN163
KEYCODE_VOLUME_MUTE164
KEYCODE_INFO165
KEYCODE_CHANNEL_UP166
KEYCODE_CHANNEL_DOWN167
KEYCODE_ZOOM_IN168
KEYCODE_ZOOM_OUT169
KEYCODE_TV170
KEYCODE_WINDOW171
KEYCODE_GUIDE172
KEYCODE_DVR173
KEYCODE_BOOKMARK174
KEYCODE_CAPTIONS175
KEYCODE_SETTINGS176
KEYCODE_TV_POWER177
KEYCODE_TV_INPUT178
KEYCODE_STB_POWER179
KEYCODE_STB_INPUT180
KEYCODE_AVR_POWER181
KEYCODE_AVR_INPUT182
KEYCODE_PROG_GRED183
KEYCODE_PROG_GREEN184
KEYCODE_PROG_YELLOW185
KEYCODE_PROG_BLUE186
KEYCODE_APP_SWITCH187
KEYCODE_BUTTON_1188
KEYCODE_BUTTON_2189
KEYCODE_BUTTON_3190
KEYCODE_BUTTON_4191
KEYCODE_BUTTON_5192
KEYCODE_BUTTON_6193
KEYCODE_BUTTON_7194
KEYCODE_BUTTON_8195
KEYCODE_BUTTON_9196
KEYCODE_BUTTON_10197
KEYCODE_BUTTON_11198
KEYCODE_BUTTON_12199
KEYCODE_BUTTON_13200
KEYCODE_BUTTON_14201
KEYCODE_BUTTON_15202
KEYCODE_BUTTON_16203
KEYCODE_LANGUAGE_SWITCH204
KEYCODE_MANNER_MODE205
KEYCODE_3D_MODE206
KEYCODE_CONTACTS207
KEYCODE_CALENDAR208
KEYCODE_MUSIC209
KEYCODE_CALCULATOR210
KEYCODE_ZENKAKU_HANKAKU211
KEYCODE_EISU212
KEYCODE_MUHENKAN213
KEYCODE_HENKAN214
KEYCODE_KATAKANA_HIRAGANA215
KEYCODE_YEN216
KEYCODE_RO217
KEYCODE_KANA218
KEYCODE_ASSIST219
KEYCODE_BRIGHTNESS_DOWN220
KEYCODE_BRIGHTNESS_UP221
KEYCODE_MEDIA_AUDIO_TRACK222
KEYCODE_MEDIA_SLEEP223
KEYCODE_MEDIA_WAKEUP224
KEYCODE_PAIRING225
KEYCODE_MEDIA_TOP_MENU226
KEYCODE_11227
KEYCODE_12228
KEYCODE_LAST_CHANNEL229
KEYCODE_TV_DATA_SERVICE230
KEYCODE_VOICE_ASSIST231
KEYCODE_TV_RADIO_SERVICE232
KEYCODE_TV_TELETEXT233
KEYCODE_TV_NUMBER_ENTRY234
KEYCODE_TV_TERRESTRIAL_ANALOG235
KEYCODE_TV_TERRESTRIAL_DIGITAL236
KEYCODE_TV_SATELLITE237
KEYCODE_TV_SATELLITE_BS238
KEYCODE_TV_SATELLITE_CS239
KEYCODE_TV_SATELLITE_SERVICE240
KEYCODE_TV_NETWORK241
KEYCODE_TV_ANTENNA_CABLE242
KEYCODE_TV_INPUT_HDMI_1243
KEYCODE_TV_INPUT_HDMI_2244
KEYCODE_TV_INPUT_HDMI_3245
KEYCODE_TV_INPUT_HDMI_4246
KEYCODE_TV_INPUT_COMPOSITE_1247
KEYCODE_TV_INPUT_COMPOSITE_2248
KEYCODE_TV_INPUT_COMPONENT_1249
KEYCODE_TV_INPUT_COMPONENT_2250
KEYCODE_TV_INPUT_VGA_1251
KEYCODE_TV_AUDIO_DESCRIPTION252
KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP253
KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN254
KEYCODE_TV_ZOOM_MODE255
KEYCODE_TV_CONTENTS_MENU256
KEYCODE_TV_MEDIA_CONTEXT_MENU257
KEYCODE_TV_TIMER_PROGRAMMING258
KEYCODE_HELP259
KEYCODE_NAVIGATE_PREVIOUS260
KEYCODE_NAVIGATE_NEXT261
KEYCODE_NAVIGATE_IN262
KEYCODE_NAVIGATE_OUT263
KEYCODE_MEDIA_SKIP_FORWARD272
KEYCODE_MEDIA_SKIP_BACKWARD273
KEYCODE_MEDIA_STEP_FORWARD274
KEYCODE_MEDIA_STEP_BACKWARD275
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#keycode}. + @attr name android:keycode + */ + public static final int SearchableActionKey_keycode = 0; + /** +

+ @attr description + If you wish to handle an action key during normal search query entry, you + must define an action string here. This will be added to the + {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to your + searchable activity. To examine the string, use + {@link android.content.Intent#getStringExtra getStringExtra(SearchManager.ACTION_MSG)}. + Optional attribute. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#queryActionMsg}. + @attr name android:queryActionMsg + */ + public static final int SearchableActionKey_queryActionMsg = 1; + /** +

+ @attr description + If you wish to handle an action key while a suggestion is being displayed and + selected, there are two ways to handle this. If all of your suggestions + can handle the action key, you can simply define the action message using this + attribute. This will be added to the + {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to your + searchable activity. To examine the string, use + {@link android.content.Intent#getStringExtra getStringExtra(SearchManager.ACTION_MSG)}. + Optional attribute. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#suggestActionMsg}. + @attr name android:suggestActionMsg + */ + public static final int SearchableActionKey_suggestActionMsg = 2; + /** +

+ @attr description + If you wish to handle an action key while a suggestion is being displayed and + selected, but you do not wish to enable this action key for every suggestion, + then you can use this attribute to control it on a suggestion-by-suggestion basis. + First, you must define a column (and name it here) where your suggestions will include + the action string. Then, in your content provider, you must provide this column, and + when desired, provide data in this column. + The search manager will look at your suggestion cursor, using the string + provided here in order to select a column, and will use that to select a string from + the cursor. That string will be added to the + {@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to + your searchable activity. To examine the string, use + {@link android.content.Intent#getStringExtra + getStringExtra(SearchManager.ACTION_MSG)}. If the data does not exist for the + selection suggestion, the action key will be ignored.Optional attribute. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#suggestActionMsgColumn}. + @attr name android:suggestActionMsgColumn + */ + public static final int SearchableActionKey_suggestActionMsgColumn = 3; + /** Attributes that can be used with a SeekBar. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #SeekBar_splitTrack android:splitTrack} Whether to split the track and leave a gap for the thumb drawable.
{@link #SeekBar_thumb android:thumb} Draws the thumb on a seekbar.
{@link #SeekBar_thumbOffset android:thumbOffset} An offset for the thumb that allows it to extend out of the range of the track.
{@link #SeekBar_thumbTint android:thumbTint} Tint to apply to the button graphic.
{@link #SeekBar_thumbTintMode android:thumbTintMode} Blending mode used to apply the button graphic tint.
{@link #SeekBar_useDisabledAlpha android:useDisabledAlpha} Whether to force the track's alpha to ?android:attr/disabledAlpha + when disabled.
+ @see #SeekBar_splitTrack + @see #SeekBar_thumb + @see #SeekBar_thumbOffset + @see #SeekBar_thumbTint + @see #SeekBar_thumbTintMode + @see #SeekBar_useDisabledAlpha + */ + public static final int[] SeekBar = { + 0x01010142, 0x01010143, 0x0101044c, 0x01010471, + 0x01010472, 0x01160057 + }; + /** +

+ @attr description + Whether to split the track and leave a gap for the thumb drawable. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#splitTrack}. + @attr name android:splitTrack + */ + public static final int SeekBar_splitTrack = 2; + /** +

+ @attr description + Draws the thumb on a seekbar. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#thumb}. + @attr name android:thumb + */ + public static final int SeekBar_thumb = 0; + /** +

+ @attr description + An offset for the thumb that allows it to extend out of the range of the track. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#thumbOffset}. + @attr name android:thumbOffset + */ + public static final int SeekBar_thumbOffset = 1; + /** +

+ @attr description + Tint to apply to the button graphic. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#thumbTint}. + @attr name android:thumbTint + */ + public static final int SeekBar_thumbTint = 3; + /** +

+ @attr description + Blending mode used to apply the button graphic tint. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#thumbTintMode}. + @attr name android:thumbTintMode + */ + public static final int SeekBar_thumbTintMode = 4; + /** +

+ @attr description + Whether to force the track's alpha to ?android:attr/disabledAlpha + when disabled. This is required for Holo and Gingerbread, but + should always be false for Material and beyond. + @hide Developers shouldn't need to change this. +

This is a private symbol. + @attr name com.android.internal:useDisabledAlpha + */ + public static final int SeekBar_useDisabledAlpha = 5; + /** Attributes that can be used with a SeekBarPreference. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #SeekBarPreference_layout android:layout} Supply an identifier for the layout resource to inflate when the ViewStub + becomes visible or when forced to do so.
+ @see #SeekBarPreference_layout + */ + public static final int[] SeekBarPreference = { + 0x010100f2 + }; + /** +

+ @attr description + Supply an identifier for the layout resource to inflate when the ViewStub + becomes visible or when forced to do so. The layout resource must be a + valid reference to a layout. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout}. + @attr name android:layout + */ + public static final int SeekBarPreference_layout = 0; + /** Attributes that can be used with a SelectionModeDrawables. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #SelectionModeDrawables_actionModeCopyDrawable android:actionModeCopyDrawable} Drawable to use for the Copy action button in Contextual Action Bar
{@link #SelectionModeDrawables_actionModeCutDrawable android:actionModeCutDrawable} Drawable to use for the Cut action button in Contextual Action Bar
{@link #SelectionModeDrawables_actionModePasteDrawable android:actionModePasteDrawable} Drawable to use for the Paste action button in Contextual Action Bar
{@link #SelectionModeDrawables_actionModeSelectAllDrawable android:actionModeSelectAllDrawable} Drawable to use for the Select all action button in Contextual Action Bar
+ @see #SelectionModeDrawables_actionModeCopyDrawable + @see #SelectionModeDrawables_actionModeCutDrawable + @see #SelectionModeDrawables_actionModePasteDrawable + @see #SelectionModeDrawables_actionModeSelectAllDrawable + */ + public static final int[] SelectionModeDrawables = { + 0x01010311, 0x01010312, 0x01010313, 0x0101037e + }; + /** +

+ @attr description + Drawable to use for the Copy action button in Contextual Action Bar + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionModeCopyDrawable}. + @attr name android:actionModeCopyDrawable + */ + public static final int SelectionModeDrawables_actionModeCopyDrawable = 1; + /** +

+ @attr description + Drawable to use for the Cut action button in Contextual Action Bar + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionModeCutDrawable}. + @attr name android:actionModeCutDrawable + */ + public static final int SelectionModeDrawables_actionModeCutDrawable = 0; + /** +

+ @attr description + Drawable to use for the Paste action button in Contextual Action Bar + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionModePasteDrawable}. + @attr name android:actionModePasteDrawable + */ + public static final int SelectionModeDrawables_actionModePasteDrawable = 2; + /** +

+ @attr description + Drawable to use for the Select all action button in Contextual Action Bar + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionModeSelectAllDrawable}. + @attr name android:actionModeSelectAllDrawable + */ + public static final int SelectionModeDrawables_actionModeSelectAllDrawable = 3; + /** Use injected-location-setting as the root tag of the XML resource that + describes an injected "Location services" setting. Note that the status value (subtitle) + for the setting is specified dynamically by a subclass of SettingInjectorService. + +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SettingInjectorService_icon android:icon} The icon for the preference, should refer to all apps covered by the setting.
{@link #SettingInjectorService_settingsActivity android:settingsActivity} The activity to launch when the setting is clicked on.
{@link #SettingInjectorService_title android:title} The title for the preference.
+ @see #SettingInjectorService_icon + @see #SettingInjectorService_settingsActivity + @see #SettingInjectorService_title + */ + public static final int[] SettingInjectorService = { + 0x01010002, 0x010101e1, 0x01010225 + }; + /** +

+ @attr description + The icon for the preference, should refer to all apps covered by the setting. Typically + a generic icon for the developer. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#icon}. + @attr name android:icon + */ + public static final int SettingInjectorService_icon = 0; + /** +

+ @attr description + The activity to launch when the setting is clicked on. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#settingsActivity}. + @attr name android:settingsActivity + */ + public static final int SettingInjectorService_settingsActivity = 2; + /** +

+ @attr description + The title for the preference. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#title}. + @attr name android:title + */ + public static final int SettingInjectorService_title = 1; + /** Drawable used to draw shapes. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ShapeDrawable_color android:color} Defines the color of the shape.
{@link #ShapeDrawable_dither android:dither} Enables or disables dithering.
{@link #ShapeDrawable_height android:height} Defines the height of the shape.
{@link #ShapeDrawable_tint android:tint} If set, specifies the color to apply to the drawable as a tint.
{@link #ShapeDrawable_tintMode android:tintMode} When a tint color is set, specifies its Porter-Duff blending mode.
{@link #ShapeDrawable_width android:width} Defines the width of the shape.
+ @see #ShapeDrawable_color + @see #ShapeDrawable_dither + @see #ShapeDrawable_height + @see #ShapeDrawable_tint + @see #ShapeDrawable_tintMode + @see #ShapeDrawable_width + */ + public static final int[] ShapeDrawable = { + 0x0101011c, 0x01010121, 0x01010155, 0x01010159, + 0x010101a5, 0x010103fb + }; + /** +

+ @attr description + Defines the color of the shape. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#color}. + @attr name android:color + */ + public static final int ShapeDrawable_color = 4; + /** +

+ @attr description + Enables or disables dithering. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dither}. + @attr name android:dither + */ + public static final int ShapeDrawable_dither = 0; + /** +

+ @attr description + Defines the height of the shape. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#height}. + @attr name android:height + */ + public static final int ShapeDrawable_height = 2; + /** +

+ @attr description + If set, specifies the color to apply to the drawable as a tint. By default, + no tint is applied. May be a color state list. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tint}. + @attr name android:tint + */ + public static final int ShapeDrawable_tint = 1; + /** +

+ @attr description + When a tint color is set, specifies its Porter-Duff blending mode. The + default value is src_in, which treats the drawable as an alpha mask. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#tintMode}. + @attr name android:tintMode + */ + public static final int ShapeDrawable_tintMode = 5; + /** +

+ @attr description + Defines the width of the shape. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#width}. + @attr name android:width + */ + public static final int ShapeDrawable_width = 3; + /** Defines the padding of a ShapeDrawable. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #ShapeDrawablePadding_bottom android:bottom} Bottom padding.
{@link #ShapeDrawablePadding_left android:left} Left padding.
{@link #ShapeDrawablePadding_right android:right} Right padding.
{@link #ShapeDrawablePadding_top android:top} Top padding.
+ @see #ShapeDrawablePadding_bottom + @see #ShapeDrawablePadding_left + @see #ShapeDrawablePadding_right + @see #ShapeDrawablePadding_top + */ + public static final int[] ShapeDrawablePadding = { + 0x010101ad, 0x010101ae, 0x010101af, 0x010101b0 + }; + /** +

+ @attr description + Bottom padding. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#bottom}. + @attr name android:bottom + */ + public static final int ShapeDrawablePadding_bottom = 3; + /** +

+ @attr description + Left padding. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#left}. + @attr name android:left + */ + public static final int ShapeDrawablePadding_left = 0; + /** +

+ @attr description + Right padding. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#right}. + @attr name android:right + */ + public static final int ShapeDrawablePadding_right = 2; + /** +

+ @attr description + Top padding. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#top}. + @attr name android:top + */ + public static final int ShapeDrawablePadding_top = 1; + /** Use slideas the root tag of the XML resource that + describes a {@link android.transition.Slide Slide} transition. + The attributes of the {@link android.R.styleable#Transition Transition} + resource are available in addition to the specific attributes of Slide + described here. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #Slide_slideEdge android:slideEdge}
+ @see #Slide_slideEdge + */ + public static final int[] Slide = { + 0x01010430 + }; + /** +

This symbol is the offset where the {@link android.R.attr#slideEdge} + attribute's value can be found in the {@link #Slide} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
left0x03 Slide to and from the left edge of the Scene.
top0x30 Slide to and from the top edge of the Scene.
right0x05 Slide to and from the right edge of the Scene.
bottom0x50 Slide to and from the bottom edge of the Scene.
start0x00800003 Slide to and from the x-axis position at the start of the Scene root.
end0x00800005 Slide to and from the x-axis position at the end of the Scene root.
+ @attr name android:slideEdge + */ + public static final int Slide_slideEdge = 0; + /** SlidingDrawer specific attributes. These attributes are used to configure + a SlidingDrawer from XML. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #SlidingDrawer_allowSingleTap android:allowSingleTap} Indicates whether the drawer can be opened/closed by a single tap + on the handle.
{@link #SlidingDrawer_animateOnClick android:animateOnClick} Indicates whether the drawer should be opened/closed with an animation + when the user clicks the handle.
{@link #SlidingDrawer_bottomOffset android:bottomOffset} Extra offset for the handle at the bottom of the SlidingDrawer.
{@link #SlidingDrawer_content android:content} Identifier for the child that represents the drawer's content.
{@link #SlidingDrawer_handle android:handle} Identifier for the child that represents the drawer's handle.
{@link #SlidingDrawer_orientation android:orientation} Orientation of the SlidingDrawer.
{@link #SlidingDrawer_topOffset android:topOffset} Extra offset for the handle at the top of the SlidingDrawer.
+ @see #SlidingDrawer_allowSingleTap + @see #SlidingDrawer_animateOnClick + @see #SlidingDrawer_bottomOffset + @see #SlidingDrawer_content + @see #SlidingDrawer_handle + @see #SlidingDrawer_orientation + @see #SlidingDrawer_topOffset + */ + public static final int[] SlidingDrawer = { + 0x010100c4, 0x01010257, 0x01010258, 0x01010259, + 0x0101025a, 0x0101025b, 0x0101025c + }; + /** +

+ @attr description + Indicates whether the drawer can be opened/closed by a single tap + on the handle. (If false, the user must drag or fling, or click + using the trackball, to open/close the drawer.) Default is true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#allowSingleTap}. + @attr name android:allowSingleTap + */ + public static final int SlidingDrawer_allowSingleTap = 3; + /** +

+ @attr description + Indicates whether the drawer should be opened/closed with an animation + when the user clicks the handle. Default is true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#animateOnClick}. + @attr name android:animateOnClick + */ + public static final int SlidingDrawer_animateOnClick = 6; + /** +

+ @attr description + Extra offset for the handle at the bottom of the SlidingDrawer. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#bottomOffset}. + @attr name android:bottomOffset + */ + public static final int SlidingDrawer_bottomOffset = 1; + /** +

+ @attr description + Identifier for the child that represents the drawer's content. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#content}. + @attr name android:content + */ + public static final int SlidingDrawer_content = 5; + /** +

+ @attr description + Identifier for the child that represents the drawer's handle. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#handle}. + @attr name android:handle + */ + public static final int SlidingDrawer_handle = 4; + /** +

+ @attr description + Orientation of the SlidingDrawer. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
horizontal0 Defines an horizontal widget.
vertical1 Defines a vertical widget.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#orientation}. + @attr name android:orientation + */ + public static final int SlidingDrawer_orientation = 0; + /** +

+ @attr description + Extra offset for the handle at the top of the SlidingDrawer. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#topOffset}. + @attr name android:topOffset + */ + public static final int SlidingDrawer_topOffset = 2; + /** Attributes that can be used with a SlidingTab. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #SlidingTab_orientation android:orientation} Use "horizontal" for a row, "vertical" for a column.
+ @see #SlidingTab_orientation + */ + public static final int[] SlidingTab = { + 0x010100c4 + }; + /** +

+ @attr description + Use "horizontal" for a row, "vertical" for a column. The default is horizontal. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
horizontal0 Defines an horizontal widget.
vertical1 Defines a vertical widget.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#orientation}. + @attr name android:orientation + */ + public static final int SlidingTab_orientation = 0; + /** Use spell-checker as the root tag of the XML resource that + describes an + {@link android.service.textservice.SpellCheckerService} service, which is + referenced from its + {@link android.view.textservice.SpellCheckerSession#SERVICE_META_DATA} + meta-data entry. Described here are the attributes that can be + included in that tag. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #SpellChecker_label android:label} The name of the spell checker.
{@link #SpellChecker_settingsActivity android:settingsActivity} Component name of an activity that allows the user to modify + the settings for this service.
+ @see #SpellChecker_label + @see #SpellChecker_settingsActivity + */ + public static final int[] SpellChecker = { + 0x01010001, 0x01010225 + }; + /** +

+ @attr description + The name of the spell checker. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#label}. + @attr name android:label + */ + public static final int SpellChecker_label = 0; + /** +

+ @attr description + Component name of an activity that allows the user to modify + the settings for this service. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#settingsActivity}. + @attr name android:settingsActivity + */ + public static final int SpellChecker_settingsActivity = 1; + /** This is the subtype of the spell checker. Subtype can describe locales (e.g. en_US, fr_FR...) +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SpellChecker_Subtype_label android:label} The name of the subtype.
{@link #SpellChecker_Subtype_subtypeExtraValue android:subtypeExtraValue} The extra value of the subtype.
{@link #SpellChecker_Subtype_subtypeLocale android:subtypeLocale} The locale of the subtype.
+ @see #SpellChecker_Subtype_label + @see #SpellChecker_Subtype_subtypeExtraValue + @see #SpellChecker_Subtype_subtypeLocale + */ + public static final int[] SpellChecker_Subtype = { + 0x01010001, 0x01010399, 0x0101039a + }; + /** +

+ @attr description + The name of the subtype. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#label}. + @attr name android:label + */ + public static final int SpellChecker_Subtype_label = 0; + /** +

+ @attr description + The extra value of the subtype. This string can be any string and will be passed to + the SpellChecker. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#subtypeExtraValue}. + @attr name android:subtypeExtraValue + */ + public static final int SpellChecker_Subtype_subtypeExtraValue = 2; + /** +

+ @attr description + The locale of the subtype. This string should be a locale (e.g. en_US, fr_FR...) + This is also used by the framework to know the supported locales + of the spell checker. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#subtypeLocale}. + @attr name android:subtypeLocale + */ + public static final int SpellChecker_Subtype_subtypeLocale = 1; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #Spinner_disableChildrenWhenDisabled android:disableChildrenWhenDisabled} Whether this spinner should mark child views as enabled/disabled when + the spinner itself is enabled/disabled.
{@link #Spinner_dropDownSelector android:dropDownSelector} List selector to use for spinnerMode="dropdown" display.
{@link #Spinner_dropDownWidth android:dropDownWidth} Width of the dropdown in spinnerMode="dropdown".
{@link #Spinner_gravity android:gravity} Gravity setting for positioning the currently selected item.
{@link #Spinner_popupBackground android:popupBackground} Background drawable to use for the dropdown in spinnerMode="dropdown".
{@link #Spinner_popupElevation android:popupElevation} Window elevation to use for the dropdown in spinnerMode="dropdown".
{@link #Spinner_popupPromptView android:popupPromptView} Reference to a layout to use for displaying a prompt in the dropdown for + spinnerMode="dropdown".
{@link #Spinner_popupTheme android:popupTheme} Theme to use for the drop-down or dialog popup window.
{@link #Spinner_prompt android:prompt} The prompt to display when the spinner's dialog is shown.
{@link #Spinner_spinnerMode android:spinnerMode} Display mode for spinner options.
+ @see #Spinner_disableChildrenWhenDisabled + @see #Spinner_dropDownSelector + @see #Spinner_dropDownWidth + @see #Spinner_gravity + @see #Spinner_popupBackground + @see #Spinner_popupElevation + @see #Spinner_popupPromptView + @see #Spinner_popupTheme + @see #Spinner_prompt + @see #Spinner_spinnerMode + */ + public static final int[] Spinner = { + 0x010100af, 0x01010175, 0x01010176, 0x0101017b, + 0x01010262, 0x010102f1, 0x0101048c, 0x010104a9, + 0x0116005f, 0x01160060 + }; + /** +

+ @attr description + Whether this spinner should mark child views as enabled/disabled when + the spinner itself is enabled/disabled. +

This is a private symbol. + @attr name com.android.internal:disableChildrenWhenDisabled + */ + public static final int Spinner_disableChildrenWhenDisabled = 9; + /** +

+ @attr description + List selector to use for spinnerMode="dropdown" display. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dropDownSelector}. + @attr name android:dropDownSelector + */ + public static final int Spinner_dropDownSelector = 1; + /** +

+ @attr description + Width of the dropdown in spinnerMode="dropdown". + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
fill_parent-1 The dropdown should fill the width of the screen. + This constant is deprecated starting from API Level 8 and + is replaced by {@code match_parent}.
match_parent-1 The dropdown should fit the width of the screen. + Introduced in API Level 8.
wrap_content-2 The dropdown should fit the width of its anchor.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#dropDownWidth}. + @attr name android:dropDownWidth + */ + public static final int Spinner_dropDownWidth = 4; + /** +

+ @attr description + Gravity setting for positioning the currently selected item. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#gravity}. + @attr name android:gravity + */ + public static final int Spinner_gravity = 0; + /** +

+ @attr description + Background drawable to use for the dropdown in spinnerMode="dropdown". + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#popupBackground}. + @attr name android:popupBackground + */ + public static final int Spinner_popupBackground = 2; + /** +

+ @attr description + Window elevation to use for the dropdown in spinnerMode="dropdown". + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#popupElevation}. + @attr name android:popupElevation + */ + public static final int Spinner_popupElevation = 6; + /** +

+ @attr description + Reference to a layout to use for displaying a prompt in the dropdown for + spinnerMode="dropdown". This layout must contain a TextView with the id + {@code @android:id/text1} to be populated with the prompt text. +

This is a private symbol. + @attr name com.android.internal:popupPromptView + */ + public static final int Spinner_popupPromptView = 8; + /** +

+ @attr description + Theme to use for the drop-down or dialog popup window. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#popupTheme}. + @attr name android:popupTheme + */ + public static final int Spinner_popupTheme = 7; + /** +

+ @attr description + The prompt to display when the spinner's dialog is shown. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#prompt}. + @attr name android:prompt + */ + public static final int Spinner_prompt = 3; + /** +

+ @attr description + Display mode for spinner options. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
dialog0 Spinner options will be presented to the user as a dialog window.
dropdown1 Spinner options will be presented to the user as an inline dropdown + anchored to the spinner widget itself.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#spinnerMode}. + @attr name android:spinnerMode + */ + public static final int Spinner_spinnerMode = 5; + /** Attributes that can be used with a StackView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #StackView_clickColor android:clickColor} Color of the outline of click feedback.
{@link #StackView_resOutColor android:resOutColor} Color of the res-out outline.
+ @see #StackView_clickColor + @see #StackView_resOutColor + */ + public static final int[] StackView = { + 0x01160058, 0x01160059 + }; + /** +

+ @attr description + Color of the outline of click feedback. +

This is a private symbol. + @attr name com.android.internal:clickColor + */ + public static final int StackView_clickColor = 1; + /** +

+ @attr description + Color of the res-out outline. +

This is a private symbol. + @attr name com.android.internal:resOutColor + */ + public static final int StackView_resOutColor = 0; + /** Attributes that can be assigned to a StateListAnimator item. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #StateListAnimatorItem_animation android:animation} Animation to use on each child.
+ @see #StateListAnimatorItem_animation + */ + public static final int[] StateListAnimatorItem = { + 0x010101cd + }; + /** +

+ @attr description + Animation to use on each child. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#animation}. + @attr name android:animation + */ + public static final int StateListAnimatorItem_animation = 0; + /** Drawable used to render several states. Each state is represented by + a child drawable. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #StateListDrawable_autoMirrored android:autoMirrored} Indicates if the drawable needs to be mirrored when its layout direction is + RTL (right-to-left).
{@link #StateListDrawable_constantSize android:constantSize} If true, the drawable's reported internal size will remain + constant as the state changes; the size is the maximum of all + of the states.
{@link #StateListDrawable_dither android:dither} Enables or disables dithering of the bitmap if the bitmap does not have the + same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with + an RGB 565 screen).
{@link #StateListDrawable_enterFadeDuration android:enterFadeDuration} Amount of time (in milliseconds) to fade in a new state drawable.
{@link #StateListDrawable_exitFadeDuration android:exitFadeDuration} Amount of time (in milliseconds) to fade out an old state drawable.
{@link #StateListDrawable_variablePadding android:variablePadding} If true, allows the drawable's padding to change based on the + current state that is selected.
{@link #StateListDrawable_visible android:visible} Indicates whether the drawable should be initially visible.
+ @see #StateListDrawable_autoMirrored + @see #StateListDrawable_constantSize + @see #StateListDrawable_dither + @see #StateListDrawable_enterFadeDuration + @see #StateListDrawable_exitFadeDuration + @see #StateListDrawable_variablePadding + @see #StateListDrawable_visible + */ + public static final int[] StateListDrawable = { + 0x0101011c, 0x01010194, 0x01010195, 0x01010196, + 0x0101030c, 0x0101030d, 0x010103ea + }; + /** +

+ @attr description + Indicates if the drawable needs to be mirrored when its layout direction is + RTL (right-to-left). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#autoMirrored}. + @attr name android:autoMirrored + */ + public static final int StateListDrawable_autoMirrored = 6; + /** +

+ @attr description + If true, the drawable's reported internal size will remain + constant as the state changes; the size is the maximum of all + of the states. If false, the size will vary based on the + current state. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#constantSize}. + @attr name android:constantSize + */ + public static final int StateListDrawable_constantSize = 3; + /** +

+ @attr description + Enables or disables dithering of the bitmap if the bitmap does not have the + same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with + an RGB 565 screen). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dither}. + @attr name android:dither + */ + public static final int StateListDrawable_dither = 0; + /** +

+ @attr description + Amount of time (in milliseconds) to fade in a new state drawable. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#enterFadeDuration}. + @attr name android:enterFadeDuration + */ + public static final int StateListDrawable_enterFadeDuration = 4; + /** +

+ @attr description + Amount of time (in milliseconds) to fade out an old state drawable. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#exitFadeDuration}. + @attr name android:exitFadeDuration + */ + public static final int StateListDrawable_exitFadeDuration = 5; + /** +

+ @attr description + If true, allows the drawable's padding to change based on the + current state that is selected. If false, the padding will + stay the same (based on the maximum padding of all the states). + Enabling this feature requires that the owner of the drawable + deal with performing layout when the state changes, which is + often not supported. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#variablePadding}. + @attr name android:variablePadding + */ + public static final int StateListDrawable_variablePadding = 2; + /** +

+ @attr description + Indicates whether the drawable should be initially visible. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#visible}. + @attr name android:visible + */ + public static final int StateListDrawable_visible = 1; + /** Represents a single state inside a StateListDrawable. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #StateListDrawableItem_drawable android:drawable} Reference to a drawable resource to use for the state.
+ @see #StateListDrawableItem_drawable + */ + public static final int[] StateListDrawableItem = { + 0x01010199 + }; + /** +

+ @attr description + Reference to a drawable resource to use for the state. If not + given, the drawable must be defined by the first child tag. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawable}. + @attr name android:drawable + */ + public static final int StateListDrawableItem_drawable = 0; + /** Attributes that can be used with a Storage. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #Storage_allowMassStorage android:allowMassStorage} true if the storage can be shared via USB mass storage
{@link #Storage_emulated android:emulated} true if the storage is emulated via the FUSE sdcard daemon
{@link #Storage_maxFileSize android:maxFileSize} maximum file size for the volume in megabytes, zero or unspecified if it is unbounded
{@link #Storage_mountPoint android:mountPoint} path to mount point for the storage
{@link #Storage_mtpReserve android:mtpReserve} number of megabytes of storage MTP should reserve for free storage + (used for emulated storage that is shared with system's data partition)
{@link #Storage_primary android:primary} true if the storage is the primary external storage
{@link #Storage_removable android:removable} true if the storage is removable
{@link #Storage_storageDescription android:storageDescription} user visible description of the storage
+ @see #Storage_allowMassStorage + @see #Storage_emulated + @see #Storage_maxFileSize + @see #Storage_mountPoint + @see #Storage_mtpReserve + @see #Storage_primary + @see #Storage_removable + @see #Storage_storageDescription + */ + public static final int[] Storage = { + 0x01160093, 0x01160094, 0x01160095, 0x01160096, + 0x01160097, 0x01160098, 0x01160099, 0x0116009a + }; + /** +

+ @attr description + true if the storage can be shared via USB mass storage +

This is a private symbol. + @attr name com.android.internal:allowMassStorage + */ + public static final int Storage_allowMassStorage = 6; + /** +

+ @attr description + true if the storage is emulated via the FUSE sdcard daemon +

This is a private symbol. + @attr name com.android.internal:emulated + */ + public static final int Storage_emulated = 4; + /** +

+ @attr description + maximum file size for the volume in megabytes, zero or unspecified if it is unbounded +

This is a private symbol. + @attr name com.android.internal:maxFileSize + */ + public static final int Storage_maxFileSize = 7; + /** +

+ @attr description + path to mount point for the storage +

This is a private symbol. + @attr name com.android.internal:mountPoint + */ + public static final int Storage_mountPoint = 0; + /** +

+ @attr description + number of megabytes of storage MTP should reserve for free storage + (used for emulated storage that is shared with system's data partition) +

This is a private symbol. + @attr name com.android.internal:mtpReserve + */ + public static final int Storage_mtpReserve = 5; + /** +

+ @attr description + true if the storage is the primary external storage +

This is a private symbol. + @attr name com.android.internal:primary + */ + public static final int Storage_primary = 2; + /** +

+ @attr description + true if the storage is removable +

This is a private symbol. + @attr name com.android.internal:removable + */ + public static final int Storage_removable = 3; + /** +

+ @attr description + user visible description of the storage +

This is a private symbol. + @attr name com.android.internal:storageDescription + */ + public static final int Storage_storageDescription = 1; + /** Attributes that can be used with a SuggestionSpan. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #SuggestionSpan_textUnderlineColor android:textUnderlineColor}
{@link #SuggestionSpan_textUnderlineThickness android:textUnderlineThickness}
+ @see #SuggestionSpan_textUnderlineColor + @see #SuggestionSpan_textUnderlineThickness + */ + public static final int[] SuggestionSpan = { + 0x01160008, 0x01160009 + }; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#textUnderlineColor} + attribute's value can be found in the {@link #SuggestionSpan} array. + @attr name com.android.internal:textUnderlineColor + */ + public static final int SuggestionSpan_textUnderlineColor = 0; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#textUnderlineThickness} + attribute's value can be found in the {@link #SuggestionSpan} array. + @attr name com.android.internal:textUnderlineThickness + */ + public static final int SuggestionSpan_textUnderlineThickness = 1; + /** Attributes that can be used with a Switch. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Switch_showText android:showText} Whether to draw on/off text.
{@link #Switch_splitTrack android:splitTrack} Whether to split the track and leave a gap for the thumb drawable.
{@link #Switch_switchMinWidth android:switchMinWidth} Minimum width for the switch component
{@link #Switch_switchPadding android:switchPadding} Minimum space between the switch and caption text
{@link #Switch_switchTextAppearance android:switchTextAppearance} TextAppearance style for text displayed on the switch thumb.
{@link #Switch_textOff android:textOff} Text to use when the switch is in the unchecked/"off" state.
{@link #Switch_textOn android:textOn} Text to use when the switch is in the checked/"on" state.
{@link #Switch_thumb android:thumb} Drawable to use as the "thumb" that switches back and forth.
{@link #Switch_thumbTextPadding android:thumbTextPadding} Amount of padding on either side of text within the switch thumb.
{@link #Switch_thumbTint android:thumbTint} Tint to apply to the thumb.
{@link #Switch_thumbTintMode android:thumbTintMode} Blending mode used to apply the thumb tint.
{@link #Switch_track android:track} Drawable to use as the "track" that the switch thumb slides within.
{@link #Switch_trackTint android:trackTint} Tint to apply to the track.
{@link #Switch_trackTintMode android:trackTintMode} Blending mode used to apply the track tint.
+ @see #Switch_showText + @see #Switch_splitTrack + @see #Switch_switchMinWidth + @see #Switch_switchPadding + @see #Switch_switchTextAppearance + @see #Switch_textOff + @see #Switch_textOn + @see #Switch_thumb + @see #Switch_thumbTextPadding + @see #Switch_thumbTint + @see #Switch_thumbTintMode + @see #Switch_track + @see #Switch_trackTint + @see #Switch_trackTintMode + */ + public static final int[] Switch = { + 0x01010124, 0x01010125, 0x01010142, 0x0101036e, + 0x0101036f, 0x01010370, 0x01010371, 0x01010372, + 0x0101044c, 0x01010471, 0x01010472, 0x010104ad, + 0x010104d9, 0x010104da + }; + /** +

+ @attr description + Whether to draw on/off text. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#showText}. + @attr name android:showText + */ + public static final int Switch_showText = 11; + /** +

+ @attr description + Whether to split the track and leave a gap for the thumb drawable. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#splitTrack}. + @attr name android:splitTrack + */ + public static final int Switch_splitTrack = 8; + /** +

+ @attr description + Minimum width for the switch component + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#switchMinWidth}. + @attr name android:switchMinWidth + */ + public static final int Switch_switchMinWidth = 5; + /** +

+ @attr description + Minimum space between the switch and caption text + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#switchPadding}. + @attr name android:switchPadding + */ + public static final int Switch_switchPadding = 6; + /** +

+ @attr description + TextAppearance style for text displayed on the switch thumb. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#switchTextAppearance}. + @attr name android:switchTextAppearance + */ + public static final int Switch_switchTextAppearance = 3; + /** +

+ @attr description + Text to use when the switch is in the unchecked/"off" state. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textOff}. + @attr name android:textOff + */ + public static final int Switch_textOff = 1; + /** +

+ @attr description + Text to use when the switch is in the checked/"on" state. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textOn}. + @attr name android:textOn + */ + public static final int Switch_textOn = 0; + /** +

+ @attr description + Drawable to use as the "thumb" that switches back and forth. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#thumb}. + @attr name android:thumb + */ + public static final int Switch_thumb = 2; + /** +

+ @attr description + Amount of padding on either side of text within the switch thumb. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#thumbTextPadding}. + @attr name android:thumbTextPadding + */ + public static final int Switch_thumbTextPadding = 7; + /** +

+ @attr description + Tint to apply to the thumb. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#thumbTint}. + @attr name android:thumbTint + */ + public static final int Switch_thumbTint = 9; + /** +

+ @attr description + Blending mode used to apply the thumb tint. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#thumbTintMode}. + @attr name android:thumbTintMode + */ + public static final int Switch_thumbTintMode = 10; + /** +

+ @attr description + Drawable to use as the "track" that the switch thumb slides within. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#track}. + @attr name android:track + */ + public static final int Switch_track = 4; + /** +

+ @attr description + Tint to apply to the track. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#trackTint}. + @attr name android:trackTint + */ + public static final int Switch_trackTint = 12; + /** +

+ @attr description + Blending mode used to apply the track tint. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#trackTintMode}. + @attr name android:trackTintMode + */ + public static final int Switch_trackTintMode = 13; + /** Attributes that can be used with a SwitchPreference. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #SwitchPreference_disableDependentsState android:disableDependentsState} The state (true for on, or false for off) that causes dependents to be disabled.
{@link #SwitchPreference_summaryOff android:summaryOff} The summary for the Preference in a PreferenceActivity screen when the + SwitchPreference is unchecked.
{@link #SwitchPreference_summaryOn android:summaryOn} The summary for the Preference in a PreferenceActivity screen when the + SwitchPreference is checked.
{@link #SwitchPreference_switchTextOff android:switchTextOff} The text used on the switch itself when in the "off" state.
{@link #SwitchPreference_switchTextOn android:switchTextOn} The text used on the switch itself when in the "on" state.
+ @see #SwitchPreference_disableDependentsState + @see #SwitchPreference_summaryOff + @see #SwitchPreference_summaryOn + @see #SwitchPreference_switchTextOff + @see #SwitchPreference_switchTextOn + */ + public static final int[] SwitchPreference = { + 0x010101ef, 0x010101f0, 0x010101f1, 0x0101036b, + 0x0101036c + }; + /** +

+ @attr description + The state (true for on, or false for off) that causes dependents to be disabled. By default, + dependents will be disabled when this is unchecked, so the value of this preference is false. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#disableDependentsState}. + @attr name android:disableDependentsState + */ + public static final int SwitchPreference_disableDependentsState = 2; + /** +

+ @attr description + The summary for the Preference in a PreferenceActivity screen when the + SwitchPreference is unchecked. If separate on/off summaries are not + needed, the summary attribute can be used instead. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#summaryOff}. + @attr name android:summaryOff + */ + public static final int SwitchPreference_summaryOff = 1; + /** +

+ @attr description + The summary for the Preference in a PreferenceActivity screen when the + SwitchPreference is checked. If separate on/off summaries are not + needed, the summary attribute can be used instead. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#summaryOn}. + @attr name android:summaryOn + */ + public static final int SwitchPreference_summaryOn = 0; + /** +

+ @attr description + The text used on the switch itself when in the "off" state. + This should be a very SHORT string, as it appears in a small space. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#switchTextOff}. + @attr name android:switchTextOff + */ + public static final int SwitchPreference_switchTextOff = 4; + /** +

+ @attr description + The text used on the switch itself when in the "on" state. + This should be a very SHORT string, as it appears in a small space. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#switchTextOn}. + @attr name android:switchTextOn + */ + public static final int SwitchPreference_switchTextOn = 3; + /** Use account-authenticator as the root tag of the XML resource that + describes an account authenticator. + +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #SyncAdapter_accountType android:accountType} The account type this authenticator handles.
{@link #SyncAdapter_allowParallelSyncs android:allowParallelSyncs} Set to true to tell the SyncManager that this SyncAdapter supports + multiple simultaneous syncs for the same account type and authority.
{@link #SyncAdapter_contentAuthority android:contentAuthority} the authority of a content provider.
{@link #SyncAdapter_isAlwaysSyncable android:isAlwaysSyncable} Set to true to tell the SyncManager to automatically call setIsSyncable(.
{@link #SyncAdapter_settingsActivity android:settingsActivity} If provided, specifies the action of the settings + activity for this SyncAdapter.
{@link #SyncAdapter_supportsUploading android:supportsUploading}
{@link #SyncAdapter_userVisible android:userVisible}
+ @see #SyncAdapter_accountType + @see #SyncAdapter_allowParallelSyncs + @see #SyncAdapter_contentAuthority + @see #SyncAdapter_isAlwaysSyncable + @see #SyncAdapter_settingsActivity + @see #SyncAdapter_supportsUploading + @see #SyncAdapter_userVisible + */ + public static final int[] SyncAdapter = { + 0x01010225, 0x0101028f, 0x01010290, 0x01010291, + 0x0101029b, 0x01010332, 0x01010333 + }; + /** +

+ @attr description + The account type this authenticator handles. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#accountType}. + @attr name android:accountType + */ + public static final int SyncAdapter_accountType = 1; + /** +

+ @attr description + Set to true to tell the SyncManager that this SyncAdapter supports + multiple simultaneous syncs for the same account type and authority. + Otherwise the SyncManager will be sure not to issue a start sync request + to this SyncAdapter if the SyncAdapter is already syncing another account. + Defaults to false. + + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#allowParallelSyncs}. + @attr name android:allowParallelSyncs + */ + public static final int SyncAdapter_allowParallelSyncs = 5; + /** +

+ @attr description + the authority of a content provider. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#contentAuthority}. + @attr name android:contentAuthority + */ + public static final int SyncAdapter_contentAuthority = 2; + /** +

+ @attr description + Set to true to tell the SyncManager to automatically call setIsSyncable(..., ..., 1) + for the SyncAdapter instead of issuaing an initialization sync to the SyncAdapter. + Defaults to false. + + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#isAlwaysSyncable}. + @attr name android:isAlwaysSyncable + */ + public static final int SyncAdapter_isAlwaysSyncable = 6; + /** +

+ @attr description + If provided, specifies the action of the settings + activity for this SyncAdapter. + + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#settingsActivity}. + @attr name android:settingsActivity + */ + public static final int SyncAdapter_settingsActivity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#supportsUploading} + attribute's value can be found in the {@link #SyncAdapter} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:supportsUploading + */ + public static final int SyncAdapter_supportsUploading = 4; + /** +

This symbol is the offset where the {@link android.R.attr#userVisible} + attribute's value can be found in the {@link #SyncAdapter} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:userVisible + */ + public static final int SyncAdapter_userVisible = 3; + /** Attributes that can be used with a TabWidget. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #TabWidget_divider android:divider} Drawable used to draw the divider between tabs.
{@link #TabWidget_tabLayout android:tabLayout} Layout used to organize each tab's content.
{@link #TabWidget_tabStripEnabled android:tabStripEnabled} Determines whether the strip under the tab indicators is drawn or not.
{@link #TabWidget_tabStripLeft android:tabStripLeft} Drawable used to draw the left part of the strip underneath the tabs.
{@link #TabWidget_tabStripRight android:tabStripRight} Drawable used to draw the right part of the strip underneath the tabs.
+ @see #TabWidget_divider + @see #TabWidget_tabLayout + @see #TabWidget_tabStripEnabled + @see #TabWidget_tabStripLeft + @see #TabWidget_tabStripRight + */ + public static final int[] TabWidget = { + 0x01010129, 0x010102bb, 0x010102bc, 0x010102bd, + 0x0116005a + }; + /** +

+ @attr description + Drawable used to draw the divider between tabs. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#divider}. + @attr name android:divider + */ + public static final int TabWidget_divider = 0; + /** +

+ @attr description + Layout used to organize each tab's content. +

This is a private symbol. + @attr name com.android.internal:tabLayout + */ + public static final int TabWidget_tabLayout = 4; + /** +

+ @attr description + Determines whether the strip under the tab indicators is drawn or not. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tabStripEnabled}. + @attr name android:tabStripEnabled + */ + public static final int TabWidget_tabStripEnabled = 3; + /** +

+ @attr description + Drawable used to draw the left part of the strip underneath the tabs. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tabStripLeft}. + @attr name android:tabStripLeft + */ + public static final int TabWidget_tabStripLeft = 1; + /** +

+ @attr description + Drawable used to draw the right part of the strip underneath the tabs. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tabStripRight}. + @attr name android:tabStripRight + */ + public static final int TabWidget_tabStripRight = 2; + /** Attributes that can be used with a TableLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TableLayout_collapseColumns android:collapseColumns} The zero-based index of the columns to collapse.
{@link #TableLayout_shrinkColumns android:shrinkColumns} The zero-based index of the columns to shrink.
{@link #TableLayout_stretchColumns android:stretchColumns} The zero-based index of the columns to stretch.
+ @see #TableLayout_collapseColumns + @see #TableLayout_shrinkColumns + @see #TableLayout_stretchColumns + */ + public static final int[] TableLayout = { + 0x01010149, 0x0101014a, 0x0101014b + }; + /** +

+ @attr description + The zero-based index of the columns to collapse. The column indices + must be separated by a comma: 1, 2, 5. Illegal and duplicate + indices are ignored. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#collapseColumns}. + @attr name android:collapseColumns + */ + public static final int TableLayout_collapseColumns = 2; + /** +

+ @attr description + The zero-based index of the columns to shrink. The column indices + must be separated by a comma: 1, 2, 5. Illegal and duplicate + indices are ignored. You can shrink all columns by using the + value "*" instead. Note that a column can be marked stretchable + and shrinkable at the same time. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#shrinkColumns}. + @attr name android:shrinkColumns + */ + public static final int TableLayout_shrinkColumns = 1; + /** +

+ @attr description + The zero-based index of the columns to stretch. The column indices + must be separated by a comma: 1, 2, 5. Illegal and duplicate + indices are ignored. You can stretch all columns by using the + value "*" instead. Note that a column can be marked stretchable + and shrinkable at the same time. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#stretchColumns}. + @attr name android:stretchColumns + */ + public static final int TableLayout_stretchColumns = 0; + /** Attributes that can be used with a TableRow. + */ + public static final int[] TableRow = { + + }; + /** Attributes that can be used with a TableRow_Cell. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #TableRow_Cell_layout_column android:layout_column} The index of the column in which this child should be.
{@link #TableRow_Cell_layout_span android:layout_span} Defines how many columns this child should span.
+ @see #TableRow_Cell_layout_column + @see #TableRow_Cell_layout_span + */ + public static final int[] TableRow_Cell = { + 0x0101014c, 0x0101014d + }; + /** +

+ @attr description + The index of the column in which this child should be. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_column}. + @attr name android:layout_column + */ + public static final int TableRow_Cell_layout_column = 0; + /** +

+ @attr description + Defines how many columns this child should span. Must be >= 1. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_span}. + @attr name android:layout_span + */ + public static final int TableRow_Cell_layout_span = 1; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_elegantTextHeight android:elegantTextHeight} Elegant text height, especially for less compacted complex script text.
{@link #TextAppearance_fontFamily android:fontFamily} Font family (named by string) for the text.
{@link #TextAppearance_fontFeatureSettings android:fontFeatureSettings} Font feature settings.
{@link #TextAppearance_letterSpacing android:letterSpacing} Text letter-spacing.
{@link #TextAppearance_shadowColor android:shadowColor} Place a blurred shadow of text underneath the text, drawn with the + specified color.
{@link #TextAppearance_shadowDx android:shadowDx} Horizontal offset of the text shadow.
{@link #TextAppearance_shadowDy android:shadowDy} Vertical offset of the text shadow.
{@link #TextAppearance_shadowRadius android:shadowRadius} Blur radius of the text shadow.
{@link #TextAppearance_textAllCaps android:textAllCaps} Present the text in ALL CAPS.
{@link #TextAppearance_textColor android:textColor} Text color.
{@link #TextAppearance_textColorHighlight android:textColorHighlight} Color of the text selection highlight.
{@link #TextAppearance_textColorHint android:textColorHint} Color of the hint text.
{@link #TextAppearance_textColorLink android:textColorLink} Color of the links.
{@link #TextAppearance_textSize android:textSize} Size of the text.
{@link #TextAppearance_textStyle android:textStyle} Style (bold, italic, bolditalic) for the text.
{@link #TextAppearance_typeface android:typeface} Typeface (normal, sans, serif, monospace) for the text.
+ @see #TextAppearance_elegantTextHeight + @see #TextAppearance_fontFamily + @see #TextAppearance_fontFeatureSettings + @see #TextAppearance_letterSpacing + @see #TextAppearance_shadowColor + @see #TextAppearance_shadowDx + @see #TextAppearance_shadowDy + @see #TextAppearance_shadowRadius + @see #TextAppearance_textAllCaps + @see #TextAppearance_textColor + @see #TextAppearance_textColorHighlight + @see #TextAppearance_textColorHint + @see #TextAppearance_textColorLink + @see #TextAppearance_textSize + @see #TextAppearance_textStyle + @see #TextAppearance_typeface + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x01010099, 0x0101009a, 0x0101009b, 0x01010161, + 0x01010162, 0x01010163, 0x01010164, 0x0101038c, + 0x010103ac, 0x0101045d, 0x010104b6, 0x010104b7 + }; + /** +

+ @attr description + Elegant text height, especially for less compacted complex script text. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#elegantTextHeight}. + @attr name android:elegantTextHeight + */ + public static final int TextAppearance_elegantTextHeight = 13; + /** +

+ @attr description + Font family (named by string) for the text. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fontFamily}. + @attr name android:fontFamily + */ + public static final int TextAppearance_fontFamily = 12; + /** +

+ @attr description + Font feature settings. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fontFeatureSettings}. + @attr name android:fontFeatureSettings + */ + public static final int TextAppearance_fontFeatureSettings = 15; + /** +

+ @attr description + Text letter-spacing. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#letterSpacing}. + @attr name android:letterSpacing + */ + public static final int TextAppearance_letterSpacing = 14; + /** +

+ @attr description + Place a blurred shadow of text underneath the text, drawn with the + specified color. The text shadow produced does not interact with + properties on View that are responsible for real time shadows, + {@link android.R.styleable#View_elevation elevation} and + {@link android.R.styleable#View_translationZ translationZ}. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#shadowColor}. + @attr name android:shadowColor + */ + public static final int TextAppearance_shadowColor = 7; + /** +

+ @attr description + Horizontal offset of the text shadow. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#shadowDx}. + @attr name android:shadowDx + */ + public static final int TextAppearance_shadowDx = 8; + /** +

+ @attr description + Vertical offset of the text shadow. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#shadowDy}. + @attr name android:shadowDy + */ + public static final int TextAppearance_shadowDy = 9; + /** +

+ @attr description + Blur radius of the text shadow. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#shadowRadius}. + @attr name android:shadowRadius + */ + public static final int TextAppearance_shadowRadius = 10; + /** +

+ @attr description + Present the text in ALL CAPS. This may use a small-caps form when available. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAllCaps}. + @attr name android:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 11; + /** +

+ @attr description + Text color. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColor}. + @attr name android:textColor + */ + public static final int TextAppearance_textColor = 3; + /** +

+ @attr description + Color of the text selection highlight. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorHighlight}. + @attr name android:textColorHighlight + */ + public static final int TextAppearance_textColorHighlight = 4; + /** +

+ @attr description + Color of the hint text. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorHint}. + @attr name android:textColorHint + */ + public static final int TextAppearance_textColorHint = 5; + /** +

+ @attr description + Color of the links. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorLink}. + @attr name android:textColorLink + */ + public static final int TextAppearance_textColorLink = 6; + /** +

+ @attr description + Size of the text. Recommended dimension type for text is "sp" for scaled-pixels (example: 15sp). + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textSize}. + @attr name android:textSize + */ + public static final int TextAppearance_textSize = 0; + /** +

+ @attr description + Style (bold, italic, bolditalic) for the text. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
bold1
italic2
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#textStyle}. + @attr name android:textStyle + */ + public static final int TextAppearance_textStyle = 2; + /** +

+ @attr description + Typeface (normal, sans, serif, monospace) for the text. + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
normal0
sans1
serif2
monospace3
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#typeface}. + @attr name android:typeface + */ + public static final int TextAppearance_typeface = 1; + /** Attributes that can be used with a TextClock. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TextClock_format12Hour android:format12Hour} Specifies the formatting pattern used to show the time and/or date + in 12-hour mode.
{@link #TextClock_format24Hour android:format24Hour} Specifies the formatting pattern used to show the time and/or date + in 24-hour mode.
{@link #TextClock_timeZone android:timeZone} Specifies the time zone to use.
+ @see #TextClock_format12Hour + @see #TextClock_format24Hour + @see #TextClock_timeZone + */ + public static final int[] TextClock = { + 0x010103ca, 0x010103cb, 0x010103cc + }; + /** +

+ @attr description + Specifies the formatting pattern used to show the time and/or date + in 12-hour mode. Please refer to {@link android.text.format.DateFormat} + for a complete description of accepted formatting patterns. + The default pattern is a locale-appropriate equivalent of "h:mm a". + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#format12Hour}. + @attr name android:format12Hour + */ + public static final int TextClock_format12Hour = 0; + /** +

+ @attr description + Specifies the formatting pattern used to show the time and/or date + in 24-hour mode. Please refer to {@link android.text.format.DateFormat} + for a complete description of accepted formatting patterns. + The default pattern is a locale-appropriate equivalent of "H:mm". + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#format24Hour}. + @attr name android:format24Hour + */ + public static final int TextClock_format24Hour = 1; + /** +

+ @attr description + Specifies the time zone to use. When this attribute is specified, the + TextClock will ignore the time zone of the system. To use the user's + time zone, do not specify this attribute. The default value is the + user's time zone. Please refer to {@link java.util.TimeZone} for more + information about time zone ids. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#timeZone}. + @attr name android:timeZone + */ + public static final int TextClock_timeZone = 2; + /** Attributes that can be used with a TextSwitcher. + */ + public static final int[] TextSwitcher = { + + }; + /** Use tts-engine as the root tag of the XML resource that + describes a text to speech engine implemented as a subclass of + {@link android.speech.tts.TextToSpeechService}. + + The XML resource must be referenced from its + {@link android.speech.tts.TextToSpeech.Engine#SERVICE_META_DATA} meta-data + entry. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #TextToSpeechEngine_settingsActivity android:settingsActivity} Component name of an activity that allows the user to modify + the settings for this service.
+ @see #TextToSpeechEngine_settingsActivity + */ + public static final int[] TextToSpeechEngine = { + 0x01010225 + }; + /** +

+ @attr description + Component name of an activity that allows the user to modify + the settings for this service. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#settingsActivity}. + @attr name android:settingsActivity + */ + public static final int TextToSpeechEngine_settingsActivity = 0; + /** Attributes that can be used with a TextView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextView___removeBeforeMRelease_leftIndents android:__removeBeforeMRelease_leftIndents} Placeholder for a deleted attribute.
{@link #TextView___removeBeforeMRelease_rightIndents android:__removeBeforeMRelease_rightIndents} Placeholder for a deleted attribute.
{@link #TextView_allowUndo android:allowUndo} Whether undo should be allowed for editable text.
{@link #TextView_autoLink android:autoLink} Controls whether links such as urls and email addresses are + automatically found and converted to clickable links.
{@link #TextView_autoText android:autoText} If set, specifies that this TextView has a textual input method + and automatically corrects some common spelling errors.
{@link #TextView_breakStrategy android:breakStrategy} Break strategy (control over paragraph layout).
{@link #TextView_bufferType android:bufferType} Determines the minimum type that getText() will return.
{@link #TextView_capitalize android:capitalize} If set, specifies that this TextView has a textual input method + and should automatically capitalize what the user types.
{@link #TextView_cursorVisible android:cursorVisible} Makes the cursor visible (the default) or invisible.
{@link #TextView_digits android:digits} If set, specifies that this TextView has a numeric input method + and that these specific characters are the ones that it will + accept.
{@link #TextView_drawableBottom android:drawableBottom} The drawable to be drawn below the text.
{@link #TextView_drawableEnd android:drawableEnd} The drawable to be drawn to the end of the text.
{@link #TextView_drawableLeft android:drawableLeft} The drawable to be drawn to the left of the text.
{@link #TextView_drawablePadding android:drawablePadding} The padding between the drawables and the text.
{@link #TextView_drawableRight android:drawableRight} The drawable to be drawn to the right of the text.
{@link #TextView_drawableStart android:drawableStart} The drawable to be drawn to the start of the text.
{@link #TextView_drawableTint android:drawableTint} Tint to apply to the compound (left, top, etc.
{@link #TextView_drawableTintMode android:drawableTintMode} Blending mode used to apply the compound (left, top, etc.
{@link #TextView_drawableTop android:drawableTop} The drawable to be drawn above the text.
{@link #TextView_editable android:editable} If set, specifies that this TextView has an input method.
{@link #TextView_editorExtras android:editorExtras} Reference to an + {@link android.R.styleable#InputExtras <input-extras>} + XML resource containing additional data to + supply to an input method, which is private to the implementation + of the input method.
{@link #TextView_elegantTextHeight android:elegantTextHeight} Elegant text height, especially for less compacted complex script text.
{@link #TextView_ellipsize android:ellipsize} If set, causes words that are longer than the view is wide + to be ellipsized instead of broken in the middle.
{@link #TextView_ems android:ems} Makes the TextView be exactly this many ems wide.
{@link #TextView_enabled android:enabled} Specifies whether the widget is enabled.
{@link #TextView_fontFamily android:fontFamily} Font family (named by string) for the text.
{@link #TextView_fontFeatureSettings android:fontFeatureSettings} Font feature settings.
{@link #TextView_freezesText android:freezesText} If set, the text view will include its current complete text + inside of its frozen icicle in addition to meta-data such as + the current cursor position.
{@link #TextView_gravity android:gravity} Specifies how to align the text by the view's x- and/or y-axis + when the text is smaller than the view.
{@link #TextView_height android:height} Makes the TextView be exactly this many pixels tall.
{@link #TextView_hint android:hint} Hint text to display when the text is empty.
{@link #TextView_hyphenationFrequency android:hyphenationFrequency} Frequency of automatic hyphenation.
{@link #TextView_imeActionId android:imeActionId} Supply a value for + {@link android.view.inputmethod.EditorInfo#actionId EditorInfo.actionId} + used when an input method is connected to the text view.
{@link #TextView_imeActionLabel android:imeActionLabel} Supply a value for + {@link android.view.inputmethod.EditorInfo#actionLabel EditorInfo.actionLabel} + used when an input method is connected to the text view.
{@link #TextView_imeOptions android:imeOptions} Additional features you can enable in an IME associated with an editor + to improve the integration with your application.
{@link #TextView_includeFontPadding android:includeFontPadding} Leave enough room for ascenders and descenders instead of + using the font ascent and descent strictly.
{@link #TextView_inputMethod android:inputMethod} If set, specifies that this TextView should use the specified + input method (specified by fully-qualified class name).
{@link #TextView_inputType android:inputType} The type of data being placed in a text field, used to help an + input method decide how to let the user enter text.
{@link #TextView_letterSpacing android:letterSpacing} Text letter-spacing.
{@link #TextView_lineSpacingExtra android:lineSpacingExtra} Extra spacing between lines of text.
{@link #TextView_lineSpacingMultiplier android:lineSpacingMultiplier} Extra spacing between lines of text, as a multiplier.
{@link #TextView_lines android:lines} Makes the TextView be exactly this many lines tall.
{@link #TextView_linksClickable android:linksClickable} If set to false, keeps the movement method from being set + to the link movement method even if autoLink causes links + to be found.
{@link #TextView_marqueeRepeatLimit android:marqueeRepeatLimit} The number of times to repeat the marquee animation.
{@link #TextView_maxEms android:maxEms} Makes the TextView be at most this many ems wide.
{@link #TextView_maxHeight android:maxHeight} Makes the TextView be at most this many pixels tall.
{@link #TextView_maxLength android:maxLength} Set an input filter to constrain the text length to the + specified number.
{@link #TextView_maxLines android:maxLines} Makes the TextView be at most this many lines tall.
{@link #TextView_maxWidth android:maxWidth} Makes the TextView be at most this many pixels wide.
{@link #TextView_minEms android:minEms} Makes the TextView be at least this many ems wide.
{@link #TextView_minHeight android:minHeight} Makes the TextView be at least this many pixels tall.
{@link #TextView_minLines android:minLines} Makes the TextView be at least this many lines tall.
{@link #TextView_minWidth android:minWidth} Makes the TextView be at least this many pixels wide.
{@link #TextView_numeric android:numeric} If set, specifies that this TextView has a numeric input method.
{@link #TextView_password android:password} Whether the characters of the field are displayed as + password dots instead of themselves.
{@link #TextView_phoneNumber android:phoneNumber} If set, specifies that this TextView has a phone number input + method.
{@link #TextView_privateImeOptions android:privateImeOptions} An addition content type description to supply to the input + method attached to the text view, which is private to the + implementation of the input method.
{@link #TextView_scrollHorizontally android:scrollHorizontally} Whether the text is allowed to be wider than the view (and + therefore can be scrolled horizontally).
{@link #TextView_selectAllOnFocus android:selectAllOnFocus} If the text is selectable, select it all when the view takes + focus.
{@link #TextView_shadowColor android:shadowColor} Place a blurred shadow of text underneath the text, drawn with the + specified color.
{@link #TextView_shadowDx android:shadowDx} Horizontal offset of the text shadow.
{@link #TextView_shadowDy android:shadowDy} Vertical offset of the text shadow.
{@link #TextView_shadowRadius android:shadowRadius} Blur radius of the text shadow.
{@link #TextView_singleLine android:singleLine} Constrains the text to a single horizontally scrolling line + instead of letting it wrap onto multiple lines, and advances + focus instead of inserting a newline when you press the + enter key.
{@link #TextView_text android:text} Text to display.
{@link #TextView_textAllCaps android:textAllCaps} Present the text in ALL CAPS.
{@link #TextView_textAppearance android:textAppearance} Base text color, typeface, size, and style.
{@link #TextView_textColor android:textColor} Text color.
{@link #TextView_textColorHighlight android:textColorHighlight} Color of the text selection highlight.
{@link #TextView_textColorHint android:textColorHint} Color of the hint text.
{@link #TextView_textColorLink android:textColorLink} Text color for links.
{@link #TextView_textCursorDrawable android:textCursorDrawable} Reference to a drawable that will be drawn under the insertion cursor.
{@link #TextView_textEditNoPasteWindowLayout android:textEditNoPasteWindowLayout} Variation of textEditPasteWindowLayout displayed when the clipboard is empty.
{@link #TextView_textEditPasteWindowLayout android:textEditPasteWindowLayout} The layout of the view that is displayed on top of the cursor to paste inside a + TextEdit field.
{@link #TextView_textEditSideNoPasteWindowLayout android:textEditSideNoPasteWindowLayout} Variation of textEditSidePasteWindowLayout displayed when the clipboard is empty.
{@link #TextView_textEditSidePasteWindowLayout android:textEditSidePasteWindowLayout} Used instead of textEditPasteWindowLayout when the window is moved on the side of the + insertion cursor because it would be clipped if it were positioned on top.
{@link #TextView_textEditSuggestionItemLayout android:textEditSuggestionItemLayout} Layout of the TextView item that will populate the suggestion popup window.
{@link #TextView_textIsSelectable android:textIsSelectable} Indicates that the content of a non-editable text can be selected.
{@link #TextView_textScaleX android:textScaleX} Sets the horizontal scaling factor for the text.
{@link #TextView_textSelectHandle android:textSelectHandle} Reference to a drawable that will be used to display a text selection + anchor for positioning the cursor within text.
{@link #TextView_textSelectHandleLeft android:textSelectHandleLeft} Reference to a drawable that will be used to display a text selection + anchor on the left side of a selection region.
{@link #TextView_textSelectHandleRight android:textSelectHandleRight} Reference to a drawable that will be used to display a text selection + anchor on the right side of a selection region.
{@link #TextView_textSize android:textSize} Size of the text.
{@link #TextView_textStyle android:textStyle} Style (bold, italic, bolditalic) for the text.
{@link #TextView_typeface android:typeface} Typeface (normal, sans, serif, monospace) for the text.
{@link #TextView_width android:width} Makes the TextView be exactly this many pixels wide.
+ @see #TextView___removeBeforeMRelease_leftIndents + @see #TextView___removeBeforeMRelease_rightIndents + @see #TextView_allowUndo + @see #TextView_autoLink + @see #TextView_autoText + @see #TextView_breakStrategy + @see #TextView_bufferType + @see #TextView_capitalize + @see #TextView_cursorVisible + @see #TextView_digits + @see #TextView_drawableBottom + @see #TextView_drawableEnd + @see #TextView_drawableLeft + @see #TextView_drawablePadding + @see #TextView_drawableRight + @see #TextView_drawableStart + @see #TextView_drawableTint + @see #TextView_drawableTintMode + @see #TextView_drawableTop + @see #TextView_editable + @see #TextView_editorExtras + @see #TextView_elegantTextHeight + @see #TextView_ellipsize + @see #TextView_ems + @see #TextView_enabled + @see #TextView_fontFamily + @see #TextView_fontFeatureSettings + @see #TextView_freezesText + @see #TextView_gravity + @see #TextView_height + @see #TextView_hint + @see #TextView_hyphenationFrequency + @see #TextView_imeActionId + @see #TextView_imeActionLabel + @see #TextView_imeOptions + @see #TextView_includeFontPadding + @see #TextView_inputMethod + @see #TextView_inputType + @see #TextView_letterSpacing + @see #TextView_lineSpacingExtra + @see #TextView_lineSpacingMultiplier + @see #TextView_lines + @see #TextView_linksClickable + @see #TextView_marqueeRepeatLimit + @see #TextView_maxEms + @see #TextView_maxHeight + @see #TextView_maxLength + @see #TextView_maxLines + @see #TextView_maxWidth + @see #TextView_minEms + @see #TextView_minHeight + @see #TextView_minLines + @see #TextView_minWidth + @see #TextView_numeric + @see #TextView_password + @see #TextView_phoneNumber + @see #TextView_privateImeOptions + @see #TextView_scrollHorizontally + @see #TextView_selectAllOnFocus + @see #TextView_shadowColor + @see #TextView_shadowDx + @see #TextView_shadowDy + @see #TextView_shadowRadius + @see #TextView_singleLine + @see #TextView_text + @see #TextView_textAllCaps + @see #TextView_textAppearance + @see #TextView_textColor + @see #TextView_textColorHighlight + @see #TextView_textColorHint + @see #TextView_textColorLink + @see #TextView_textCursorDrawable + @see #TextView_textEditNoPasteWindowLayout + @see #TextView_textEditPasteWindowLayout + @see #TextView_textEditSideNoPasteWindowLayout + @see #TextView_textEditSidePasteWindowLayout + @see #TextView_textEditSuggestionItemLayout + @see #TextView_textIsSelectable + @see #TextView_textScaleX + @see #TextView_textSelectHandle + @see #TextView_textSelectHandleLeft + @see #TextView_textSelectHandleRight + @see #TextView_textSize + @see #TextView_textStyle + @see #TextView_typeface + @see #TextView_width + */ + public static final int[] TextView = { + 0x0101000e, 0x01010034, 0x01010095, 0x01010096, + 0x01010097, 0x01010098, 0x01010099, 0x0101009a, + 0x0101009b, 0x010100ab, 0x010100af, 0x010100b0, + 0x010100b1, 0x0101011f, 0x01010120, 0x0101013f, + 0x01010140, 0x0101014e, 0x0101014f, 0x01010150, + 0x01010151, 0x01010152, 0x01010153, 0x01010154, + 0x01010155, 0x01010156, 0x01010157, 0x01010158, + 0x01010159, 0x0101015a, 0x0101015b, 0x0101015c, + 0x0101015d, 0x0101015e, 0x0101015f, 0x01010160, + 0x01010161, 0x01010162, 0x01010163, 0x01010164, + 0x01010165, 0x01010166, 0x01010167, 0x01010168, + 0x01010169, 0x0101016a, 0x0101016b, 0x0101016c, + 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, + 0x01010171, 0x01010217, 0x01010218, 0x0101021d, + 0x01010220, 0x01010223, 0x01010224, 0x01010264, + 0x01010265, 0x01010266, 0x010102c5, 0x010102c6, + 0x010102c7, 0x01010314, 0x01010315, 0x01010316, + 0x0101035e, 0x0101035f, 0x01010362, 0x01010374, + 0x0101038c, 0x01010392, 0x01010393, 0x010103ac, + 0x0101045d, 0x010104b6, 0x010104b7, 0x010104d6, + 0x010104d7, 0x010104dd, 0x010104de, 0x010104df, + 0x0116005b, 0x0116005c + }; + /** +

+ @attr description + Placeholder for a deleted attribute. This should be removed before M release. +

This is a private symbol. + @attr name com.android.internal:__removeBeforeMRelease_leftIndents + */ + public static final int TextView___removeBeforeMRelease_leftIndents = 84; + /** +

+ @attr description + Placeholder for a deleted attribute. This should be removed before M release. +

This is a private symbol. + @attr name com.android.internal:__removeBeforeMRelease_rightIndents + */ + public static final int TextView___removeBeforeMRelease_rightIndents = 85; + /** +

+ @attr description + Whether undo should be allowed for editable text. Defaults to true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#allowUndo}. + @attr name android:allowUndo + */ + public static final int TextView_allowUndo = 83; + /** +

+ @attr description + Controls whether links such as urls and email addresses are + automatically found and converted to clickable links. The default + value is "none", disabling this feature. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
none0x00 Match no patterns (default).
web0x01 Match Web URLs.
email0x02 Match email addresses.
phone0x04 Match phone numbers.
map0x08 Match map addresses.
all0x0f Match all patterns (equivalent to web|email|phone|map).
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#autoLink}. + @attr name android:autoLink + */ + public static final int TextView_autoLink = 11; + /** +

+ @attr description + If set, specifies that this TextView has a textual input method + and automatically corrects some common spelling errors. + The default is "false". + {@deprecated Use inputType instead.} + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#autoText}. + @attr name android:autoText + */ + @Deprecated + public static final int TextView_autoText = 45; + /** +

+ @attr description + Break strategy (control over paragraph layout). + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
simple0 Line breaking uses simple strategy.
high_quality1 Line breaking uses high-quality strategy, including hyphenation.
balanced2 Line breaking strategy balances line lengths.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#breakStrategy}. + @attr name android:breakStrategy + */ + public static final int TextView_breakStrategy = 81; + /** +

+ @attr description + Determines the minimum type that getText() will return. + The default is "normal". + Note that EditText and LogTextBox always return Editable, + even if you specify something less powerful here. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0 Can return any CharSequence, possibly a + Spanned one if the source text was Spanned.
spannable1 Can only return Spannable.
editable2 Can only return Spannable and Editable.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#bufferType}. + @attr name android:bufferType + */ + public static final int TextView_bufferType = 17; + /** +

+ @attr description + If set, specifies that this TextView has a textual input method + and should automatically capitalize what the user types. + The default is "none". + {@deprecated Use inputType instead.} + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0 Don't automatically capitalize anything.
sentences1 Capitalize the first word of each sentence.
words2 Capitalize the first letter of every word.
characters3 Capitalize every character.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#capitalize}. + @attr name android:capitalize + */ + @Deprecated + public static final int TextView_capitalize = 44; + /** +

+ @attr description + Makes the cursor visible (the default) or invisible. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#cursorVisible}. + @attr name android:cursorVisible + */ + public static final int TextView_cursorVisible = 21; + /** +

+ @attr description + If set, specifies that this TextView has a numeric input method + and that these specific characters are the ones that it will + accept. + If this is set, numeric is implied to be true. + The default is false. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#digits}. + @attr name android:digits + */ + public static final int TextView_digits = 41; + /** +

+ @attr description + The drawable to be drawn below the text. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawableBottom}. + @attr name android:drawableBottom + */ + public static final int TextView_drawableBottom = 49; + /** +

+ @attr description + The drawable to be drawn to the end of the text. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawableEnd}. + @attr name android:drawableEnd + */ + public static final int TextView_drawableEnd = 74; + /** +

+ @attr description + The drawable to be drawn to the left of the text. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawableLeft}. + @attr name android:drawableLeft + */ + public static final int TextView_drawableLeft = 50; + /** +

+ @attr description + The padding between the drawables and the text. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawablePadding}. + @attr name android:drawablePadding + */ + public static final int TextView_drawablePadding = 52; + /** +

+ @attr description + The drawable to be drawn to the right of the text. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawableRight}. + @attr name android:drawableRight + */ + public static final int TextView_drawableRight = 51; + /** +

+ @attr description + The drawable to be drawn to the start of the text. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawableStart}. + @attr name android:drawableStart + */ + public static final int TextView_drawableStart = 73; + /** +

+ @attr description + Tint to apply to the compound (left, top, etc.) drawables. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawableTint}. + @attr name android:drawableTint + */ + public static final int TextView_drawableTint = 79; + /** +

+ @attr description + Blending mode used to apply the compound (left, top, etc.) drawables tint. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawableTintMode}. + @attr name android:drawableTintMode + */ + public static final int TextView_drawableTintMode = 80; + /** +

+ @attr description + The drawable to be drawn above the text. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawableTop}. + @attr name android:drawableTop + */ + public static final int TextView_drawableTop = 48; + /** +

+ @attr description + If set, specifies that this TextView has an input method. + It will be a textual one unless it has otherwise been specified. + For TextView, this is false by default. For EditText, it is + true by default. + {@deprecated Use inputType instead.} + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#editable}. + @attr name android:editable + */ + @Deprecated + public static final int TextView_editable = 46; + /** +

+ @attr description + Reference to an + {@link android.R.styleable#InputExtras <input-extras>} + XML resource containing additional data to + supply to an input method, which is private to the implementation + of the input method. This simply fills in + the {@link android.view.inputmethod.EditorInfo#extras + EditorInfo.extras} field when the input + method is connected. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#editorExtras}. + @attr name android:editorExtras + */ + public static final int TextView_editorExtras = 58; + /** +

+ @attr description + Elegant text height, especially for less compacted complex script text. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#elegantTextHeight}. + @attr name android:elegantTextHeight + */ + public static final int TextView_elegantTextHeight = 76; + /** +

+ @attr description + If set, causes words that are longer than the view is wide + to be ellipsized instead of broken in the middle. + You will often also want to set scrollHorizontally or singleLine + as well so that the text as a whole is also constrained to + a single line instead of still allowed to be broken onto + multiple lines. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
start1
middle2
end3
marquee4
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#ellipsize}. + @attr name android:ellipsize + */ + public static final int TextView_ellipsize = 9; + /** +

+ @attr description + Makes the TextView be exactly this many ems wide. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#ems}. + @attr name android:ems + */ + public static final int TextView_ems = 27; + /** +

+ @attr description + Specifies whether the widget is enabled. The interpretation of the enabled state varies by subclass. + For example, a non-enabled EditText prevents the user from editing the contained text, and + a non-enabled Button prevents the user from tapping the button. + The appearance of enabled and non-enabled widgets may differ, if the drawables referenced + from evaluating state_enabled differ. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#enabled}. + @attr name android:enabled + */ + public static final int TextView_enabled = 0; + /** +

+ @attr description + Font family (named by string) for the text. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fontFamily}. + @attr name android:fontFamily + */ + public static final int TextView_fontFamily = 75; + /** +

+ @attr description + Font feature settings. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fontFeatureSettings}. + @attr name android:fontFeatureSettings + */ + public static final int TextView_fontFeatureSettings = 78; + /** +

+ @attr description + If set, the text view will include its current complete text + inside of its frozen icicle in addition to meta-data such as + the current cursor position. By default this is disabled; + it can be useful when the contents of a text view is not stored + in a persistent place such as a content provider. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#freezesText}. + @attr name android:freezesText + */ + public static final int TextView_freezesText = 47; + /** +

+ @attr description + Specifies how to align the text by the view's x- and/or y-axis + when the text is smaller than the view. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#gravity}. + @attr name android:gravity + */ + public static final int TextView_gravity = 10; + /** +

+ @attr description + Makes the TextView be exactly this many pixels tall. + You could get the same effect by specifying this number in the + layout parameters. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#height}. + @attr name android:height + */ + public static final int TextView_height = 24; + /** +

+ @attr description + Hint text to display when the text is empty. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#hint}. + @attr name android:hint + */ + public static final int TextView_hint = 19; + /** +

+ @attr description + Frequency of automatic hyphenation. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0 No hyphenation.
normal1 Less frequent hyphenation, useful for informal use cases, such + as chat messages.
full2 Standard amount of hyphenation, useful for running text and for + screens with limited space for text.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#hyphenationFrequency}. + @attr name android:hyphenationFrequency + */ + public static final int TextView_hyphenationFrequency = 82; + /** +

+ @attr description + Supply a value for + {@link android.view.inputmethod.EditorInfo#actionId EditorInfo.actionId} + used when an input method is connected to the text view. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#imeActionId}. + @attr name android:imeActionId + */ + public static final int TextView_imeActionId = 61; + /** +

+ @attr description + Supply a value for + {@link android.view.inputmethod.EditorInfo#actionLabel EditorInfo.actionLabel} + used when an input method is connected to the text view. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#imeActionLabel}. + @attr name android:imeActionLabel + */ + public static final int TextView_imeActionLabel = 60; + /** +

+ @attr description + Additional features you can enable in an IME associated with an editor + to improve the integration with your application. The constants + here correspond to those defined by + {@link android.view.inputmethod.EditorInfo#imeOptions}. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + + + +
ConstantValueDescription
normal0x00000000 There are no special semantics associated with this editor.
actionUnspecified0x00000000 There is no specific action associated with this editor, let the + editor come up with its own if it can. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_NULL}.
actionNone0x00000001 This editor has no action associated with it. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_NONE}.
actionGo0x00000002 The action key performs a "go" + operation to take the user to the target of the text they typed. + Typically used, for example, when entering a URL. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_GO}.
actionSearch0x00000003 The action key performs a "search" + operation, taking the user to the results of searching for the text + the have typed (in whatever context is appropriate). + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEARCH}.
actionSend0x00000004 The action key performs a "send" + operation, delivering the text to its target. This is typically used + when composing a message. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_SEND}.
actionNext0x00000005 The action key performs a "next" + operation, taking the user to the next field that will accept text. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_NEXT}.
actionDone0x00000006 The action key performs a "done" + operation, closing the soft input method. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_DONE}.
actionPrevious0x00000007 The action key performs a "previous" + operation, taking the user to the previous field that will accept text. + Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_ACTION_PREVIOUS}.
flagNoFullscreen0x2000000 Used to request that the IME never go + into fullscreen mode. Applications need to be aware that the flag is not + a guarantee, and not all IMEs will respect it. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}.

flagNavigatePrevious0x4000000 Like flagNavigateNext, but + specifies there is something interesting that a backward navigation + can focus on. If the user selects the IME's facility to backward + navigate, this will show up in the application as an actionPrevious + at {@link android.view.inputmethod.InputConnection#performEditorAction(int) + InputConnection.performEditorAction(int)}. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_FULLSCREEN}.

flagNavigateNext0x8000000 Used to specify that there is something + interesting that a forward navigation can focus on. This is like using + actionNext, except allows the IME to be multiline (with + an enter key) as well as provide forward navigation. Note that some + IMEs may not be able to do this, especially when running on a small + screen where there is little space. In that case it does not need to + present a UI for this option. Like actionNext, if the + user selects the IME's facility to forward navigate, this will show up + in the application at + {@link android.view.inputmethod.InputConnection#performEditorAction(int) + InputConnection.performEditorAction(int)}. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NAVIGATE_NEXT}.

flagNoExtractUi0x10000000 Used to specify that the IME does not need + to show its extracted text UI. For input methods that may be fullscreen, + often when in landscape mode, this allows them to be smaller and let part + of the application be shown behind. Though there will likely be limited + access to the application available from the user, it can make the + experience of a (mostly) fullscreen IME less jarring. Note that when + this flag is specified the IME may not be set up to be able + to display text, so it should only be used in situations where this is + not needed. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_EXTRACT_UI}.

flagNoAccessoryAction0x20000000 Used in conjunction with a custom action, this indicates that the + action should not be available as an accessory button when the + input method is full-screen. + Note that by setting this flag, there can be cases where the action + is simply never available to the user. Setting this generally means + that you think showing text being edited is more important than the + action you have supplied. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ACCESSORY_ACTION}.

flagNoEnterAction0x40000000 Used in conjunction with a custom action, + this indicates that the action should not be available in-line as + a replacement for the "enter" key. Typically this is + because the action has such a significant impact or is not recoverable + enough that accidentally hitting it should be avoided, such as sending + a message. Note that {@link android.widget.TextView} will + automatically set this flag for you on multi-line text views. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_NO_ENTER_ACTION}.

flagForceAscii0x80000000 Used to request that the IME should be capable of inputting ASCII + characters. The intention of this flag is to ensure that the user + can type Roman alphabet characters in a {@link android.widget.TextView} + used for, typically, account ID or password input. It is expected that IMEs + normally are able to input ASCII even without being told so (such IMEs + already respect this flag in a sense), but there could be some cases they + aren't when, for instance, only non-ASCII input languagaes like Arabic, + Greek, Hebrew, Russian are enabled in the IME. Applications need to be + aware that the flag is not a guarantee, and not all IMEs will respect it. + However, it is strongly recommended for IME authors to respect this flag + especially when their IME could end up with a state that has only non-ASCII + input languages enabled. +

Corresponds to + {@link android.view.inputmethod.EditorInfo#IME_FLAG_FORCE_ASCII}.

+

This corresponds to the global attribute + resource symbol {@link android.R.attr#imeOptions}. + @attr name android:imeOptions + */ + public static final int TextView_imeOptions = 59; + /** +

+ @attr description + Leave enough room for ascenders and descenders instead of + using the font ascent and descent strictly. (Normally true). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#includeFontPadding}. + @attr name android:includeFontPadding + */ + public static final int TextView_includeFontPadding = 34; + /** +

+ @attr description + If set, specifies that this TextView should use the specified + input method (specified by fully-qualified class name). + {@deprecated Use inputType instead.} + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#inputMethod}. + @attr name android:inputMethod + */ + @Deprecated + public static final int TextView_inputMethod = 43; + /** +

+ @attr description + The type of data being placed in a text field, used to help an + input method decide how to let the user enter text. The constants + here correspond to those defined by + {@link android.text.InputType}. Generally you can select + a single value, though some can be combined together as + indicated. Setting this attribute to anything besides + none also implies that the text is editable. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ConstantValueDescription
none0x00000000 There is no content type. The text is not editable.
text0x00000001 Just plain old text. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_NORMAL}.
textCapCharacters0x00001001 Can be combined with text and its variations to + request capitalization of all characters. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_CHARACTERS}.
textCapWords0x00002001 Can be combined with text and its variations to + request capitalization of the first character of every word. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_WORDS}.
textCapSentences0x00004001 Can be combined with text and its variations to + request capitalization of the first character of every sentence. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_CAP_SENTENCES}.
textAutoCorrect0x00008001 Can be combined with text and its variations to + request auto-correction of text being input. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_CORRECT}.
textAutoComplete0x00010001 Can be combined with text and its variations to + specify that this field will be doing its own auto-completion and + talking with the input method appropriately. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_AUTO_COMPLETE}.
textMultiLine0x00020001 Can be combined with text and its variations to + allow multiple lines of text in the field. If this flag is not set, + the text field will be constrained to a single line. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_MULTI_LINE}.
textImeMultiLine0x00040001 Can be combined with text and its variations to + indicate that though the regular text view should not be multiple + lines, the IME should provide multiple lines if it can. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_IME_MULTI_LINE}.
textNoSuggestions0x00080001 Can be combined with text and its variations to + indicate that the IME should not show any + dictionary-based word suggestions. Corresponds to + {@link android.text.InputType#TYPE_TEXT_FLAG_NO_SUGGESTIONS}.
textUri0x00000011 Text that will be used as a URI. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_URI}.
textEmailAddress0x00000021 Text that will be used as an e-mail address. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_ADDRESS}.
textEmailSubject0x00000031 Text that is being supplied as the subject of an e-mail. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_EMAIL_SUBJECT}.
textShortMessage0x00000041 Text that is the content of a short message. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_SHORT_MESSAGE}.
textLongMessage0x00000051 Text that is the content of a long message. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_LONG_MESSAGE}.
textPersonName0x00000061 Text that is the name of a person. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_PERSON_NAME}.
textPostalAddress0x00000071 Text that is being supplied as a postal mailing address. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_POSTAL_ADDRESS}.
textPassword0x00000081 Text that is a password. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_PASSWORD}.
textVisiblePassword0x00000091 Text that is a password that should be visible. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_VISIBLE_PASSWORD}.
textWebEditText0x000000a1 Text that is being supplied as text in a web form. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EDIT_TEXT}.
textFilter0x000000b1 Text that is filtering some other data. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_FILTER}.
textPhonetic0x000000c1 Text that is for phonetic pronunciation, such as a phonetic name + field in a contact entry. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_PHONETIC}.
textWebEmailAddress0x000000d1 Text that will be used as an e-mail address on a web form. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS}.
textWebPassword0x000000e1 Text that will be used as a password on a web form. Corresponds to + {@link android.text.InputType#TYPE_CLASS_TEXT} | + {@link android.text.InputType#TYPE_TEXT_VARIATION_WEB_PASSWORD}.
number0x00000002 A numeric only field. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_VARIATION_NORMAL}.
numberSigned0x00001002 Can be combined with number and its other options to + allow a signed number. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_FLAG_SIGNED}.
numberDecimal0x00002002 Can be combined with number and its other options to + allow a decimal (fractional) number. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_FLAG_DECIMAL}.
numberPassword0x00000012 A numeric password field. Corresponds to + {@link android.text.InputType#TYPE_CLASS_NUMBER} | + {@link android.text.InputType#TYPE_NUMBER_VARIATION_PASSWORD}.
phone0x00000003 For entering a phone number. Corresponds to + {@link android.text.InputType#TYPE_CLASS_PHONE}.
datetime0x00000004 For entering a date and time. Corresponds to + {@link android.text.InputType#TYPE_CLASS_DATETIME} | + {@link android.text.InputType#TYPE_DATETIME_VARIATION_NORMAL}.
date0x00000014 For entering a date. Corresponds to + {@link android.text.InputType#TYPE_CLASS_DATETIME} | + {@link android.text.InputType#TYPE_DATETIME_VARIATION_DATE}.
time0x00000024 For entering a time. Corresponds to + {@link android.text.InputType#TYPE_CLASS_DATETIME} | + {@link android.text.InputType#TYPE_DATETIME_VARIATION_TIME}.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#inputType}. + @attr name android:inputType + */ + public static final int TextView_inputType = 56; + /** +

+ @attr description + Text letter-spacing. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#letterSpacing}. + @attr name android:letterSpacing + */ + public static final int TextView_letterSpacing = 77; + /** +

+ @attr description + Extra spacing between lines of text. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#lineSpacingExtra}. + @attr name android:lineSpacingExtra + */ + public static final int TextView_lineSpacingExtra = 53; + /** +

+ @attr description + Extra spacing between lines of text, as a multiplier. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#lineSpacingMultiplier}. + @attr name android:lineSpacingMultiplier + */ + public static final int TextView_lineSpacingMultiplier = 54; + /** +

+ @attr description + Makes the TextView be exactly this many lines tall. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#lines}. + @attr name android:lines + */ + public static final int TextView_lines = 23; + /** +

+ @attr description + If set to false, keeps the movement method from being set + to the link movement method even if autoLink causes links + to be found. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#linksClickable}. + @attr name android:linksClickable + */ + public static final int TextView_linksClickable = 12; + /** +

+ @attr description + The number of times to repeat the marquee animation. Only applied if the + TextView has marquee enabled. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
marquee_forever-1 Indicates that marquee should repeat indefinitely.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#marqueeRepeatLimit}. + @attr name android:marqueeRepeatLimit + */ + public static final int TextView_marqueeRepeatLimit = 55; + /** +

+ @attr description + Makes the TextView be at most this many ems wide. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxEms}. + @attr name android:maxEms + */ + public static final int TextView_maxEms = 26; + /** +

+ @attr description + Makes the TextView be at most this many pixels tall. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxHeight}. + @attr name android:maxHeight + */ + public static final int TextView_maxHeight = 14; + /** +

+ @attr description + Set an input filter to constrain the text length to the + specified number. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxLength}. + @attr name android:maxLength + */ + public static final int TextView_maxLength = 35; + /** +

+ @attr description + Makes the TextView be at most this many lines tall. + + When used on an editable text, the inputType attribute's value must be + combined with the textMultiLine flag for the maxLines attribute to apply. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxLines}. + @attr name android:maxLines + */ + public static final int TextView_maxLines = 22; + /** +

+ @attr description + Makes the TextView be at most this many pixels wide. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#maxWidth}. + @attr name android:maxWidth + */ + public static final int TextView_maxWidth = 13; + /** +

+ @attr description + Makes the TextView be at least this many ems wide. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#minEms}. + @attr name android:minEms + */ + public static final int TextView_minEms = 29; + /** +

+ @attr description + Makes the TextView be at least this many pixels tall. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#minHeight}. + @attr name android:minHeight + */ + public static final int TextView_minHeight = 16; + /** +

+ @attr description + Makes the TextView be at least this many lines tall. + + When used on an editable text, the inputType attribute's value must be + combined with the textMultiLine flag for the minLines attribute to apply. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#minLines}. + @attr name android:minLines + */ + public static final int TextView_minLines = 25; + /** +

+ @attr description + Makes the TextView be at least this many pixels wide. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#minWidth}. + @attr name android:minWidth + */ + public static final int TextView_minWidth = 15; + /** +

+ @attr description + If set, specifies that this TextView has a numeric input method. + The default is false. + {@deprecated Use inputType instead.} + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
integer0x01 Input is numeric.
signed0x03 Input is numeric, with sign allowed.
decimal0x05 Input is numeric, with decimals allowed.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#numeric}. + @attr name android:numeric + */ + @Deprecated + public static final int TextView_numeric = 40; + /** +

+ @attr description + Whether the characters of the field are displayed as + password dots instead of themselves. + {@deprecated Use inputType instead.} + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#password}. + @attr name android:password + */ + @Deprecated + public static final int TextView_password = 31; + /** +

+ @attr description + If set, specifies that this TextView has a phone number input + method. The default is false. + {@deprecated Use inputType instead.} + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#phoneNumber}. + @attr name android:phoneNumber + */ + @Deprecated + public static final int TextView_phoneNumber = 42; + /** +

+ @attr description + An addition content type description to supply to the input + method attached to the text view, which is private to the + implementation of the input method. This simply fills in + the {@link android.view.inputmethod.EditorInfo#privateImeOptions + EditorInfo.privateImeOptions} field when the input + method is connected. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#privateImeOptions}. + @attr name android:privateImeOptions + */ + public static final int TextView_privateImeOptions = 57; + /** +

+ @attr description + Whether the text is allowed to be wider than the view (and + therefore can be scrolled horizontally). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scrollHorizontally}. + @attr name android:scrollHorizontally + */ + public static final int TextView_scrollHorizontally = 30; + /** +

+ @attr description + If the text is selectable, select it all when the view takes + focus. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#selectAllOnFocus}. + @attr name android:selectAllOnFocus + */ + public static final int TextView_selectAllOnFocus = 33; + /** +

+ @attr description + Place a blurred shadow of text underneath the text, drawn with the + specified color. The text shadow produced does not interact with + properties on View that are responsible for real time shadows, + {@link android.R.styleable#View_elevation elevation} and + {@link android.R.styleable#View_translationZ translationZ}. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#shadowColor}. + @attr name android:shadowColor + */ + public static final int TextView_shadowColor = 36; + /** +

+ @attr description + Horizontal offset of the text shadow. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#shadowDx}. + @attr name android:shadowDx + */ + public static final int TextView_shadowDx = 37; + /** +

+ @attr description + Vertical offset of the text shadow. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#shadowDy}. + @attr name android:shadowDy + */ + public static final int TextView_shadowDy = 38; + /** +

+ @attr description + Blur radius of the text shadow. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#shadowRadius}. + @attr name android:shadowRadius + */ + public static final int TextView_shadowRadius = 39; + /** +

+ @attr description + Constrains the text to a single horizontally scrolling line + instead of letting it wrap onto multiple lines, and advances + focus instead of inserting a newline when you press the + enter key. + + The default value is false (multi-line wrapped text mode) for non-editable text, but if + you specify any value for inputType, the default is true (single-line input field mode). + + {@deprecated This attribute is deprecated. Use maxLines instead to change + the layout of a static text, and use the textMultiLine flag in the + inputType attribute instead for editable text views (if both singleLine and inputType + are supplied, the inputType flags will override the value of singleLine). } + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#singleLine}. + @attr name android:singleLine + */ + @Deprecated + public static final int TextView_singleLine = 32; + /** +

+ @attr description + Text to display. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#text}. + @attr name android:text + */ + public static final int TextView_text = 18; + /** +

+ @attr description + Present the text in ALL CAPS. This may use a small-caps form when available. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAllCaps}. + @attr name android:textAllCaps + */ + public static final int TextView_textAllCaps = 72; + /** +

+ @attr description + Base text color, typeface, size, and style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearance}. + @attr name android:textAppearance + */ + public static final int TextView_textAppearance = 1; + /** +

+ @attr description + Text color. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColor}. + @attr name android:textColor + */ + public static final int TextView_textColor = 5; + /** +

+ @attr description + Color of the text selection highlight. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorHighlight}. + @attr name android:textColorHighlight + */ + public static final int TextView_textColorHighlight = 6; + /** +

+ @attr description + Color of the hint text. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorHint}. + @attr name android:textColorHint + */ + public static final int TextView_textColorHint = 7; + /** +

+ @attr description + Text color for links. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorLink}. + @attr name android:textColorLink + */ + public static final int TextView_textColorLink = 8; + /** +

+ @attr description + Reference to a drawable that will be drawn under the insertion cursor. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textCursorDrawable}. + @attr name android:textCursorDrawable + */ + public static final int TextView_textCursorDrawable = 70; + /** +

+ @attr description + Variation of textEditPasteWindowLayout displayed when the clipboard is empty. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textEditNoPasteWindowLayout}. + @attr name android:textEditNoPasteWindowLayout + */ + public static final int TextView_textEditNoPasteWindowLayout = 66; + /** +

+ @attr description + The layout of the view that is displayed on top of the cursor to paste inside a + TextEdit field. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textEditPasteWindowLayout}. + @attr name android:textEditPasteWindowLayout + */ + public static final int TextView_textEditPasteWindowLayout = 65; + /** +

+ @attr description + Variation of textEditSidePasteWindowLayout displayed when the clipboard is empty. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textEditSideNoPasteWindowLayout}. + @attr name android:textEditSideNoPasteWindowLayout + */ + public static final int TextView_textEditSideNoPasteWindowLayout = 69; + /** +

+ @attr description + Used instead of textEditPasteWindowLayout when the window is moved on the side of the + insertion cursor because it would be clipped if it were positioned on top. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textEditSidePasteWindowLayout}. + @attr name android:textEditSidePasteWindowLayout + */ + public static final int TextView_textEditSidePasteWindowLayout = 68; + /** +

+ @attr description + Layout of the TextView item that will populate the suggestion popup window. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textEditSuggestionItemLayout}. + @attr name android:textEditSuggestionItemLayout + */ + public static final int TextView_textEditSuggestionItemLayout = 71; + /** +

+ @attr description + Indicates that the content of a non-editable text can be selected. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textIsSelectable}. + @attr name android:textIsSelectable + */ + public static final int TextView_textIsSelectable = 67; + /** +

+ @attr description + Sets the horizontal scaling factor for the text. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textScaleX}. + @attr name android:textScaleX + */ + public static final int TextView_textScaleX = 20; + /** +

+ @attr description + Reference to a drawable that will be used to display a text selection + anchor for positioning the cursor within text. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textSelectHandle}. + @attr name android:textSelectHandle + */ + public static final int TextView_textSelectHandle = 64; + /** +

+ @attr description + Reference to a drawable that will be used to display a text selection + anchor on the left side of a selection region. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textSelectHandleLeft}. + @attr name android:textSelectHandleLeft + */ + public static final int TextView_textSelectHandleLeft = 62; + /** +

+ @attr description + Reference to a drawable that will be used to display a text selection + anchor on the right side of a selection region. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textSelectHandleRight}. + @attr name android:textSelectHandleRight + */ + public static final int TextView_textSelectHandleRight = 63; + /** +

+ @attr description + Size of the text. Recommended dimension type for text is "sp" for scaled-pixels (example: 15sp). + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textSize}. + @attr name android:textSize + */ + public static final int TextView_textSize = 2; + /** +

+ @attr description + Style (bold, italic, bolditalic) for the text. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
bold1
italic2
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#textStyle}. + @attr name android:textStyle + */ + public static final int TextView_textStyle = 4; + /** +

+ @attr description + Typeface (normal, sans, serif, monospace) for the text. + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
normal0
sans1
serif2
monospace3
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#typeface}. + @attr name android:typeface + */ + public static final int TextView_typeface = 3; + /** +

+ @attr description + Makes the TextView be exactly this many pixels wide. + You could get the same effect by specifying this number in the + layout parameters. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#width}. + @attr name android:width + */ + public static final int TextView_width = 28; + /** Attributes that can be used with a TextViewAppearance. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #TextViewAppearance_textAppearance android:textAppearance} Base text color, typeface, size, and style.
+ @see #TextViewAppearance_textAppearance + */ + public static final int[] TextViewAppearance = { + 0x01010034 + }; + /** +

+ @attr description + Base text color, typeface, size, and style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearance}. + @attr name android:textAppearance + */ + public static final int TextViewAppearance_textAppearance = 0; + /** Attributes that can be used with a TextViewMultiLineBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #TextViewMultiLineBackgroundState_state_multiline android:state_multiline} State identifier indicating a TextView has a multi-line layout.
+ @see #TextViewMultiLineBackgroundState_state_multiline + */ + public static final int[] TextViewMultiLineBackgroundState = { + 0x0101034d + }; + /** +

+ @attr description + State identifier indicating a TextView has a multi-line layout. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_multiline}. + @attr name android:state_multiline + */ + public static final int TextViewMultiLineBackgroundState_state_multiline = 0; + /** These are the standard attributes that make up a complete theme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Theme_absListViewStyle android:absListViewStyle} Default AbsListView style.
{@link #Theme_accessibilityFocusedDrawable android:accessibilityFocusedDrawable} The drawable for accessibility focused views.
{@link #Theme_actionBarDivider android:actionBarDivider} Custom divider drawable to use for elements in the action bar.
{@link #Theme_actionBarItemBackground android:actionBarItemBackground} Custom item state list drawable background for action bar items.
{@link #Theme_actionBarPopupTheme android:actionBarPopupTheme} Reference to a theme that should be used to inflate popups + shown by widgets in the action bar.
{@link #Theme_actionBarSize android:actionBarSize} Size of the Action Bar, including the contextual + bar used to present Action Modes.
{@link #Theme_actionBarSplitStyle android:actionBarSplitStyle} Reference to a style for the split Action Bar.
{@link #Theme_actionBarStyle android:actionBarStyle} Reference to a style for the Action Bar
{@link #Theme_actionBarTabBarStyle android:actionBarTabBarStyle}
{@link #Theme_actionBarTabStyle android:actionBarTabStyle} Default style for tabs within an action bar
{@link #Theme_actionBarTabTextStyle android:actionBarTabTextStyle}
{@link #Theme_actionBarTheme android:actionBarTheme} Reference to a theme that should be used to inflate the + action bar.
{@link #Theme_actionBarWidgetTheme android:actionBarWidgetTheme} Reference to a theme that should be used to inflate widgets + and layouts destined for the action bar.
{@link #Theme_actionButtonStyle android:actionButtonStyle} Default action button style.
{@link #Theme_actionDropDownStyle android:actionDropDownStyle} Default ActionBar dropdown style.
{@link #Theme_actionMenuTextAppearance android:actionMenuTextAppearance} TextAppearance style that will be applied to text that + appears within action menu items.
{@link #Theme_actionMenuTextColor android:actionMenuTextColor} Color for text that appears within action menu items.
{@link #Theme_actionModeBackground android:actionModeBackground} Background drawable to use for action mode UI
{@link #Theme_actionModeCloseButtonStyle android:actionModeCloseButtonStyle}
{@link #Theme_actionModeCloseDrawable android:actionModeCloseDrawable} Drawable to use for the close action mode button
{@link #Theme_actionModeCopyDrawable android:actionModeCopyDrawable} Drawable to use for the Copy action button in Contextual Action Bar
{@link #Theme_actionModeCutDrawable android:actionModeCutDrawable} Drawable to use for the Cut action button in Contextual Action Bar
{@link #Theme_actionModeFindDrawable android:actionModeFindDrawable} Drawable to use for the Find action button in WebView selection action modes
{@link #Theme_actionModePasteDrawable android:actionModePasteDrawable} Drawable to use for the Paste action button in Contextual Action Bar
{@link #Theme_actionModePopupWindowStyle android:actionModePopupWindowStyle} PopupWindow style to use for action modes when showing as a window overlay.
{@link #Theme_actionModeSelectAllDrawable android:actionModeSelectAllDrawable} Drawable to use for the Select all action button in Contextual Action Bar
{@link #Theme_actionModeShareDrawable android:actionModeShareDrawable} Drawable to use for the Share action button in WebView selection action modes
{@link #Theme_actionModeSplitBackground android:actionModeSplitBackground} Background drawable to use for action mode UI in the lower split bar
{@link #Theme_actionModeStyle android:actionModeStyle}
{@link #Theme_actionModeWebSearchDrawable android:actionModeWebSearchDrawable} Drawable to use for the Web Search action button in WebView selection action modes
{@link #Theme_actionOverflowButtonStyle android:actionOverflowButtonStyle}
{@link #Theme_actionOverflowMenuStyle android:actionOverflowMenuStyle}
{@link #Theme_activatedBackgroundIndicator android:activatedBackgroundIndicator} Drawable used as a background for activated items.
{@link #Theme_activityChooserViewStyle android:activityChooserViewStyle} Default ActivityChooserView style.
{@link #Theme_alertDialogButtonGroupStyle android:alertDialogButtonGroupStyle}
{@link #Theme_alertDialogCenterButtons android:alertDialogCenterButtons}
{@link #Theme_alertDialogIcon android:alertDialogIcon} Icon drawable to use for alerts
{@link #Theme_alertDialogStyle android:alertDialogStyle}
{@link #Theme_alertDialogTheme android:alertDialogTheme} Theme to use for alert dialogs spawned from this theme.
{@link #Theme_ambientShadowAlpha android:ambientShadowAlpha} Alpha value of the ambient shadow projected by elevated views, between 0 and 1.
{@link #Theme_autoCompleteTextViewStyle android:autoCompleteTextViewStyle} Default AutoCompleteTextView style.
{@link #Theme_backgroundDimAmount android:backgroundDimAmount} Default background dim amount when a menu, dialog, or something similar pops up.
{@link #Theme_backgroundDimEnabled android:backgroundDimEnabled} Control whether dimming behind the window is enabled.
{@link #Theme_borderlessButtonStyle android:borderlessButtonStyle} Style for buttons without an explicit border, often used in groups.
{@link #Theme_buttonBarButtonStyle android:buttonBarButtonStyle} Style for buttons within button bars
{@link #Theme_buttonBarNegativeButtonStyle android:buttonBarNegativeButtonStyle} Style for the "negative" buttons within button bars
{@link #Theme_buttonBarNeutralButtonStyle android:buttonBarNeutralButtonStyle} Style for the "neutral" buttons within button bars
{@link #Theme_buttonBarPositiveButtonStyle android:buttonBarPositiveButtonStyle} Style for the "positive" buttons within button bars
{@link #Theme_buttonBarStyle android:buttonBarStyle} Style for button bars
{@link #Theme_buttonStyle android:buttonStyle} Normal Button style.
{@link #Theme_buttonStyleInset android:buttonStyleInset} Button style to inset into an EditText.
{@link #Theme_buttonStyleSmall android:buttonStyleSmall} Small Button style.
{@link #Theme_buttonStyleToggle android:buttonStyleToggle} ToggleButton style.
{@link #Theme_calendarViewStyle android:calendarViewStyle} The CalendarView style.
{@link #Theme_candidatesTextStyleSpans android:candidatesTextStyleSpans} A styled string, specifying the style to be used for showing + inline candidate text when composing with an input method.
{@link #Theme_checkBoxPreferenceStyle android:checkBoxPreferenceStyle} Default style for CheckBoxPreference.
{@link #Theme_checkboxStyle android:checkboxStyle} Default Checkbox style.
{@link #Theme_checkedTextViewStyle android:checkedTextViewStyle} Default CheckedTextView style.
{@link #Theme_colorAccent android:colorAccent} Bright complement to the primary branding color.
{@link #Theme_colorActivatedHighlight android:colorActivatedHighlight} Default highlight color for items that are + activated.
{@link #Theme_colorBackground android:colorBackground} Default color of background imagery, ex.
{@link #Theme_colorBackgroundCacheHint android:colorBackgroundCacheHint} This is a hint for a solid color that can be used for caching + rendered views.
{@link #Theme_colorBackgroundFloating android:colorBackgroundFloating} Default color of background imagery for floating components, ex.
{@link #Theme_colorButtonNormal android:colorButtonNormal} The color applied to framework buttons in their normal state.
{@link #Theme_colorControlActivated android:colorControlActivated} The color applied to framework controls in their activated (ex.
{@link #Theme_colorControlHighlight android:colorControlHighlight} The color applied to framework control highlights (ex.
{@link #Theme_colorControlNormal android:colorControlNormal} The color applied to framework controls in their normal state.
{@link #Theme_colorEdgeEffect android:colorEdgeEffect} The color applied to the edge effect on scrolling containers.
{@link #Theme_colorFocusedHighlight android:colorFocusedHighlight} Default highlight color for items that are + focused.
{@link #Theme_colorForeground android:colorForeground} Default color of foreground imagery.
{@link #Theme_colorForegroundInverse android:colorForegroundInverse} Default color of foreground imagery on an inverted background.
{@link #Theme_colorLongPressedHighlight android:colorLongPressedHighlight} Default highlight color for items that are long-pressed.
{@link #Theme_colorMultiSelectHighlight android:colorMultiSelectHighlight} Default highlight color for items in multiple selection + mode.
{@link #Theme_colorPressedHighlight android:colorPressedHighlight} Default highlight color for items that are pressed.
{@link #Theme_colorPrimary android:colorPrimary} The primary branding color for the app.
{@link #Theme_colorPrimaryDark android:colorPrimaryDark} Dark variant of the primary branding color.
{@link #Theme_colorSwitchThumbNormal android:colorSwitchThumbNormal} The color applied to framework switch thumbs in their normal state.
{@link #Theme_datePickerDialogTheme android:datePickerDialogTheme} The DatePicker dialog theme.
{@link #Theme_datePickerStyle android:datePickerStyle} The DatePicker style.
{@link #Theme_detailsElementBackground android:detailsElementBackground} Background that can be used behind parts of a UI that provide + details on data the user is selecting.
{@link #Theme_dialogCustomTitleDecorLayout android:dialogCustomTitleDecorLayout} Window decor layout to use in dialog mode with custom titles.
{@link #Theme_dialogPreferenceStyle android:dialogPreferenceStyle} Default style for DialogPreference.
{@link #Theme_dialogPreferredPadding android:dialogPreferredPadding} Preferred padding for dialog content.
{@link #Theme_dialogTheme android:dialogTheme} Theme to use for dialogs spawned from this theme.
{@link #Theme_dialogTitleDecorLayout android:dialogTitleDecorLayout} Window decor layout to use in dialog mode with title only.
{@link #Theme_dialogTitleIconsDecorLayout android:dialogTitleIconsDecorLayout} Window decor layout to use in dialog mode with icons.
{@link #Theme_disabledAlpha android:disabledAlpha} Default disabled alpha for widgets that set enabled/disabled alpha programmatically.
{@link #Theme_dividerHorizontal android:dividerHorizontal} Drawable to use for generic horizontal dividers.
{@link #Theme_dividerVertical android:dividerVertical} Drawable to use for generic vertical dividers.
{@link #Theme_dropDownHintAppearance android:dropDownHintAppearance} Default style for drop down hints.
{@link #Theme_dropDownItemStyle android:dropDownItemStyle} Default style for drop down items.
{@link #Theme_dropDownListViewStyle android:dropDownListViewStyle} Default ListView style for drop downs.
{@link #Theme_dropDownSpinnerStyle android:dropDownSpinnerStyle} Default dropdown Spinner style.
{@link #Theme_dropdownListPreferredItemHeight android:dropdownListPreferredItemHeight} The preferred item height for dropdown lists.
{@link #Theme_editTextBackground android:editTextBackground} EditText background drawable.
{@link #Theme_editTextColor android:editTextColor} EditText text foreground color.
{@link #Theme_editTextPreferenceStyle android:editTextPreferenceStyle} Default style for EditTextPreference.
{@link #Theme_editTextStyle android:editTextStyle} Default EditText style.
{@link #Theme_errorMessageAboveBackground android:errorMessageAboveBackground} Background used instead of errorMessageBackground when the popup has to be above.
{@link #Theme_errorMessageBackground android:errorMessageBackground} Popup text displayed in TextView when setError is used.
{@link #Theme_expandableListPreferredChildIndicatorLeft android:expandableListPreferredChildIndicatorLeft} The preferred left bound for an expandable list child's indicator.
{@link #Theme_expandableListPreferredChildIndicatorRight android:expandableListPreferredChildIndicatorRight} The preferred right bound for an expandable list child's indicator.
{@link #Theme_expandableListPreferredChildPaddingLeft android:expandableListPreferredChildPaddingLeft} The preferred left padding for an expandable list item that is a child.
{@link #Theme_expandableListPreferredItemIndicatorLeft android:expandableListPreferredItemIndicatorLeft} The preferred left bound for an expandable list item's indicator.
{@link #Theme_expandableListPreferredItemIndicatorRight android:expandableListPreferredItemIndicatorRight} The preferred right bound for an expandable list item's indicator.
{@link #Theme_expandableListPreferredItemPaddingLeft android:expandableListPreferredItemPaddingLeft} The preferred left padding for an expandable list item (for child-specific layouts, + use expandableListPreferredChildPaddingLeft).
{@link #Theme_expandableListViewStyle android:expandableListViewStyle} Default ExpandableListView style.
{@link #Theme_expandableListViewWhiteStyle android:expandableListViewWhiteStyle} ExpandableListView with white background.
{@link #Theme_fastScrollOverlayPosition android:fastScrollOverlayPosition} Position of the fast scroll index overlay window.
{@link #Theme_fastScrollPreviewBackgroundLeft android:fastScrollPreviewBackgroundLeft} Drawable to use as the fast scroll index preview window background + when shown on the left.
{@link #Theme_fastScrollPreviewBackgroundRight android:fastScrollPreviewBackgroundRight} Drawable to use as the fast scroll index preview window background + when shown on the right.
{@link #Theme_fastScrollTextColor android:fastScrollTextColor} Text color for the fast scroll index overlay.
{@link #Theme_fastScrollThumbDrawable android:fastScrollThumbDrawable} Drawable to use as the fast scroll thumb.
{@link #Theme_fastScrollTrackDrawable android:fastScrollTrackDrawable} Drawable to use as the track for the fast scroll thumb.
{@link #Theme_findOnPageNextDrawable android:findOnPageNextDrawable} Drawable for WebView find-on-page dialogue's "next" button.
{@link #Theme_findOnPagePreviousDrawable android:findOnPagePreviousDrawable} Drawable for WebView find-on-page dialogue's "previous" button.
{@link #Theme_fingerprintAuthDrawable android:fingerprintAuthDrawable} Icon that should be used to indicate that an app is waiting for a fingerprint scan.
{@link #Theme_floatingToolbarCloseDrawable android:floatingToolbarCloseDrawable}
{@link #Theme_floatingToolbarForegroundColor android:floatingToolbarForegroundColor}
{@link #Theme_floatingToolbarItemBackgroundBorderlessDrawable android:floatingToolbarItemBackgroundBorderlessDrawable}
{@link #Theme_floatingToolbarItemBackgroundDrawable android:floatingToolbarItemBackgroundDrawable}
{@link #Theme_floatingToolbarOpenDrawable android:floatingToolbarOpenDrawable}
{@link #Theme_floatingToolbarPopupBackgroundDrawable android:floatingToolbarPopupBackgroundDrawable}
{@link #Theme_fragmentBreadCrumbsStyle android:fragmentBreadCrumbsStyle} Default style for the FragmentBreadCrumbs widget.
{@link #Theme_galleryItemBackground android:galleryItemBackground} The preferred background for gallery items.
{@link #Theme_galleryStyle android:galleryStyle} Default Gallery style.
{@link #Theme_gestureOverlayViewStyle android:gestureOverlayViewStyle} Default GestureOverlayView style.
{@link #Theme_gridViewStyle android:gridViewStyle} Default GridView style.
{@link #Theme_homeAsUpIndicator android:homeAsUpIndicator} Specifies a drawable to use for the 'home as up' indicator.
{@link #Theme_horizontalScrollViewStyle android:horizontalScrollViewStyle} Default HorizontalScrollView style.
{@link #Theme_imageButtonStyle android:imageButtonStyle} The style resource to use for an ImageButton.
{@link #Theme_imageWellStyle android:imageWellStyle} The style resource to use for an ImageButton that is an image well.
{@link #Theme_isLightTheme android:isLightTheme} Specifies that a theme has a light background with dark text on top.
{@link #Theme_lightRadius android:lightRadius} @hide The default radius of the light used to project view shadows.
{@link #Theme_lightY android:lightY} @hide The default Y position of the light used to project view shadows.
{@link #Theme_lightZ android:lightZ} @hide The default Z position of the light used to project view shadows.
{@link #Theme_listChoiceBackgroundIndicator android:listChoiceBackgroundIndicator} Drawable used as a background for selected list items.
{@link #Theme_listChoiceIndicatorMultiple android:listChoiceIndicatorMultiple} Drawable to use for multiple choice indicators.
{@link #Theme_listChoiceIndicatorSingle android:listChoiceIndicatorSingle} Drawable to use for single choice indicators.
{@link #Theme_listDivider android:listDivider} The drawable for the list divider.
{@link #Theme_listDividerAlertDialog android:listDividerAlertDialog} The list divider used in alert dialogs.
{@link #Theme_listPopupWindowStyle android:listPopupWindowStyle} Default ListPopupWindow style.
{@link #Theme_listPreferredItemHeight android:listPreferredItemHeight} The preferred list item height.
{@link #Theme_listPreferredItemHeightLarge android:listPreferredItemHeightLarge} A larger, more robust list item height.
{@link #Theme_listPreferredItemHeightSmall android:listPreferredItemHeightSmall} A smaller, sleeker list item height.
{@link #Theme_listPreferredItemPaddingEnd android:listPreferredItemPaddingEnd} The preferred padding along the end edge of list items.
{@link #Theme_listPreferredItemPaddingLeft android:listPreferredItemPaddingLeft} The preferred padding along the left edge of list items.
{@link #Theme_listPreferredItemPaddingRight android:listPreferredItemPaddingRight} The preferred padding along the right edge of list items.
{@link #Theme_listPreferredItemPaddingStart android:listPreferredItemPaddingStart} The preferred padding along the start edge of list items.
{@link #Theme_listSeparatorTextViewStyle android:listSeparatorTextViewStyle} TextView style for list separators.
{@link #Theme_listViewStyle android:listViewStyle} Default ListView style.
{@link #Theme_listViewWhiteStyle android:listViewWhiteStyle} ListView with white background.
{@link #Theme_mapViewStyle android:mapViewStyle} Default MapView style.
{@link #Theme_mediaRouteButtonStyle android:mediaRouteButtonStyle} Default style for the MediaRouteButton widget.
{@link #Theme_numberPickerStyle android:numberPickerStyle} NumberPicker style.
{@link #Theme_panelBackground android:panelBackground} The background of a panel when it is inset from the left and right edges of the screen.
{@link #Theme_panelColorBackground android:panelColorBackground} Color that matches (as closely as possible) the panel background.
{@link #Theme_panelColorForeground android:panelColorForeground} Default color of foreground panel imagery.
{@link #Theme_panelFullBackground android:panelFullBackground} The background of a panel when it extends to the left and right edges of the screen.
{@link #Theme_panelMenuIsCompact android:panelMenuIsCompact}
{@link #Theme_panelMenuListTheme android:panelMenuListTheme}
{@link #Theme_panelMenuListWidth android:panelMenuListWidth}
{@link #Theme_panelTextAppearance android:panelTextAppearance} Default appearance of panel text.
{@link #Theme_pointerStyle android:pointerStyle} Reference to the Pointer style
{@link #Theme_popupMenuStyle android:popupMenuStyle} Default PopupMenu style.
{@link #Theme_popupWindowStyle android:popupWindowStyle} Default PopupWindow style.
{@link #Theme_preferenceActivityStyle android:preferenceActivityStyle} Default style for the PreferenceActivity.
{@link #Theme_preferenceCategoryStyle android:preferenceCategoryStyle} Default style for PreferenceCategory.
{@link #Theme_preferenceFragmentListStyle android:preferenceFragmentListStyle} Preference fragment list style
{@link #Theme_preferenceFragmentPaddingSide android:preferenceFragmentPaddingSide} Preference fragment padding side
{@link #Theme_preferenceFragmentStyle android:preferenceFragmentStyle} Default style for Headers pane in PreferenceActivity.
{@link #Theme_preferenceFrameLayoutStyle android:preferenceFrameLayoutStyle} Preference frame layout styles.
{@link #Theme_preferenceHeaderPanelStyle android:preferenceHeaderPanelStyle} Preference headers panel style
{@link #Theme_preferenceInformationStyle android:preferenceInformationStyle} Default style for informational Preference.
{@link #Theme_preferenceLayoutChild android:preferenceLayoutChild} The preference layout that has the child/tabbed effect.
{@link #Theme_preferenceListStyle android:preferenceListStyle} Preference list style
{@link #Theme_preferencePanelStyle android:preferencePanelStyle} Preference panel style
{@link #Theme_preferenceScreenStyle android:preferenceScreenStyle} Default style for PreferenceScreen.
{@link #Theme_preferenceStyle android:preferenceStyle} Default style for Preference.
{@link #Theme_presentationTheme android:presentationTheme} Theme to use for presentations spawned from this theme.
{@link #Theme_progressBarStyle android:progressBarStyle} Default ProgressBar style.
{@link #Theme_progressBarStyleHorizontal android:progressBarStyleHorizontal} Horizontal ProgressBar style.
{@link #Theme_progressBarStyleInverse android:progressBarStyleInverse} Inverse ProgressBar style.
{@link #Theme_progressBarStyleLarge android:progressBarStyleLarge} Large ProgressBar style.
{@link #Theme_progressBarStyleLargeInverse android:progressBarStyleLargeInverse} Large inverse ProgressBar style.
{@link #Theme_progressBarStyleSmall android:progressBarStyleSmall} Small ProgressBar style.
{@link #Theme_progressBarStyleSmallInverse android:progressBarStyleSmallInverse} Small inverse ProgressBar style.
{@link #Theme_progressBarStyleSmallTitle android:progressBarStyleSmallTitle} Small ProgressBar in title style.
{@link #Theme_quickContactBadgeOverlay android:quickContactBadgeOverlay} Drawable used as an overlay on top of quickcontact photos.
{@link #Theme_quickContactBadgeStyleSmallWindowLarge android:quickContactBadgeStyleSmallWindowLarge} Default quickcontact badge style with large quickcontact window.
{@link #Theme_quickContactBadgeStyleSmallWindowMedium android:quickContactBadgeStyleSmallWindowMedium} Default quickcontact badge style with medium quickcontact window.
{@link #Theme_quickContactBadgeStyleSmallWindowSmall android:quickContactBadgeStyleSmallWindowSmall} Default quickcontact badge style with small quickcontact window.
{@link #Theme_quickContactBadgeStyleWindowLarge android:quickContactBadgeStyleWindowLarge} Default quickcontact badge style with large quickcontact window.
{@link #Theme_quickContactBadgeStyleWindowMedium android:quickContactBadgeStyleWindowMedium} Default quickcontact badge style with medium quickcontact window.
{@link #Theme_quickContactBadgeStyleWindowSmall android:quickContactBadgeStyleWindowSmall} Default quickcontact badge style with small quickcontact window.
{@link #Theme_radioButtonStyle android:radioButtonStyle} Default RadioButton style.
{@link #Theme_ratingBarStyle android:ratingBarStyle} Default RatingBar style.
{@link #Theme_ratingBarStyleIndicator android:ratingBarStyleIndicator} Indicator RatingBar style.
{@link #Theme_ratingBarStyleSmall android:ratingBarStyleSmall} Small indicator RatingBar style.
{@link #Theme_ringtonePreferenceStyle android:ringtonePreferenceStyle} Default style for RingtonePreference.
{@link #Theme_scrollViewStyle android:scrollViewStyle} Default ScrollView style.
{@link #Theme_searchDialogTheme android:searchDialogTheme} Theme to use for Search Dialogs
{@link #Theme_searchResultListItemHeight android:searchResultListItemHeight} The list item height for search results.
{@link #Theme_searchViewStyle android:searchViewStyle} Style for the search query widget.
{@link #Theme_searchWidgetCorpusItemBackground android:searchWidgetCorpusItemBackground} Search widget more corpus result item background.
{@link #Theme_seekBarDialogPreferenceStyle android:seekBarDialogPreferenceStyle} @hide Default style for SeekBarDialogPreference.
{@link #Theme_seekBarPreferenceStyle android:seekBarPreferenceStyle} Default style for seekbar preferences.
{@link #Theme_seekBarStyle android:seekBarStyle} Default SeekBar style.
{@link #Theme_segmentedButtonStyle android:segmentedButtonStyle} Style for segmented buttons - a container that houses several buttons + with the appearance of a singel button broken into segments.
{@link #Theme_selectableItemBackground android:selectableItemBackground} Background drawable for bordered standalone items that need focus/pressed states.
{@link #Theme_selectableItemBackgroundBorderless android:selectableItemBackgroundBorderless} Background drawable for borderless standalone items that need focus/pressed states.
{@link #Theme_spinnerDropDownItemStyle android:spinnerDropDownItemStyle} Default style for spinner drop down items.
{@link #Theme_spinnerItemStyle android:spinnerItemStyle} Default spinner item style.
{@link #Theme_spinnerStyle android:spinnerStyle} Default Spinner style.
{@link #Theme_spotShadowAlpha android:spotShadowAlpha} Alpha value of the spot shadow projected by elevated views, between 0 and 1.
{@link #Theme_stackViewStyle android:stackViewStyle} Default StackView style.
{@link #Theme_starStyle android:starStyle} Default Star style.
{@link #Theme_switchPreferenceStyle android:switchPreferenceStyle} Default style for switch preferences.
{@link #Theme_switchStyle android:switchStyle} Default style for the Switch widget.
{@link #Theme_tabWidgetStyle android:tabWidgetStyle} Default TabWidget style.
{@link #Theme_textAppearance android:textAppearance} Default appearance of text: color, typeface, size, and style.
{@link #Theme_textAppearanceAutoCorrectionSuggestion android:textAppearanceAutoCorrectionSuggestion} The underline color and thickness for auto correction suggestion
{@link #Theme_textAppearanceButton android:textAppearanceButton} Text color, typeface, size, and style for the text inside of a button.
{@link #Theme_textAppearanceEasyCorrectSuggestion android:textAppearanceEasyCorrectSuggestion} The underline color and thickness for easy correct suggestion
{@link #Theme_textAppearanceInverse android:textAppearanceInverse} Default appearance of text against an inverted background: + color, typeface, size, and style.
{@link #Theme_textAppearanceLarge android:textAppearanceLarge} Text color, typeface, size, and style for "large" text.
{@link #Theme_textAppearanceLargeInverse android:textAppearanceLargeInverse} Text color, typeface, size, and style for "large" inverse text.
{@link #Theme_textAppearanceLargePopupMenu android:textAppearanceLargePopupMenu} Text color, typeface, size, and style for the text inside of a popup menu.
{@link #Theme_textAppearanceListItem android:textAppearanceListItem} The preferred TextAppearance for the primary text of list items.
{@link #Theme_textAppearanceListItemSecondary android:textAppearanceListItemSecondary} The preferred TextAppearance for the secondary text of list items.
{@link #Theme_textAppearanceListItemSmall android:textAppearanceListItemSmall} The preferred TextAppearance for the primary text of small list items.
{@link #Theme_textAppearanceMedium android:textAppearanceMedium} Text color, typeface, size, and style for "medium" text.
{@link #Theme_textAppearanceMediumInverse android:textAppearanceMediumInverse} Text color, typeface, size, and style for "medium" inverse text.
{@link #Theme_textAppearanceMisspelledSuggestion android:textAppearanceMisspelledSuggestion} The underline color and thickness for misspelled suggestion
{@link #Theme_textAppearanceSearchResultSubtitle android:textAppearanceSearchResultSubtitle} Text color, typeface, size, and style for system search result subtitle.
{@link #Theme_textAppearanceSearchResultTitle android:textAppearanceSearchResultTitle} Text color, typeface, size, and style for system search result title.
{@link #Theme_textAppearanceSmall android:textAppearanceSmall} Text color, typeface, size, and style for "small" text.
{@link #Theme_textAppearanceSmallInverse android:textAppearanceSmallInverse} Text color, typeface, size, and style for "small" inverse text.
{@link #Theme_textAppearanceSmallPopupMenu android:textAppearanceSmallPopupMenu} Text color, typeface, size, and style for small text inside of a popup menu.
{@link #Theme_textCheckMark android:textCheckMark} Drawable to use for check marks.
{@link #Theme_textCheckMarkInverse android:textCheckMarkInverse}
{@link #Theme_textColorAlertDialogListItem android:textColorAlertDialogListItem} Color of list item text in alert dialogs.
{@link #Theme_textColorHighlightInverse android:textColorHighlightInverse} Color of highlighted text, when used in a light theme.
{@link #Theme_textColorHintInverse android:textColorHintInverse} Inverse hint text color.
{@link #Theme_textColorLinkInverse android:textColorLinkInverse} Color of link text (URLs), when used in a light theme.
{@link #Theme_textColorPrimary android:textColorPrimary} The most prominent text color.
{@link #Theme_textColorPrimaryActivated android:textColorPrimaryActivated} Bright text color for use over activated backgrounds.
{@link #Theme_textColorPrimaryDisableOnly android:textColorPrimaryDisableOnly} Bright text color.
{@link #Theme_textColorPrimaryInverse android:textColorPrimaryInverse} Primary inverse text color, useful for inverted backgrounds.
{@link #Theme_textColorPrimaryInverseDisableOnly android:textColorPrimaryInverseDisableOnly} Bright inverse text color.
{@link #Theme_textColorPrimaryInverseNoDisable android:textColorPrimaryInverseNoDisable} Bright inverse text color.
{@link #Theme_textColorPrimaryNoDisable android:textColorPrimaryNoDisable} Bright text color.
{@link #Theme_textColorSearchUrl android:textColorSearchUrl} Text color for urls in search suggestions, used by things like global search and the browser.
{@link #Theme_textColorSecondary android:textColorSecondary} Secondary text color.
{@link #Theme_textColorSecondaryActivated android:textColorSecondaryActivated} Dim text color for use over activated backgrounds.
{@link #Theme_textColorSecondaryInverse android:textColorSecondaryInverse} Secondary inverse text color, useful for inverted backgrounds.
{@link #Theme_textColorSecondaryInverseNoDisable android:textColorSecondaryInverseNoDisable} Dim inverse text color.
{@link #Theme_textColorSecondaryNoDisable android:textColorSecondaryNoDisable} Dim text color.
{@link #Theme_textColorTertiary android:textColorTertiary} Tertiary text color.
{@link #Theme_textColorTertiaryInverse android:textColorTertiaryInverse} Tertiary inverse text color, useful for inverted backgrounds.
{@link #Theme_textEditNoPasteWindowLayout android:textEditNoPasteWindowLayout} Variation of textEditPasteWindowLayout displayed when the clipboard is empty.
{@link #Theme_textEditPasteWindowLayout android:textEditPasteWindowLayout} The layout of the view that is displayed on top of the cursor to paste inside a + TextEdit field.
{@link #Theme_textEditSideNoPasteWindowLayout android:textEditSideNoPasteWindowLayout} Variation of textEditSidePasteWindowLayout displayed when the clipboard is empty.
{@link #Theme_textEditSidePasteWindowLayout android:textEditSidePasteWindowLayout} Used instead of textEditPasteWindowLayout when the window is moved on the side of the + insertion cursor because it would be clipped if it were positioned on top.
{@link #Theme_textEditSuggestionItemLayout android:textEditSuggestionItemLayout} Layout of the TextView item that will populate the suggestion popup window.
{@link #Theme_textSelectHandle android:textSelectHandle} Reference to a drawable that will be used to display a text selection + anchor for positioning the cursor within text.
{@link #Theme_textSelectHandleLeft android:textSelectHandleLeft} Reference to a drawable that will be used to display a text selection + anchor on the left side of a selection region.
{@link #Theme_textSelectHandleRight android:textSelectHandleRight} Reference to a drawable that will be used to display a text selection + anchor on the right side of a selection region.
{@link #Theme_textSelectHandleWindowStyle android:textSelectHandleWindowStyle} Reference to a style that will be used for the window containing a text + selection anchor.
{@link #Theme_textSuggestionsWindowStyle android:textSuggestionsWindowStyle} Reference to a style that will be used for the window containing a list of possible + text suggestions in an EditText.
{@link #Theme_textUnderlineColor android:textUnderlineColor} The underline color
{@link #Theme_textUnderlineThickness android:textUnderlineThickness} The underline thickness
{@link #Theme_textViewStyle android:textViewStyle} Default TextView style.
{@link #Theme_timePickerDialogTheme android:timePickerDialogTheme} The TimePicker dialog theme.
{@link #Theme_timePickerStyle android:timePickerStyle} The TimePicker style.
{@link #Theme_toastFrameBackground android:toastFrameBackground} Background to use for toasts
{@link #Theme_toolbarStyle android:toolbarStyle} Default Toolbar style.
{@link #Theme_webTextViewStyle android:webTextViewStyle} Default WebTextView style.
{@link #Theme_webViewStyle android:webViewStyle} Default WebView style.
{@link #Theme_windowActionBar android:windowActionBar} Flag indicating whether this window should have an Action Bar + in place of the usual title bar.
{@link #Theme_windowActionBarFullscreenDecorLayout android:windowActionBarFullscreenDecorLayout} Internal layout used internally for window decor
{@link #Theme_windowActionBarOverlay android:windowActionBarOverlay} Flag indicating whether this window's Action Bar should overlay + application content.
{@link #Theme_windowActionModeOverlay android:windowActionModeOverlay} Flag indicating whether action modes should overlay window content + when there is not reserved space for their UI (such as an Action Bar).
{@link #Theme_windowActivityTransitions android:windowActivityTransitions} Flag indicating whether this window allows Activity Transitions.
{@link #Theme_windowAllowEnterTransitionOverlap android:windowAllowEnterTransitionOverlap} Flag indicating whether this Window's transition should overlap with + the exiting transition of the calling Activity.
{@link #Theme_windowAllowReturnTransitionOverlap android:windowAllowReturnTransitionOverlap} Flag indicating whether this Window's transition should overlap with + the exiting transition of the called Activity when the called Activity + finishes.
{@link #Theme_windowAnimationStyle android:windowAnimationStyle} Reference to a style resource holding + the set of window animations to use, which can be + any of the attributes defined by + {@link android.R.styleable#WindowAnimation}.
{@link #Theme_windowBackground android:windowBackground} Drawable to use as the overall window background.
{@link #Theme_windowBackgroundFallback android:windowBackgroundFallback} Drawable to draw selectively within the inset areas when the windowBackground + has been set to null.
{@link #Theme_windowCloseOnTouchOutside android:windowCloseOnTouchOutside} Control whether a container should automatically close itself if + the user touches outside of it.
{@link #Theme_windowContentOverlay android:windowContentOverlay} This Drawable is overlaid over the foreground of the Window's content area, usually + to place a shadow below the title.
{@link #Theme_windowContentTransitionManager android:windowContentTransitionManager} Reference to a TransitionManager XML resource defining the desired + transitions between different window content.
{@link #Theme_windowContentTransitions android:windowContentTransitions} Flag indicating whether this window requests that content changes be performed + as scene changes with transitions.
{@link #Theme_windowDisablePreview android:windowDisablePreview} Flag allowing you to disable the preview animation for a window.
{@link #Theme_windowEnableSplitTouch android:windowEnableSplitTouch} Flag indicating that this window should allow touches to be split + across other windows that also support split touch.
{@link #Theme_windowEnterTransition android:windowEnterTransition} Reference to a Transition XML resource defining the desired Transition + used to move Views into the initial Window's content Scene.
{@link #Theme_windowExitTransition android:windowExitTransition} Reference to a Transition XML resource defining the desired Transition + used to move Views out of the Window's content Scene when launching a new Activity.
{@link #Theme_windowFrame android:windowFrame} Drawable to use as a frame around the window.
{@link #Theme_windowFullscreen android:windowFullscreen} Flag indicating whether this window should fill the entire screen.
{@link #Theme_windowIsFloating android:windowIsFloating} Flag indicating whether this is a floating window.
{@link #Theme_windowIsTranslucent android:windowIsTranslucent} Flag indicating whether this is a translucent window.
{@link #Theme_windowNoDisplay android:windowNoDisplay} Flag indicating that this window should not be displayed at all.
{@link #Theme_windowNoTitle android:windowNoTitle} Flag indicating whether there should be no title on this window.
{@link #Theme_windowOverscan android:windowOverscan} Flag indicating whether this window should extend into overscan region.
{@link #Theme_windowReenterTransition android:windowReenterTransition} Reference to a Transition XML resource defining the desired Transition + used to move Views in to the scene when returning from a previously-started Activity.
{@link #Theme_windowReturnTransition android:windowReturnTransition} Reference to a Transition XML resource defining the desired Transition + used to move Views out of the scene when the Window is + preparing to close.
{@link #Theme_windowSharedElementEnterTransition android:windowSharedElementEnterTransition} Reference to a Transition XML resource defining the desired Transition + used to move shared elements transferred into the Window's initial content Scene.
{@link #Theme_windowSharedElementExitTransition android:windowSharedElementExitTransition} Reference to a Transition XML resource defining the desired Transition + used when starting a new Activity to move shared elements prior to transferring + to the called Activity.
{@link #Theme_windowSharedElementReenterTransition android:windowSharedElementReenterTransition} Reference to a Transition XML resource defining the desired Transition + used for shared elements transferred back to a calling Activity.
{@link #Theme_windowSharedElementReturnTransition android:windowSharedElementReturnTransition} Reference to a Transition XML resource defining the desired Transition + used to move shared elements transferred back to a calling Activity.
{@link #Theme_windowSharedElementsUseOverlay android:windowSharedElementsUseOverlay} Indicates whether or not shared elements should use an overlay + during transitions.
{@link #Theme_windowShowWallpaper android:windowShowWallpaper} Flag indicating that this window's background should be the + user's current wallpaper.
{@link #Theme_windowSoftInputMode android:windowSoftInputMode} Defines the default soft input state that this window would + like when it is displayed.
{@link #Theme_windowSwipeToDismiss android:windowSwipeToDismiss} Flag to indicate that a window can be swiped away to be dismissed.
{@link #Theme_windowTitleBackgroundStyle android:windowTitleBackgroundStyle} The style resource to use for a window's title area.
{@link #Theme_windowTitleSize android:windowTitleSize} The style resource to use for a window's title bar height.
{@link #Theme_windowTitleStyle android:windowTitleStyle} The style resource to use for a window's title text.
{@link #Theme_windowTransitionBackgroundFadeDuration android:windowTransitionBackgroundFadeDuration} The duration, in milliseconds, of the window background fade duration + when transitioning into or away from an Activity when called with an + Activity Transition.
{@link #Theme_windowTranslucentNavigation android:windowTranslucentNavigation} Flag indicating whether this window requests a translucent navigation bar.
{@link #Theme_windowTranslucentStatus android:windowTranslucentStatus} Flag indicating whether this window requests a translucent status bar.
{@link #Theme_yesNoPreferenceStyle android:yesNoPreferenceStyle} Default style for YesNoPreference.
+ @see #Theme_absListViewStyle + @see #Theme_accessibilityFocusedDrawable + @see #Theme_actionBarDivider + @see #Theme_actionBarItemBackground + @see #Theme_actionBarPopupTheme + @see #Theme_actionBarSize + @see #Theme_actionBarSplitStyle + @see #Theme_actionBarStyle + @see #Theme_actionBarTabBarStyle + @see #Theme_actionBarTabStyle + @see #Theme_actionBarTabTextStyle + @see #Theme_actionBarTheme + @see #Theme_actionBarWidgetTheme + @see #Theme_actionButtonStyle + @see #Theme_actionDropDownStyle + @see #Theme_actionMenuTextAppearance + @see #Theme_actionMenuTextColor + @see #Theme_actionModeBackground + @see #Theme_actionModeCloseButtonStyle + @see #Theme_actionModeCloseDrawable + @see #Theme_actionModeCopyDrawable + @see #Theme_actionModeCutDrawable + @see #Theme_actionModeFindDrawable + @see #Theme_actionModePasteDrawable + @see #Theme_actionModePopupWindowStyle + @see #Theme_actionModeSelectAllDrawable + @see #Theme_actionModeShareDrawable + @see #Theme_actionModeSplitBackground + @see #Theme_actionModeStyle + @see #Theme_actionModeWebSearchDrawable + @see #Theme_actionOverflowButtonStyle + @see #Theme_actionOverflowMenuStyle + @see #Theme_activatedBackgroundIndicator + @see #Theme_activityChooserViewStyle + @see #Theme_alertDialogButtonGroupStyle + @see #Theme_alertDialogCenterButtons + @see #Theme_alertDialogIcon + @see #Theme_alertDialogStyle + @see #Theme_alertDialogTheme + @see #Theme_ambientShadowAlpha + @see #Theme_autoCompleteTextViewStyle + @see #Theme_backgroundDimAmount + @see #Theme_backgroundDimEnabled + @see #Theme_borderlessButtonStyle + @see #Theme_buttonBarButtonStyle + @see #Theme_buttonBarNegativeButtonStyle + @see #Theme_buttonBarNeutralButtonStyle + @see #Theme_buttonBarPositiveButtonStyle + @see #Theme_buttonBarStyle + @see #Theme_buttonStyle + @see #Theme_buttonStyleInset + @see #Theme_buttonStyleSmall + @see #Theme_buttonStyleToggle + @see #Theme_calendarViewStyle + @see #Theme_candidatesTextStyleSpans + @see #Theme_checkBoxPreferenceStyle + @see #Theme_checkboxStyle + @see #Theme_checkedTextViewStyle + @see #Theme_colorAccent + @see #Theme_colorActivatedHighlight + @see #Theme_colorBackground + @see #Theme_colorBackgroundCacheHint + @see #Theme_colorBackgroundFloating + @see #Theme_colorButtonNormal + @see #Theme_colorControlActivated + @see #Theme_colorControlHighlight + @see #Theme_colorControlNormal + @see #Theme_colorEdgeEffect + @see #Theme_colorFocusedHighlight + @see #Theme_colorForeground + @see #Theme_colorForegroundInverse + @see #Theme_colorLongPressedHighlight + @see #Theme_colorMultiSelectHighlight + @see #Theme_colorPressedHighlight + @see #Theme_colorPrimary + @see #Theme_colorPrimaryDark + @see #Theme_colorSwitchThumbNormal + @see #Theme_datePickerDialogTheme + @see #Theme_datePickerStyle + @see #Theme_detailsElementBackground + @see #Theme_dialogCustomTitleDecorLayout + @see #Theme_dialogPreferenceStyle + @see #Theme_dialogPreferredPadding + @see #Theme_dialogTheme + @see #Theme_dialogTitleDecorLayout + @see #Theme_dialogTitleIconsDecorLayout + @see #Theme_disabledAlpha + @see #Theme_dividerHorizontal + @see #Theme_dividerVertical + @see #Theme_dropDownHintAppearance + @see #Theme_dropDownItemStyle + @see #Theme_dropDownListViewStyle + @see #Theme_dropDownSpinnerStyle + @see #Theme_dropdownListPreferredItemHeight + @see #Theme_editTextBackground + @see #Theme_editTextColor + @see #Theme_editTextPreferenceStyle + @see #Theme_editTextStyle + @see #Theme_errorMessageAboveBackground + @see #Theme_errorMessageBackground + @see #Theme_expandableListPreferredChildIndicatorLeft + @see #Theme_expandableListPreferredChildIndicatorRight + @see #Theme_expandableListPreferredChildPaddingLeft + @see #Theme_expandableListPreferredItemIndicatorLeft + @see #Theme_expandableListPreferredItemIndicatorRight + @see #Theme_expandableListPreferredItemPaddingLeft + @see #Theme_expandableListViewStyle + @see #Theme_expandableListViewWhiteStyle + @see #Theme_fastScrollOverlayPosition + @see #Theme_fastScrollPreviewBackgroundLeft + @see #Theme_fastScrollPreviewBackgroundRight + @see #Theme_fastScrollTextColor + @see #Theme_fastScrollThumbDrawable + @see #Theme_fastScrollTrackDrawable + @see #Theme_findOnPageNextDrawable + @see #Theme_findOnPagePreviousDrawable + @see #Theme_fingerprintAuthDrawable + @see #Theme_floatingToolbarCloseDrawable + @see #Theme_floatingToolbarForegroundColor + @see #Theme_floatingToolbarItemBackgroundBorderlessDrawable + @see #Theme_floatingToolbarItemBackgroundDrawable + @see #Theme_floatingToolbarOpenDrawable + @see #Theme_floatingToolbarPopupBackgroundDrawable + @see #Theme_fragmentBreadCrumbsStyle + @see #Theme_galleryItemBackground + @see #Theme_galleryStyle + @see #Theme_gestureOverlayViewStyle + @see #Theme_gridViewStyle + @see #Theme_homeAsUpIndicator + @see #Theme_horizontalScrollViewStyle + @see #Theme_imageButtonStyle + @see #Theme_imageWellStyle + @see #Theme_isLightTheme + @see #Theme_lightRadius + @see #Theme_lightY + @see #Theme_lightZ + @see #Theme_listChoiceBackgroundIndicator + @see #Theme_listChoiceIndicatorMultiple + @see #Theme_listChoiceIndicatorSingle + @see #Theme_listDivider + @see #Theme_listDividerAlertDialog + @see #Theme_listPopupWindowStyle + @see #Theme_listPreferredItemHeight + @see #Theme_listPreferredItemHeightLarge + @see #Theme_listPreferredItemHeightSmall + @see #Theme_listPreferredItemPaddingEnd + @see #Theme_listPreferredItemPaddingLeft + @see #Theme_listPreferredItemPaddingRight + @see #Theme_listPreferredItemPaddingStart + @see #Theme_listSeparatorTextViewStyle + @see #Theme_listViewStyle + @see #Theme_listViewWhiteStyle + @see #Theme_mapViewStyle + @see #Theme_mediaRouteButtonStyle + @see #Theme_numberPickerStyle + @see #Theme_panelBackground + @see #Theme_panelColorBackground + @see #Theme_panelColorForeground + @see #Theme_panelFullBackground + @see #Theme_panelMenuIsCompact + @see #Theme_panelMenuListTheme + @see #Theme_panelMenuListWidth + @see #Theme_panelTextAppearance + @see #Theme_pointerStyle + @see #Theme_popupMenuStyle + @see #Theme_popupWindowStyle + @see #Theme_preferenceActivityStyle + @see #Theme_preferenceCategoryStyle + @see #Theme_preferenceFragmentListStyle + @see #Theme_preferenceFragmentPaddingSide + @see #Theme_preferenceFragmentStyle + @see #Theme_preferenceFrameLayoutStyle + @see #Theme_preferenceHeaderPanelStyle + @see #Theme_preferenceInformationStyle + @see #Theme_preferenceLayoutChild + @see #Theme_preferenceListStyle + @see #Theme_preferencePanelStyle + @see #Theme_preferenceScreenStyle + @see #Theme_preferenceStyle + @see #Theme_presentationTheme + @see #Theme_progressBarStyle + @see #Theme_progressBarStyleHorizontal + @see #Theme_progressBarStyleInverse + @see #Theme_progressBarStyleLarge + @see #Theme_progressBarStyleLargeInverse + @see #Theme_progressBarStyleSmall + @see #Theme_progressBarStyleSmallInverse + @see #Theme_progressBarStyleSmallTitle + @see #Theme_quickContactBadgeOverlay + @see #Theme_quickContactBadgeStyleSmallWindowLarge + @see #Theme_quickContactBadgeStyleSmallWindowMedium + @see #Theme_quickContactBadgeStyleSmallWindowSmall + @see #Theme_quickContactBadgeStyleWindowLarge + @see #Theme_quickContactBadgeStyleWindowMedium + @see #Theme_quickContactBadgeStyleWindowSmall + @see #Theme_radioButtonStyle + @see #Theme_ratingBarStyle + @see #Theme_ratingBarStyleIndicator + @see #Theme_ratingBarStyleSmall + @see #Theme_ringtonePreferenceStyle + @see #Theme_scrollViewStyle + @see #Theme_searchDialogTheme + @see #Theme_searchResultListItemHeight + @see #Theme_searchViewStyle + @see #Theme_searchWidgetCorpusItemBackground + @see #Theme_seekBarDialogPreferenceStyle + @see #Theme_seekBarPreferenceStyle + @see #Theme_seekBarStyle + @see #Theme_segmentedButtonStyle + @see #Theme_selectableItemBackground + @see #Theme_selectableItemBackgroundBorderless + @see #Theme_spinnerDropDownItemStyle + @see #Theme_spinnerItemStyle + @see #Theme_spinnerStyle + @see #Theme_spotShadowAlpha + @see #Theme_stackViewStyle + @see #Theme_starStyle + @see #Theme_switchPreferenceStyle + @see #Theme_switchStyle + @see #Theme_tabWidgetStyle + @see #Theme_textAppearance + @see #Theme_textAppearanceAutoCorrectionSuggestion + @see #Theme_textAppearanceButton + @see #Theme_textAppearanceEasyCorrectSuggestion + @see #Theme_textAppearanceInverse + @see #Theme_textAppearanceLarge + @see #Theme_textAppearanceLargeInverse + @see #Theme_textAppearanceLargePopupMenu + @see #Theme_textAppearanceListItem + @see #Theme_textAppearanceListItemSecondary + @see #Theme_textAppearanceListItemSmall + @see #Theme_textAppearanceMedium + @see #Theme_textAppearanceMediumInverse + @see #Theme_textAppearanceMisspelledSuggestion + @see #Theme_textAppearanceSearchResultSubtitle + @see #Theme_textAppearanceSearchResultTitle + @see #Theme_textAppearanceSmall + @see #Theme_textAppearanceSmallInverse + @see #Theme_textAppearanceSmallPopupMenu + @see #Theme_textCheckMark + @see #Theme_textCheckMarkInverse + @see #Theme_textColorAlertDialogListItem + @see #Theme_textColorHighlightInverse + @see #Theme_textColorHintInverse + @see #Theme_textColorLinkInverse + @see #Theme_textColorPrimary + @see #Theme_textColorPrimaryActivated + @see #Theme_textColorPrimaryDisableOnly + @see #Theme_textColorPrimaryInverse + @see #Theme_textColorPrimaryInverseDisableOnly + @see #Theme_textColorPrimaryInverseNoDisable + @see #Theme_textColorPrimaryNoDisable + @see #Theme_textColorSearchUrl + @see #Theme_textColorSecondary + @see #Theme_textColorSecondaryActivated + @see #Theme_textColorSecondaryInverse + @see #Theme_textColorSecondaryInverseNoDisable + @see #Theme_textColorSecondaryNoDisable + @see #Theme_textColorTertiary + @see #Theme_textColorTertiaryInverse + @see #Theme_textEditNoPasteWindowLayout + @see #Theme_textEditPasteWindowLayout + @see #Theme_textEditSideNoPasteWindowLayout + @see #Theme_textEditSidePasteWindowLayout + @see #Theme_textEditSuggestionItemLayout + @see #Theme_textSelectHandle + @see #Theme_textSelectHandleLeft + @see #Theme_textSelectHandleRight + @see #Theme_textSelectHandleWindowStyle + @see #Theme_textSuggestionsWindowStyle + @see #Theme_textUnderlineColor + @see #Theme_textUnderlineThickness + @see #Theme_textViewStyle + @see #Theme_timePickerDialogTheme + @see #Theme_timePickerStyle + @see #Theme_toastFrameBackground + @see #Theme_toolbarStyle + @see #Theme_webTextViewStyle + @see #Theme_webViewStyle + @see #Theme_windowActionBar + @see #Theme_windowActionBarFullscreenDecorLayout + @see #Theme_windowActionBarOverlay + @see #Theme_windowActionModeOverlay + @see #Theme_windowActivityTransitions + @see #Theme_windowAllowEnterTransitionOverlap + @see #Theme_windowAllowReturnTransitionOverlap + @see #Theme_windowAnimationStyle + @see #Theme_windowBackground + @see #Theme_windowBackgroundFallback + @see #Theme_windowCloseOnTouchOutside + @see #Theme_windowContentOverlay + @see #Theme_windowContentTransitionManager + @see #Theme_windowContentTransitions + @see #Theme_windowDisablePreview + @see #Theme_windowEnableSplitTouch + @see #Theme_windowEnterTransition + @see #Theme_windowExitTransition + @see #Theme_windowFrame + @see #Theme_windowFullscreen + @see #Theme_windowIsFloating + @see #Theme_windowIsTranslucent + @see #Theme_windowNoDisplay + @see #Theme_windowNoTitle + @see #Theme_windowOverscan + @see #Theme_windowReenterTransition + @see #Theme_windowReturnTransition + @see #Theme_windowSharedElementEnterTransition + @see #Theme_windowSharedElementExitTransition + @see #Theme_windowSharedElementReenterTransition + @see #Theme_windowSharedElementReturnTransition + @see #Theme_windowSharedElementsUseOverlay + @see #Theme_windowShowWallpaper + @see #Theme_windowSoftInputMode + @see #Theme_windowSwipeToDismiss + @see #Theme_windowTitleBackgroundStyle + @see #Theme_windowTitleSize + @see #Theme_windowTitleStyle + @see #Theme_windowTransitionBackgroundFadeDuration + @see #Theme_windowTranslucentNavigation + @see #Theme_windowTranslucentStatus + @see #Theme_yesNoPreferenceStyle + */ + public static final int[] Theme = { + 0x01010030, 0x01010031, 0x01010032, 0x01010033, + 0x01010034, 0x01010035, 0x01010036, 0x01010037, + 0x01010038, 0x01010039, 0x0101003a, 0x0101003b, + 0x0101003c, 0x0101003d, 0x0101003e, 0x0101003f, + 0x01010040, 0x01010041, 0x01010042, 0x01010043, + 0x01010044, 0x01010045, 0x01010046, 0x01010047, + 0x01010048, 0x01010049, 0x0101004a, 0x0101004b, + 0x0101004c, 0x0101004d, 0x0101004e, 0x0101004f, + 0x01010050, 0x01010051, 0x01010052, 0x01010053, + 0x01010054, 0x01010055, 0x01010056, 0x01010057, + 0x01010058, 0x01010059, 0x0101005a, 0x0101005b, + 0x0101005c, 0x0101005d, 0x0101005e, 0x0101005f, + 0x01010060, 0x01010061, 0x01010062, 0x0101006a, + 0x0101006b, 0x0101006c, 0x0101006d, 0x0101006e, + 0x0101006f, 0x01010070, 0x01010071, 0x01010072, + 0x01010073, 0x01010074, 0x01010075, 0x01010076, + 0x01010077, 0x01010078, 0x01010079, 0x0101007a, + 0x0101007b, 0x0101007c, 0x0101007d, 0x0101007e, + 0x01010080, 0x01010081, 0x01010082, 0x01010083, + 0x01010084, 0x01010085, 0x01010086, 0x01010087, + 0x01010088, 0x01010089, 0x0101008a, 0x0101008b, + 0x0101008c, 0x0101008d, 0x0101008e, 0x0101008f, + 0x01010090, 0x01010091, 0x01010092, 0x01010093, + 0x01010094, 0x010100ae, 0x01010206, 0x01010207, + 0x01010208, 0x0101020d, 0x0101020f, 0x01010210, + 0x01010212, 0x01010213, 0x01010214, 0x01010219, + 0x0101021a, 0x0101021e, 0x0101021f, 0x01010222, + 0x0101022b, 0x01010230, 0x01010287, 0x01010288, + 0x01010289, 0x0101028b, 0x01010292, 0x010102a0, + 0x010102a1, 0x010102ab, 0x010102ae, 0x010102af, + 0x010102b0, 0x010102b1, 0x010102b2, 0x010102b3, + 0x010102b6, 0x010102b9, 0x010102c5, 0x010102c6, + 0x010102c7, 0x010102c8, 0x010102cd, 0x010102ce, + 0x010102d6, 0x010102d7, 0x010102d8, 0x010102db, + 0x010102dc, 0x010102dd, 0x010102e4, 0x010102eb, + 0x010102f0, 0x010102f3, 0x010102f4, 0x010102f5, + 0x010102f6, 0x010102f7, 0x010102fd, 0x010102ff, + 0x01010300, 0x01010301, 0x01010302, 0x01010305, + 0x01010306, 0x01010308, 0x01010309, 0x0101030a, + 0x0101030b, 0x0101030e, 0x01010311, 0x01010312, + 0x01010313, 0x01010314, 0x01010315, 0x01010317, + 0x0101032b, 0x0101032c, 0x0101032e, 0x0101032f, + 0x01010330, 0x01010336, 0x01010337, 0x01010338, + 0x01010339, 0x0101033a, 0x0101034e, 0x0101034f, + 0x01010350, 0x01010351, 0x01010352, 0x01010353, + 0x01010355, 0x01010359, 0x0101035b, 0x0101035c, + 0x0101035d, 0x0101035e, 0x0101035f, 0x01010360, + 0x01010361, 0x0101036d, 0x01010373, 0x01010374, + 0x0101037e, 0x01010386, 0x01010387, 0x01010388, + 0x0101038d, 0x0101038e, 0x0101038f, 0x01010390, + 0x01010391, 0x01010394, 0x01010397, 0x0101039b, + 0x0101039c, 0x0101039d, 0x0101039e, 0x0101039f, + 0x010103a3, 0x010103a4, 0x010103ad, 0x010103bd, + 0x010103be, 0x010103c0, 0x010103c8, 0x010103cf, + 0x010103ef, 0x010103f0, 0x010103f3, 0x010103f8, + 0x010103f9, 0x01010429, 0x0101042a, 0x0101042b, + 0x0101042c, 0x01010431, 0x01010432, 0x01010433, + 0x01010434, 0x01010435, 0x01010437, 0x01010438, + 0x01010439, 0x0101043a, 0x0101043b, 0x0101043c, + 0x0101043e, 0x0101043f, 0x01010444, 0x0101045c, + 0x01010461, 0x01010479, 0x0101047a, 0x0101047b, + 0x01010480, 0x01010489, 0x0101048a, 0x0101048b, + 0x0101048d, 0x0101049d, 0x0101049e, 0x010104aa, + 0x010104ac, 0x010104ae, 0x010104af, 0x010104b0, + 0x010104b1, 0x010104bb, 0x010104be, 0x010104bf, + 0x010104cd, 0x010104ce, 0x010104d3, 0x010104e2, + 0x010104e8, 0x01160000, 0x01160001, 0x01160002, + 0x01160003, 0x01160004, 0x01160005, 0x01160006, + 0x01160007, 0x01160008, 0x01160009, 0x0116000a, + 0x0116000b, 0x0116000c, 0x0116000d, 0x0116000e, + 0x0116000f, 0x01160010, 0x01160011, 0x01160012, + 0x01160013, 0x01160014, 0x01160015, 0x01160016, + 0x01160017, 0x01160018, 0x01160019, 0x0116001a, + 0x0116001b, 0x0116001c, 0x0116001d, 0x0116001e, + 0x0116001f, 0x01160020, 0x01160021, 0x01160022, + 0x01160023, 0x01160024, 0x01160025, 0x01160026, + 0x01160027, 0x01160028, 0x01160029, 0x0116002a, + 0x0116002b, 0x0116002c, 0x0116002d, 0x0116002e, + 0x0116002f, 0x01160030, 0x01160031, 0x01160032, + 0x01160033, 0x01160034, 0x01160035, 0x01160036, + 0x01160037 + }; + /** +

+ @attr description + Default AbsListView style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#absListViewStyle}. + @attr name android:absListViewStyle + */ + public static final int Theme_absListViewStyle = 51; + /** +

+ @attr description + The drawable for accessibility focused views. +

This is a private symbol. + @attr name com.android.internal:accessibilityFocusedDrawable + */ + public static final int Theme_accessibilityFocusedDrawable = 314; + /** +

+ @attr description + Custom divider drawable to use for elements in the action bar. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionBarDivider}. + @attr name android:actionBarDivider + */ + public static final int Theme_actionBarDivider = 203; + /** +

+ @attr description + Custom item state list drawable background for action bar items. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionBarItemBackground}. + @attr name android:actionBarItemBackground + */ + public static final int Theme_actionBarItemBackground = 204; + /** +

+ @attr description + Reference to a theme that should be used to inflate popups + shown by widgets in the action bar. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionBarPopupTheme}. + @attr name android:actionBarPopupTheme + */ + public static final int Theme_actionBarPopupTheme = 248; + /** +

+ @attr description + Size of the Action Bar, including the contextual + bar used to present Action Modes. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionBarSize}. + @attr name android:actionBarSize + */ + public static final int Theme_actionBarSize = 139; + /** +

+ @attr description + Reference to a style for the split Action Bar. This style + controls the split component that holds the menu/action + buttons. actionBarStyle is still used for the primary + bar. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionBarSplitStyle}. + @attr name android:actionBarSplitStyle + */ + public static final int Theme_actionBarSplitStyle = 195; + /** +

+ @attr description + Reference to a style for the Action Bar + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionBarStyle}. + @attr name android:actionBarStyle + */ + public static final int Theme_actionBarStyle = 131; + /** +

This symbol is the offset where the {@link android.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:actionBarTabBarStyle + */ + public static final int Theme_actionBarTabBarStyle = 142; + /** +

+ @attr description + Default style for tabs within an action bar + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionBarTabStyle}. + @attr name android:actionBarTabStyle + */ + public static final int Theme_actionBarTabStyle = 141; + /** +

This symbol is the offset where the {@link android.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:actionBarTabTextStyle + */ + public static final int Theme_actionBarTabTextStyle = 143; + /** +

+ @attr description + Reference to a theme that should be used to inflate the + action bar. This will be inherited by any widget inflated + into the action bar. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionBarTheme}. + @attr name android:actionBarTheme + */ + public static final int Theme_actionBarTheme = 225; + /** +

+ @attr description + Reference to a theme that should be used to inflate widgets + and layouts destined for the action bar. Most of the time + this will be a reference to the current theme, but when + the action bar has a significantly different contrast + profile than the rest of the activity the difference + can become important. If this is set to @null the current + theme will be used. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionBarWidgetTheme}. + @attr name android:actionBarWidgetTheme + */ + public static final int Theme_actionBarWidgetTheme = 202; + /** +

+ @attr description + Default action button style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionButtonStyle}. + @attr name android:actionButtonStyle + */ + public static final int Theme_actionButtonStyle = 134; + /** +

+ @attr description + Default ActionBar dropdown style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionDropDownStyle}. + @attr name android:actionDropDownStyle + */ + public static final int Theme_actionDropDownStyle = 133; + /** +

+ @attr description + TextAppearance style that will be applied to text that + appears within action menu items. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionMenuTextAppearance}. + @attr name android:actionMenuTextAppearance + */ + public static final int Theme_actionMenuTextAppearance = 187; + /** +

+ @attr description + Color for text that appears within action menu items. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionMenuTextColor}. + @attr name android:actionMenuTextColor + */ + public static final int Theme_actionMenuTextColor = 188; + /** +

+ @attr description + Background drawable to use for action mode UI + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionModeBackground}. + @attr name android:actionModeBackground + */ + public static final int Theme_actionModeBackground = 135; + /** +

This symbol is the offset where the {@link android.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:actionModeCloseButtonStyle + */ + public static final int Theme_actionModeCloseButtonStyle = 145; + /** +

+ @attr description + Drawable to use for the close action mode button + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionModeCloseDrawable}. + @attr name android:actionModeCloseDrawable + */ + public static final int Theme_actionModeCloseDrawable = 136; + /** +

+ @attr description + Drawable to use for the Copy action button in Contextual Action Bar + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionModeCopyDrawable}. + @attr name android:actionModeCopyDrawable + */ + public static final int Theme_actionModeCopyDrawable = 159; + /** +

+ @attr description + Drawable to use for the Cut action button in Contextual Action Bar + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionModeCutDrawable}. + @attr name android:actionModeCutDrawable + */ + public static final int Theme_actionModeCutDrawable = 158; + /** +

+ @attr description + Drawable to use for the Find action button in WebView selection action modes + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionModeFindDrawable}. + @attr name android:actionModeFindDrawable + */ + public static final int Theme_actionModeFindDrawable = 242; + /** +

+ @attr description + Drawable to use for the Paste action button in Contextual Action Bar + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionModePasteDrawable}. + @attr name android:actionModePasteDrawable + */ + public static final int Theme_actionModePasteDrawable = 160; + /** +

+ @attr description + PopupWindow style to use for action modes when showing as a window overlay. +

This is a private symbol. + @attr name com.android.internal:actionModePopupWindowStyle + */ + public static final int Theme_actionModePopupWindowStyle = 297; + /** +

+ @attr description + Drawable to use for the Select all action button in Contextual Action Bar + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionModeSelectAllDrawable}. + @attr name android:actionModeSelectAllDrawable + */ + public static final int Theme_actionModeSelectAllDrawable = 192; + /** +

+ @attr description + Drawable to use for the Share action button in WebView selection action modes + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionModeShareDrawable}. + @attr name android:actionModeShareDrawable + */ + public static final int Theme_actionModeShareDrawable = 241; + /** +

+ @attr description + Background drawable to use for action mode UI in the lower split bar + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionModeSplitBackground}. + @attr name android:actionModeSplitBackground + */ + public static final int Theme_actionModeSplitBackground = 205; + /** +

This symbol is the offset where the {@link android.R.attr#actionModeStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:actionModeStyle + */ + public static final int Theme_actionModeStyle = 201; + /** +

+ @attr description + Drawable to use for the Web Search action button in WebView selection action modes + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#actionModeWebSearchDrawable}. + @attr name android:actionModeWebSearchDrawable + */ + public static final int Theme_actionModeWebSearchDrawable = 243; + /** +

This symbol is the offset where the {@link android.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:actionOverflowButtonStyle + */ + public static final int Theme_actionOverflowButtonStyle = 144; + /** +

This symbol is the offset where the {@link android.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:actionOverflowMenuStyle + */ + public static final int Theme_actionOverflowMenuStyle = 238; + /** +

+ @attr description + Drawable used as a background for activated items. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#activatedBackgroundIndicator}. + @attr name android:activatedBackgroundIndicator + */ + public static final int Theme_activatedBackgroundIndicator = 146; + /** +

+ @attr description + Default ActivityChooserView style. +

This is a private symbol. + @attr name com.android.internal:activityChooserViewStyle + */ + public static final int Theme_activityChooserViewStyle = 296; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #Theme} array. + @attr name com.android.internal:alertDialogButtonGroupStyle + */ + public static final int Theme_alertDialogButtonGroupStyle = 287; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #Theme} array. + @attr name com.android.internal:alertDialogCenterButtons + */ + public static final int Theme_alertDialogCenterButtons = 288; + /** +

+ @attr description + Icon drawable to use for alerts + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#alertDialogIcon}. + @attr name android:alertDialogIcon + */ + public static final int Theme_alertDialogIcon = 180; + /** +

This symbol is the offset where the {@link android.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:alertDialogStyle + */ + public static final int Theme_alertDialogStyle = 45; + /** +

+ @attr description + Theme to use for alert dialogs spawned from this theme. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#alertDialogTheme}. + @attr name android:alertDialogTheme + */ + public static final int Theme_alertDialogTheme = 154; + /** +

+ @attr description + Alpha value of the ambient shadow projected by elevated views, between 0 and 1. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#ambientShadowAlpha}. + @attr name android:ambientShadowAlpha + */ + public static final int Theme_ambientShadowAlpha = 258; + /** +

+ @attr description + Default AutoCompleteTextView style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#autoCompleteTextViewStyle}. + @attr name android:autoCompleteTextViewStyle + */ + public static final int Theme_autoCompleteTextViewStyle = 52; + /** +

+ @attr description + Default background dim amount when a menu, dialog, or something similar pops up. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#backgroundDimAmount}. + @attr name android:backgroundDimAmount + */ + public static final int Theme_backgroundDimAmount = 2; + /** +

+ @attr description + Control whether dimming behind the window is enabled. The default + theme does not set this value, meaning it is based on whether the + window is floating. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#backgroundDimEnabled}. + @attr name android:backgroundDimEnabled + */ + public static final int Theme_backgroundDimEnabled = 106; + /** +

+ @attr description + Style for buttons without an explicit border, often used in groups. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#borderlessButtonStyle}. + @attr name android:borderlessButtonStyle + */ + public static final int Theme_borderlessButtonStyle = 164; + /** +

+ @attr description + Style for buttons within button bars + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#buttonBarButtonStyle}. + @attr name android:buttonBarButtonStyle + */ + public static final int Theme_buttonBarButtonStyle = 167; + /** +

+ @attr description + Style for the "negative" buttons within button bars + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#buttonBarNegativeButtonStyle}. + @attr name android:buttonBarNegativeButtonStyle + */ + public static final int Theme_buttonBarNegativeButtonStyle = 247; + /** +

+ @attr description + Style for the "neutral" buttons within button bars + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#buttonBarNeutralButtonStyle}. + @attr name android:buttonBarNeutralButtonStyle + */ + public static final int Theme_buttonBarNeutralButtonStyle = 246; + /** +

+ @attr description + Style for the "positive" buttons within button bars + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#buttonBarPositiveButtonStyle}. + @attr name android:buttonBarPositiveButtonStyle + */ + public static final int Theme_buttonBarPositiveButtonStyle = 245; + /** +

+ @attr description + Style for button bars + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#buttonBarStyle}. + @attr name android:buttonBarStyle + */ + public static final int Theme_buttonBarStyle = 166; + /** +

+ @attr description + Normal Button style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#buttonStyle}. + @attr name android:buttonStyle + */ + public static final int Theme_buttonStyle = 24; + /** +

+ @attr description + Button style to inset into an EditText. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#buttonStyleInset}. + @attr name android:buttonStyleInset + */ + public static final int Theme_buttonStyleInset = 26; + /** +

+ @attr description + Small Button style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#buttonStyleSmall}. + @attr name android:buttonStyleSmall + */ + public static final int Theme_buttonStyleSmall = 25; + /** +

+ @attr description + ToggleButton style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#buttonStyleToggle}. + @attr name android:buttonStyleToggle + */ + public static final int Theme_buttonStyleToggle = 27; + /** +

+ @attr description + The CalendarView style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#calendarViewStyle}. + @attr name android:calendarViewStyle + */ + public static final int Theme_calendarViewStyle = 184; + /** +

+ @attr description + A styled string, specifying the style to be used for showing + inline candidate text when composing with an input method. The + text itself will be ignored, but the style spans will be applied + to the candidate text as it is edited. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#candidatesTextStyleSpans}. + @attr name android:candidatesTextStyleSpans + */ + public static final int Theme_candidatesTextStyleSpans = 109; + /** +

+ @attr description + Default style for CheckBoxPreference. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#checkBoxPreferenceStyle}. + @attr name android:checkBoxPreferenceStyle + */ + public static final int Theme_checkBoxPreferenceStyle = 87; + /** +

+ @attr description + Default Checkbox style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#checkboxStyle}. + @attr name android:checkboxStyle + */ + public static final int Theme_checkboxStyle = 53; + /** +

+ @attr description + Default CheckedTextView style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#checkedTextViewStyle}. + @attr name android:checkedTextViewStyle + */ + public static final int Theme_checkedTextViewStyle = 214; + /** +

+ @attr description + Bright complement to the primary branding color. By default, this is the color applied + to framework controls (via colorControlActivated). + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorAccent}. + @attr name android:colorAccent + */ + public static final int Theme_colorAccent = 229; + /** +

+ @attr description + Default highlight color for items that are + activated. (Activated meaning persistent selection.) + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorActivatedHighlight}. + @attr name android:colorActivatedHighlight + */ + public static final int Theme_colorActivatedHighlight = 199; + /** +

+ @attr description + Default color of background imagery, ex. full-screen windows. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorBackground}. + @attr name android:colorBackground + */ + public static final int Theme_colorBackground = 1; + /** +

+ @attr description + This is a hint for a solid color that can be used for caching + rendered views. This should be the color of the background when + there is a solid background color; it should be null when the + background is a texture or translucent. When a device is able + to use accelerated drawing (thus setting state_accelerated), the + cache hint is ignored and always assumed to be transparent. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorBackgroundCacheHint}. + @attr name android:colorBackgroundCacheHint + */ + public static final int Theme_colorBackgroundCacheHint = 117; + /** +

+ @attr description + Default color of background imagery for floating components, ex. dialogs, popups, and cards. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorBackgroundFloating}. + @attr name android:colorBackgroundFloating + */ + public static final int Theme_colorBackgroundFloating = 263; + /** +

+ @attr description + The color applied to framework buttons in their normal state. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorButtonNormal}. + @attr name android:colorButtonNormal + */ + public static final int Theme_colorButtonNormal = 223; + /** +

+ @attr description + The color applied to framework controls in their activated (ex. checked) state. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorControlActivated}. + @attr name android:colorControlActivated + */ + public static final int Theme_colorControlActivated = 222; + /** +

+ @attr description + The color applied to framework control highlights (ex. ripples, list selectors). + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorControlHighlight}. + @attr name android:colorControlHighlight + */ + public static final int Theme_colorControlHighlight = 224; + /** +

+ @attr description + The color applied to framework controls in their normal state. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorControlNormal}. + @attr name android:colorControlNormal + */ + public static final int Theme_colorControlNormal = 221; + /** +

+ @attr description + The color applied to the edge effect on scrolling containers. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorEdgeEffect}. + @attr name android:colorEdgeEffect + */ + public static final int Theme_colorEdgeEffect = 261; + /** +

+ @attr description + Default highlight color for items that are + focused. (Focused meaning cursor-based selection.) + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorFocusedHighlight}. + @attr name android:colorFocusedHighlight + */ + public static final int Theme_colorFocusedHighlight = 198; + /** +

+ @attr description + Default color of foreground imagery. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorForeground}. + @attr name android:colorForeground + */ + public static final int Theme_colorForeground = 0; + /** +

+ @attr description + Default color of foreground imagery on an inverted background. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorForegroundInverse}. + @attr name android:colorForegroundInverse + */ + public static final int Theme_colorForegroundInverse = 94; + /** +

+ @attr description + Default highlight color for items that are long-pressed. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorLongPressedHighlight}. + @attr name android:colorLongPressedHighlight + */ + public static final int Theme_colorLongPressedHighlight = 197; + /** +

+ @attr description + Default highlight color for items in multiple selection + mode. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorMultiSelectHighlight}. + @attr name android:colorMultiSelectHighlight + */ + public static final int Theme_colorMultiSelectHighlight = 200; + /** +

+ @attr description + Default highlight color for items that are pressed. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorPressedHighlight}. + @attr name android:colorPressedHighlight + */ + public static final int Theme_colorPressedHighlight = 196; + /** +

+ @attr description + The primary branding color for the app. By default, this is the color applied to the + action bar background. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorPrimary}. + @attr name android:colorPrimary + */ + public static final int Theme_colorPrimary = 227; + /** +

+ @attr description + Dark variant of the primary branding color. By default, this is the color applied to + the status bar (via statusBarColor) and navigation bar (via navigationBarColor). + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#colorPrimaryDark}. + @attr name android:colorPrimaryDark + */ + public static final int Theme_colorPrimaryDark = 228; + /** +

+ @attr description + The color applied to framework switch thumbs in their normal state. +

This is a private symbol. + @attr name com.android.internal:colorSwitchThumbNormal + */ + public static final int Theme_colorSwitchThumbNormal = 317; + /** +

+ @attr description + The DatePicker dialog theme. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#datePickerDialogTheme}. + @attr name android:datePickerDialogTheme + */ + public static final int Theme_datePickerDialogTheme = 252; + /** +

+ @attr description + The DatePicker style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#datePickerStyle}. + @attr name android:datePickerStyle + */ + public static final int Theme_datePickerStyle = 183; + /** +

+ @attr description + Background that can be used behind parts of a UI that provide + details on data the user is selecting. For example, this is + the background element of PreferenceActivity's embedded + preference fragment. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#detailsElementBackground}. + @attr name android:detailsElementBackground + */ + public static final int Theme_detailsElementBackground = 174; + /** +

+ @attr description + Window decor layout to use in dialog mode with custom titles. +

This is a private symbol. + @attr name com.android.internal:dialogCustomTitleDecorLayout + */ + public static final int Theme_dialogCustomTitleDecorLayout = 308; + /** +

+ @attr description + Default style for DialogPreference. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dialogPreferenceStyle}. + @attr name android:dialogPreferenceStyle + */ + public static final int Theme_dialogPreferenceStyle = 89; + /** +

+ @attr description + Preferred padding for dialog content. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dialogPreferredPadding}. + @attr name android:dialogPreferredPadding + */ + public static final int Theme_dialogPreferredPadding = 262; + /** +

+ @attr description + Theme to use for dialogs spawned from this theme. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dialogTheme}. + @attr name android:dialogTheme + */ + public static final int Theme_dialogTheme = 153; + /** +

+ @attr description + Window decor layout to use in dialog mode with title only. +

This is a private symbol. + @attr name com.android.internal:dialogTitleDecorLayout + */ + public static final int Theme_dialogTitleDecorLayout = 309; + /** +

+ @attr description + Window decor layout to use in dialog mode with icons. +

This is a private symbol. + @attr name com.android.internal:dialogTitleIconsDecorLayout + */ + public static final int Theme_dialogTitleIconsDecorLayout = 307; + /** +

+ @attr description + Default disabled alpha for widgets that set enabled/disabled alpha programmatically. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#disabledAlpha}. + @attr name android:disabledAlpha + */ + public static final int Theme_disabledAlpha = 3; + /** +

+ @attr description + Drawable to use for generic horizontal dividers. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dividerHorizontal}. + @attr name android:dividerHorizontal + */ + public static final int Theme_dividerHorizontal = 165; + /** +

+ @attr description + Drawable to use for generic vertical dividers. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dividerVertical}. + @attr name android:dividerVertical + */ + public static final int Theme_dividerVertical = 155; + /** +

+ @attr description + Default style for drop down hints. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dropDownHintAppearance}. + @attr name android:dropDownHintAppearance + */ + public static final int Theme_dropDownHintAppearance = 80; + /** +

+ @attr description + Default style for drop down items. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dropDownItemStyle}. + @attr name android:dropDownItemStyle + */ + public static final int Theme_dropDownItemStyle = 78; + /** +

+ @attr description + Default ListView style for drop downs. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dropDownListViewStyle}. + @attr name android:dropDownListViewStyle + */ + public static final int Theme_dropDownListViewStyle = 54; + /** +

+ @attr description + Default dropdown Spinner style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#dropDownSpinnerStyle}. + @attr name android:dropDownSpinnerStyle + */ + public static final int Theme_dropDownSpinnerStyle = 132; + /** +

+ @attr description + The preferred item height for dropdown lists. +

This is a private symbol. + @attr name com.android.internal:dropdownListPreferredItemHeight + */ + public static final int Theme_dropdownListPreferredItemHeight = 278; + /** +

+ @attr description + EditText background drawable. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#editTextBackground}. + @attr name android:editTextBackground + */ + public static final int Theme_editTextBackground = 178; + /** +

+ @attr description + EditText text foreground color. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#editTextColor}. + @attr name android:editTextColor + */ + public static final int Theme_editTextColor = 177; + /** +

+ @attr description + Default style for EditTextPreference. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#editTextPreferenceStyle}. + @attr name android:editTextPreferenceStyle + */ + public static final int Theme_editTextPreferenceStyle = 90; + /** +

+ @attr description + Default EditText style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#editTextStyle}. + @attr name android:editTextStyle + */ + public static final int Theme_editTextStyle = 55; + /** +

+ @attr description + Background used instead of errorMessageBackground when the popup has to be above. +

This is a private symbol. + @attr name com.android.internal:errorMessageAboveBackground + */ + public static final int Theme_errorMessageAboveBackground = 276; + /** +

+ @attr description + Popup text displayed in TextView when setError is used. +

This is a private symbol. + @attr name com.android.internal:errorMessageBackground + */ + public static final int Theme_errorMessageBackground = 275; + /** +

+ @attr description + The preferred left bound for an expandable list child's indicator. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#expandableListPreferredChildIndicatorLeft}. + @attr name android:expandableListPreferredChildIndicatorLeft + */ + public static final int Theme_expandableListPreferredChildIndicatorLeft = 34; + /** +

+ @attr description + The preferred right bound for an expandable list child's indicator. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#expandableListPreferredChildIndicatorRight}. + @attr name android:expandableListPreferredChildIndicatorRight + */ + public static final int Theme_expandableListPreferredChildIndicatorRight = 35; + /** +

+ @attr description + The preferred left padding for an expandable list item that is a child. + If this is not provided, it defaults to the expandableListPreferredItemPaddingLeft. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#expandableListPreferredChildPaddingLeft}. + @attr name android:expandableListPreferredChildPaddingLeft + */ + public static final int Theme_expandableListPreferredChildPaddingLeft = 31; + /** +

+ @attr description + The preferred left bound for an expandable list item's indicator. For a child-specific + indicator, use expandableListPreferredChildIndicatorLeft. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#expandableListPreferredItemIndicatorLeft}. + @attr name android:expandableListPreferredItemIndicatorLeft + */ + public static final int Theme_expandableListPreferredItemIndicatorLeft = 32; + /** +

+ @attr description + The preferred right bound for an expandable list item's indicator. For a child-specific + indicator, use expandableListPreferredChildIndicatorRight. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#expandableListPreferredItemIndicatorRight}. + @attr name android:expandableListPreferredItemIndicatorRight + */ + public static final int Theme_expandableListPreferredItemIndicatorRight = 33; + /** +

+ @attr description + The preferred left padding for an expandable list item (for child-specific layouts, + use expandableListPreferredChildPaddingLeft). This takes into account + the indicator that will be shown to next to the item. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#expandableListPreferredItemPaddingLeft}. + @attr name android:expandableListPreferredItemPaddingLeft + */ + public static final int Theme_expandableListPreferredItemPaddingLeft = 30; + /** +

+ @attr description + Default ExpandableListView style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#expandableListViewStyle}. + @attr name android:expandableListViewStyle + */ + public static final int Theme_expandableListViewStyle = 56; + /** +

+ @attr description + ExpandableListView with white background. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#expandableListViewWhiteStyle}. + @attr name android:expandableListViewWhiteStyle + */ + public static final int Theme_expandableListViewWhiteStyle = 124; + /** +

+ @attr description + Position of the fast scroll index overlay window. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
floating0
atThumb1
aboveThumb2
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#fastScrollOverlayPosition}. + @attr name android:fastScrollOverlayPosition + */ + public static final int Theme_fastScrollOverlayPosition = 173; + /** +

+ @attr description + Drawable to use as the fast scroll index preview window background + when shown on the left. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fastScrollPreviewBackgroundLeft}. + @attr name android:fastScrollPreviewBackgroundLeft + */ + public static final int Theme_fastScrollPreviewBackgroundLeft = 170; + /** +

+ @attr description + Drawable to use as the fast scroll index preview window background + when shown on the right. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fastScrollPreviewBackgroundRight}. + @attr name android:fastScrollPreviewBackgroundRight + */ + public static final int Theme_fastScrollPreviewBackgroundRight = 171; + /** +

+ @attr description + Text color for the fast scroll index overlay. Make sure it + plays nicely with fastScrollPreviewBackground[Left|Right]. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fastScrollTextColor}. + @attr name android:fastScrollTextColor + */ + public static final int Theme_fastScrollTextColor = 181; + /** +

+ @attr description + Drawable to use as the fast scroll thumb. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fastScrollThumbDrawable}. + @attr name android:fastScrollThumbDrawable + */ + public static final int Theme_fastScrollThumbDrawable = 169; + /** +

+ @attr description + Drawable to use as the track for the fast scroll thumb. + This may be null. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fastScrollTrackDrawable}. + @attr name android:fastScrollTrackDrawable + */ + public static final int Theme_fastScrollTrackDrawable = 172; + /** +

+ @attr description + Drawable for WebView find-on-page dialogue's "next" button. @hide +

This is a private symbol. + @attr name com.android.internal:findOnPageNextDrawable + */ + public static final int Theme_findOnPageNextDrawable = 315; + /** +

+ @attr description + Drawable for WebView find-on-page dialogue's "previous" button. @hide +

This is a private symbol. + @attr name com.android.internal:findOnPagePreviousDrawable + */ + public static final int Theme_findOnPagePreviousDrawable = 316; + /** +

+ @attr description + Icon that should be used to indicate that an app is waiting for a fingerprint scan. + This should be used whenever an app is requesting the user to place a finger on the + fingerprint sensor. It can be combined with other drawables such as colored circles, so + the appearance matches the branding of the app requesting the fingerprint scan. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fingerprintAuthDrawable}. + @attr name android:fingerprintAuthDrawable + */ + public static final int Theme_fingerprintAuthDrawable = 264; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#floatingToolbarCloseDrawable} + attribute's value can be found in the {@link #Theme} array. + @attr name com.android.internal:floatingToolbarCloseDrawable + */ + public static final int Theme_floatingToolbarCloseDrawable = 281; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#floatingToolbarForegroundColor} + attribute's value can be found in the {@link #Theme} array. + @attr name com.android.internal:floatingToolbarForegroundColor + */ + public static final int Theme_floatingToolbarForegroundColor = 282; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#floatingToolbarItemBackgroundBorderlessDrawable} + attribute's value can be found in the {@link #Theme} array. + @attr name com.android.internal:floatingToolbarItemBackgroundBorderlessDrawable + */ + public static final int Theme_floatingToolbarItemBackgroundBorderlessDrawable = 283; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#floatingToolbarItemBackgroundDrawable} + attribute's value can be found in the {@link #Theme} array. + @attr name com.android.internal:floatingToolbarItemBackgroundDrawable + */ + public static final int Theme_floatingToolbarItemBackgroundDrawable = 284; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#floatingToolbarOpenDrawable} + attribute's value can be found in the {@link #Theme} array. + @attr name com.android.internal:floatingToolbarOpenDrawable + */ + public static final int Theme_floatingToolbarOpenDrawable = 285; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#floatingToolbarPopupBackgroundDrawable} + attribute's value can be found in the {@link #Theme} array. + @attr name com.android.internal:floatingToolbarPopupBackgroundDrawable + */ + public static final int Theme_floatingToolbarPopupBackgroundDrawable = 286; + /** +

+ @attr description + Default style for the FragmentBreadCrumbs widget. This widget is deprecated + starting in API level 21 ({@link android.os.Build.VERSION_CODES#.L}). +

This is a private symbol. + @attr name com.android.internal:fragmentBreadCrumbsStyle + */ + public static final int Theme_fragmentBreadCrumbsStyle = 294; + /** +

+ @attr description + The preferred background for gallery items. This should be set + as the background of any Views you provide from the Adapter. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#galleryItemBackground}. + @attr name android:galleryItemBackground + */ + public static final int Theme_galleryItemBackground = 28; + /** +

+ @attr description + Default Gallery style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#galleryStyle}. + @attr name android:galleryStyle + */ + public static final int Theme_galleryStyle = 57; + /** +

+ @attr description + Default GestureOverlayView style. +

This is a private symbol. + @attr name com.android.internal:gestureOverlayViewStyle + */ + public static final int Theme_gestureOverlayViewStyle = 292; + /** +

+ @attr description + Default GridView style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#gridViewStyle}. + @attr name android:gridViewStyle + */ + public static final int Theme_gridViewStyle = 58; + /** +

+ @attr description + Specifies a drawable to use for the 'home as up' indicator. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#homeAsUpIndicator}. + @attr name android:homeAsUpIndicator + */ + public static final int Theme_homeAsUpIndicator = 156; + /** +

+ @attr description + Default HorizontalScrollView style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#horizontalScrollViewStyle}. + @attr name android:horizontalScrollViewStyle + */ + public static final int Theme_horizontalScrollViewStyle = 179; + /** +

+ @attr description + The style resource to use for an ImageButton. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#imageButtonStyle}. + @attr name android:imageButtonStyle + */ + public static final int Theme_imageButtonStyle = 59; + /** +

+ @attr description + The style resource to use for an ImageButton that is an image well. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#imageWellStyle}. + @attr name android:imageWellStyle + */ + public static final int Theme_imageWellStyle = 60; + /** +

+ @attr description + Specifies that a theme has a light background with dark text on top. +

This is a private symbol. + @attr name com.android.internal:isLightTheme + */ + public static final int Theme_isLightTheme = 265; + /** +

+ @attr description + @hide The default radius of the light used to project view shadows. +

This is a private symbol. + @attr name com.android.internal:lightRadius + */ + public static final int Theme_lightRadius = 320; + /** +

+ @attr description + @hide The default Y position of the light used to project view shadows. +

This is a private symbol. + @attr name com.android.internal:lightY + */ + public static final int Theme_lightY = 318; + /** +

+ @attr description + @hide The default Z position of the light used to project view shadows. +

This is a private symbol. + @attr name com.android.internal:lightZ + */ + public static final int Theme_lightZ = 319; + /** +

+ @attr description + Drawable used as a background for selected list items. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#listChoiceBackgroundIndicator}. + @attr name android:listChoiceBackgroundIndicator + */ + public static final int Theme_listChoiceBackgroundIndicator = 140; + /** +

+ @attr description + Drawable to use for multiple choice indicators. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#listChoiceIndicatorMultiple}. + @attr name android:listChoiceIndicatorMultiple + */ + public static final int Theme_listChoiceIndicatorMultiple = 104; + /** +

+ @attr description + Drawable to use for single choice indicators. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#listChoiceIndicatorSingle}. + @attr name android:listChoiceIndicatorSingle + */ + public static final int Theme_listChoiceIndicatorSingle = 103; + /** +

+ @attr description + The drawable for the list divider. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#listDivider}. + @attr name android:listDivider + */ + public static final int Theme_listDivider = 102; + /** +

+ @attr description + The list divider used in alert dialogs. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#listDividerAlertDialog}. + @attr name android:listDividerAlertDialog + */ + public static final int Theme_listDividerAlertDialog = 151; + /** +

+ @attr description + Default ListPopupWindow style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#listPopupWindowStyle}. + @attr name android:listPopupWindowStyle + */ + public static final int Theme_listPopupWindowStyle = 147; + /** +

+ @attr description + The preferred list item height. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#listPreferredItemHeight}. + @attr name android:listPreferredItemHeight + */ + public static final int Theme_listPreferredItemHeight = 29; + /** +

+ @attr description + A larger, more robust list item height. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#listPreferredItemHeightLarge}. + @attr name android:listPreferredItemHeightLarge + */ + public static final int Theme_listPreferredItemHeightLarge = 193; + /** +

+ @attr description + A smaller, sleeker list item height. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#listPreferredItemHeightSmall}. + @attr name android:listPreferredItemHeightSmall + */ + public static final int Theme_listPreferredItemHeightSmall = 194; + /** +

+ @attr description + The preferred padding along the end edge of list items. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#listPreferredItemPaddingEnd}. + @attr name android:listPreferredItemPaddingEnd + */ + public static final int Theme_listPreferredItemPaddingEnd = 212; + /** +

+ @attr description + The preferred padding along the left edge of list items. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#listPreferredItemPaddingLeft}. + @attr name android:listPreferredItemPaddingLeft + */ + public static final int Theme_listPreferredItemPaddingLeft = 208; + /** +

+ @attr description + The preferred padding along the right edge of list items. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#listPreferredItemPaddingRight}. + @attr name android:listPreferredItemPaddingRight + */ + public static final int Theme_listPreferredItemPaddingRight = 209; + /** +

+ @attr description + The preferred padding along the start edge of list items. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#listPreferredItemPaddingStart}. + @attr name android:listPreferredItemPaddingStart + */ + public static final int Theme_listPreferredItemPaddingStart = 211; + /** +

+ @attr description + TextView style for list separators. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#listSeparatorTextViewStyle}. + @attr name android:listSeparatorTextViewStyle + */ + public static final int Theme_listSeparatorTextViewStyle = 96; + /** +

+ @attr description + Default ListView style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#listViewStyle}. + @attr name android:listViewStyle + */ + public static final int Theme_listViewStyle = 61; + /** +

+ @attr description + ListView with white background. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#listViewWhiteStyle}. + @attr name android:listViewWhiteStyle + */ + public static final int Theme_listViewWhiteStyle = 62; + /** +

+ @attr description + Default MapView style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#mapViewStyle}. + @attr name android:mapViewStyle + */ + public static final int Theme_mapViewStyle = 82; + /** +

+ @attr description + Default style for the MediaRouteButton widget. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#mediaRouteButtonStyle}. + @attr name android:mediaRouteButtonStyle + */ + public static final int Theme_mediaRouteButtonStyle = 210; + /** +

+ @attr description + NumberPicker style. +

This is a private symbol. + @attr name com.android.internal:numberPickerStyle + */ + public static final int Theme_numberPickerStyle = 295; + /** +

+ @attr description + The background of a panel when it is inset from the left and right edges of the screen. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#panelBackground}. + @attr name android:panelBackground + */ + public static final int Theme_panelBackground = 46; + /** +

+ @attr description + Color that matches (as closely as possible) the panel background. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#panelColorBackground}. + @attr name android:panelColorBackground + */ + public static final int Theme_panelColorBackground = 49; + /** +

+ @attr description + Default color of foreground panel imagery. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#panelColorForeground}. + @attr name android:panelColorForeground + */ + public static final int Theme_panelColorForeground = 48; + /** +

+ @attr description + The background of a panel when it extends to the left and right edges of the screen. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#panelFullBackground}. + @attr name android:panelFullBackground + */ + public static final int Theme_panelFullBackground = 47; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#panelMenuIsCompact} + attribute's value can be found in the {@link #Theme} array. + @attr name com.android.internal:panelMenuIsCompact + */ + public static final int Theme_panelMenuIsCompact = 289; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #Theme} array. + @attr name com.android.internal:panelMenuListTheme + */ + public static final int Theme_panelMenuListTheme = 291; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #Theme} array. + @attr name com.android.internal:panelMenuListWidth + */ + public static final int Theme_panelMenuListWidth = 290; + /** +

+ @attr description + Default appearance of panel text. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#panelTextAppearance}. + @attr name android:panelTextAppearance + */ + public static final int Theme_panelTextAppearance = 50; + /** +

+ @attr description + Reference to the Pointer style +

This is a private symbol. + @attr name com.android.internal:pointerStyle + */ + public static final int Theme_pointerStyle = 313; + /** +

+ @attr description + Default PopupMenu style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#popupMenuStyle}. + @attr name android:popupMenuStyle + */ + public static final int Theme_popupMenuStyle = 148; + /** +

+ @attr description + Default PopupWindow style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#popupWindowStyle}. + @attr name android:popupWindowStyle + */ + public static final int Theme_popupWindowStyle = 63; + /** +

+ @attr description + Default style for the PreferenceActivity. +

This is a private symbol. + @attr name com.android.internal:preferenceActivityStyle + */ + public static final int Theme_preferenceActivityStyle = 298; + /** +

+ @attr description + Default style for PreferenceCategory. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#preferenceCategoryStyle}. + @attr name android:preferenceCategoryStyle + */ + public static final int Theme_preferenceCategoryStyle = 84; + /** +

+ @attr description + Preference fragment list style +

This is a private symbol. + @attr name com.android.internal:preferenceFragmentListStyle + */ + public static final int Theme_preferenceFragmentListStyle = 304; + /** +

+ @attr description + Preference fragment padding side +

This is a private symbol. + @attr name com.android.internal:preferenceFragmentPaddingSide + */ + public static final int Theme_preferenceFragmentPaddingSide = 305; + /** +

+ @attr description + Default style for Headers pane in PreferenceActivity. +

This is a private symbol. + @attr name com.android.internal:preferenceFragmentStyle + */ + public static final int Theme_preferenceFragmentStyle = 299; + /** +

+ @attr description + Preference frame layout styles. +

This is a private symbol. + @attr name com.android.internal:preferenceFrameLayoutStyle + */ + public static final int Theme_preferenceFrameLayoutStyle = 312; + /** +

+ @attr description + Preference headers panel style +

This is a private symbol. + @attr name com.android.internal:preferenceHeaderPanelStyle + */ + public static final int Theme_preferenceHeaderPanelStyle = 302; + /** +

+ @attr description + Default style for informational Preference. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#preferenceInformationStyle}. + @attr name android:preferenceInformationStyle + */ + public static final int Theme_preferenceInformationStyle = 85; + /** +

+ @attr description + The preference layout that has the child/tabbed effect. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#preferenceLayoutChild}. + @attr name android:preferenceLayoutChild + */ + public static final int Theme_preferenceLayoutChild = 92; + /** +

+ @attr description + Preference list style +

This is a private symbol. + @attr name com.android.internal:preferenceListStyle + */ + public static final int Theme_preferenceListStyle = 303; + /** +

+ @attr description + Preference panel style +

This is a private symbol. + @attr name com.android.internal:preferencePanelStyle + */ + public static final int Theme_preferencePanelStyle = 301; + /** +

+ @attr description + Default style for PreferenceScreen. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#preferenceScreenStyle}. + @attr name android:preferenceScreenStyle + */ + public static final int Theme_preferenceScreenStyle = 83; + /** +

+ @attr description + Default style for Preference. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#preferenceStyle}. + @attr name android:preferenceStyle + */ + public static final int Theme_preferenceStyle = 86; + /** +

+ @attr description + Theme to use for presentations spawned from this theme. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#presentationTheme}. + @attr name android:presentationTheme + */ + public static final int Theme_presentationTheme = 213; + /** +

+ @attr description + Default ProgressBar style. This is a medium circular progress bar. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#progressBarStyle}. + @attr name android:progressBarStyle + */ + public static final int Theme_progressBarStyle = 64; + /** +

+ @attr description + Horizontal ProgressBar style. This is a horizontal progress bar. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#progressBarStyleHorizontal}. + @attr name android:progressBarStyleHorizontal + */ + public static final int Theme_progressBarStyleHorizontal = 65; + /** +

+ @attr description + Inverse ProgressBar style. This is a medium circular progress bar. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#progressBarStyleInverse}. + @attr name android:progressBarStyleInverse + */ + public static final int Theme_progressBarStyleInverse = 110; + /** +

+ @attr description + Large ProgressBar style. This is a large circular progress bar. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#progressBarStyleLarge}. + @attr name android:progressBarStyleLarge + */ + public static final int Theme_progressBarStyleLarge = 67; + /** +

+ @attr description + Large inverse ProgressBar style. This is a large circular progress bar. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#progressBarStyleLargeInverse}. + @attr name android:progressBarStyleLargeInverse + */ + public static final int Theme_progressBarStyleLargeInverse = 112; + /** +

+ @attr description + Small ProgressBar style. This is a small circular progress bar. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#progressBarStyleSmall}. + @attr name android:progressBarStyleSmall + */ + public static final int Theme_progressBarStyleSmall = 66; + /** +

+ @attr description + Small inverse ProgressBar style. This is a small circular progress bar. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#progressBarStyleSmallInverse}. + @attr name android:progressBarStyleSmallInverse + */ + public static final int Theme_progressBarStyleSmallInverse = 111; + /** +

+ @attr description + Small ProgressBar in title style. This is a small circular progress bar that will be placed in title bars. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#progressBarStyleSmallTitle}. + @attr name android:progressBarStyleSmallTitle + */ + public static final int Theme_progressBarStyleSmallTitle = 98; + /** +

+ @attr description + Drawable used as an overlay on top of quickcontact photos. +

This is a private symbol. + @attr name com.android.internal:quickContactBadgeOverlay + */ + public static final int Theme_quickContactBadgeOverlay = 293; + /** +

+ @attr description + Default quickcontact badge style with large quickcontact window. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#quickContactBadgeStyleSmallWindowLarge}. + @attr name android:quickContactBadgeStyleSmallWindowLarge + */ + public static final int Theme_quickContactBadgeStyleSmallWindowLarge = 123; + /** +

+ @attr description + Default quickcontact badge style with medium quickcontact window. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#quickContactBadgeStyleSmallWindowMedium}. + @attr name android:quickContactBadgeStyleSmallWindowMedium + */ + public static final int Theme_quickContactBadgeStyleSmallWindowMedium = 122; + /** +

+ @attr description + Default quickcontact badge style with small quickcontact window. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#quickContactBadgeStyleSmallWindowSmall}. + @attr name android:quickContactBadgeStyleSmallWindowSmall + */ + public static final int Theme_quickContactBadgeStyleSmallWindowSmall = 121; + /** +

+ @attr description + Default quickcontact badge style with large quickcontact window. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#quickContactBadgeStyleWindowLarge}. + @attr name android:quickContactBadgeStyleWindowLarge + */ + public static final int Theme_quickContactBadgeStyleWindowLarge = 120; + /** +

+ @attr description + Default quickcontact badge style with medium quickcontact window. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#quickContactBadgeStyleWindowMedium}. + @attr name android:quickContactBadgeStyleWindowMedium + */ + public static final int Theme_quickContactBadgeStyleWindowMedium = 119; + /** +

+ @attr description + Default quickcontact badge style with small quickcontact window. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#quickContactBadgeStyleWindowSmall}. + @attr name android:quickContactBadgeStyleWindowSmall + */ + public static final int Theme_quickContactBadgeStyleWindowSmall = 118; + /** +

+ @attr description + Default RadioButton style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#radioButtonStyle}. + @attr name android:radioButtonStyle + */ + public static final int Theme_radioButtonStyle = 71; + /** +

+ @attr description + Default RatingBar style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#ratingBarStyle}. + @attr name android:ratingBarStyle + */ + public static final int Theme_ratingBarStyle = 69; + /** +

+ @attr description + Indicator RatingBar style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#ratingBarStyleIndicator}. + @attr name android:ratingBarStyleIndicator + */ + public static final int Theme_ratingBarStyleIndicator = 99; + /** +

+ @attr description + Small indicator RatingBar style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#ratingBarStyleSmall}. + @attr name android:ratingBarStyleSmall + */ + public static final int Theme_ratingBarStyleSmall = 70; + /** +

+ @attr description + Default style for RingtonePreference. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#ringtonePreferenceStyle}. + @attr name android:ringtonePreferenceStyle + */ + public static final int Theme_ringtonePreferenceStyle = 91; + /** +

+ @attr description + Default ScrollView style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scrollViewStyle}. + @attr name android:scrollViewStyle + */ + public static final int Theme_scrollViewStyle = 72; + /** +

+ @attr description + Theme to use for Search Dialogs +

This is a private symbol. + @attr name com.android.internal:searchDialogTheme + */ + public static final int Theme_searchDialogTheme = 311; + /** +

+ @attr description + The list item height for search results. @hide +

This is a private symbol. + @attr name com.android.internal:searchResultListItemHeight + */ + public static final int Theme_searchResultListItemHeight = 277; + /** +

+ @attr description + Style for the search query widget. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#searchViewStyle}. + @attr name android:searchViewStyle + */ + public static final int Theme_searchViewStyle = 244; + /** +

+ @attr description + Search widget more corpus result item background. +

This is a private symbol. + @attr name com.android.internal:searchWidgetCorpusItemBackground + */ + public static final int Theme_searchWidgetCorpusItemBackground = 269; + /** +

+ @attr description + @hide Default style for SeekBarDialogPreference. +

This is a private symbol. + @attr name com.android.internal:seekBarDialogPreferenceStyle + */ + public static final int Theme_seekBarDialogPreferenceStyle = 300; + /** +

+ @attr description + Default style for seekbar preferences. +

This is a private symbol. + @attr name com.android.internal:seekBarPreferenceStyle + */ + public static final int Theme_seekBarPreferenceStyle = 306; + /** +

+ @attr description + Default SeekBar style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#seekBarStyle}. + @attr name android:seekBarStyle + */ + public static final int Theme_seekBarStyle = 68; + /** +

+ @attr description + Style for segmented buttons - a container that houses several buttons + with the appearance of a singel button broken into segments. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#segmentedButtonStyle}. + @attr name android:segmentedButtonStyle + */ + public static final int Theme_segmentedButtonStyle = 168; + /** +

+ @attr description + Background drawable for bordered standalone items that need focus/pressed states. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#selectableItemBackground}. + @attr name android:selectableItemBackground + */ + public static final int Theme_selectableItemBackground = 157; + /** +

+ @attr description + Background drawable for borderless standalone items that need focus/pressed states. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#selectableItemBackgroundBorderless}. + @attr name android:selectableItemBackgroundBorderless + */ + public static final int Theme_selectableItemBackgroundBorderless = 239; + /** +

+ @attr description + Default style for spinner drop down items. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#spinnerDropDownItemStyle}. + @attr name android:spinnerDropDownItemStyle + */ + public static final int Theme_spinnerDropDownItemStyle = 79; + /** +

+ @attr description + Default spinner item style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#spinnerItemStyle}. + @attr name android:spinnerItemStyle + */ + public static final int Theme_spinnerItemStyle = 81; + /** +

+ @attr description + Default Spinner style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#spinnerStyle}. + @attr name android:spinnerStyle + */ + public static final int Theme_spinnerStyle = 73; + /** +

+ @attr description + Alpha value of the spot shadow projected by elevated views, between 0 and 1. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#spotShadowAlpha}. + @attr name android:spotShadowAlpha + */ + public static final int Theme_spotShadowAlpha = 259; + /** +

+ @attr description + Default StackView style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#stackViewStyle}. + @attr name android:stackViewStyle + */ + public static final int Theme_stackViewStyle = 236; + /** +

+ @attr description + Default Star style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#starStyle}. + @attr name android:starStyle + */ + public static final int Theme_starStyle = 74; + /** +

+ @attr description + Default style for switch preferences. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#switchPreferenceStyle}. + @attr name android:switchPreferenceStyle + */ + public static final int Theme_switchPreferenceStyle = 189; + /** +

+ @attr description + Default style for the Switch widget. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#switchStyle}. + @attr name android:switchStyle + */ + public static final int Theme_switchStyle = 237; + /** +

+ @attr description + Default TabWidget style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tabWidgetStyle}. + @attr name android:tabWidgetStyle + */ + public static final int Theme_tabWidgetStyle = 75; + /** +

+ @attr description + Default appearance of text: color, typeface, size, and style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearance}. + @attr name android:textAppearance + */ + public static final int Theme_textAppearance = 4; + /** +

+ @attr description + The underline color and thickness for auto correction suggestion +

This is a private symbol. + @attr name com.android.internal:textAppearanceAutoCorrectionSuggestion + */ + public static final int Theme_textAppearanceAutoCorrectionSuggestion = 272; + /** +

+ @attr description + Text color, typeface, size, and style for the text inside of a button. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearanceButton}. + @attr name android:textAppearanceButton + */ + public static final int Theme_textAppearanceButton = 95; + /** +

+ @attr description + The underline color and thickness for easy correct suggestion +

This is a private symbol. + @attr name com.android.internal:textAppearanceEasyCorrectSuggestion + */ + public static final int Theme_textAppearanceEasyCorrectSuggestion = 270; + /** +

+ @attr description + Default appearance of text against an inverted background: + color, typeface, size, and style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearanceInverse}. + @attr name android:textAppearanceInverse + */ + public static final int Theme_textAppearanceInverse = 5; + /** +

+ @attr description + Text color, typeface, size, and style for "large" text. Defaults to primary text color. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearanceLarge}. + @attr name android:textAppearanceLarge + */ + public static final int Theme_textAppearanceLarge = 16; + /** +

+ @attr description + Text color, typeface, size, and style for "large" inverse text. Defaults to primary inverse text color. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearanceLargeInverse}. + @attr name android:textAppearanceLargeInverse + */ + public static final int Theme_textAppearanceLargeInverse = 19; + /** +

+ @attr description + Text color, typeface, size, and style for the text inside of a popup menu. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearanceLargePopupMenu}. + @attr name android:textAppearanceLargePopupMenu + */ + public static final int Theme_textAppearanceLargePopupMenu = 149; + /** +

+ @attr description + The preferred TextAppearance for the primary text of list items. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearanceListItem}. + @attr name android:textAppearanceListItem + */ + public static final int Theme_textAppearanceListItem = 206; + /** +

+ @attr description + The preferred TextAppearance for the secondary text of list items. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearanceListItemSecondary}. + @attr name android:textAppearanceListItemSecondary + */ + public static final int Theme_textAppearanceListItemSecondary = 226; + /** +

+ @attr description + The preferred TextAppearance for the primary text of small list items. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearanceListItemSmall}. + @attr name android:textAppearanceListItemSmall + */ + public static final int Theme_textAppearanceListItemSmall = 207; + /** +

+ @attr description + Text color, typeface, size, and style for "medium" text. Defaults to primary text color. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearanceMedium}. + @attr name android:textAppearanceMedium + */ + public static final int Theme_textAppearanceMedium = 17; + /** +

+ @attr description + Text color, typeface, size, and style for "medium" inverse text. Defaults to primary inverse text color. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearanceMediumInverse}. + @attr name android:textAppearanceMediumInverse + */ + public static final int Theme_textAppearanceMediumInverse = 20; + /** +

+ @attr description + The underline color and thickness for misspelled suggestion +

This is a private symbol. + @attr name com.android.internal:textAppearanceMisspelledSuggestion + */ + public static final int Theme_textAppearanceMisspelledSuggestion = 271; + /** +

+ @attr description + Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearanceSearchResultSubtitle}. + @attr name android:textAppearanceSearchResultSubtitle + */ + public static final int Theme_textAppearanceSearchResultSubtitle = 115; + /** +

+ @attr description + Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearanceSearchResultTitle}. + @attr name android:textAppearanceSearchResultTitle + */ + public static final int Theme_textAppearanceSearchResultTitle = 116; + /** +

+ @attr description + Text color, typeface, size, and style for "small" text. Defaults to secondary text color. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearanceSmall}. + @attr name android:textAppearanceSmall + */ + public static final int Theme_textAppearanceSmall = 18; + /** +

+ @attr description + Text color, typeface, size, and style for "small" inverse text. Defaults to secondary inverse text color. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearanceSmallInverse}. + @attr name android:textAppearanceSmallInverse + */ + public static final int Theme_textAppearanceSmallInverse = 21; + /** +

+ @attr description + Text color, typeface, size, and style for small text inside of a popup menu. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAppearanceSmallPopupMenu}. + @attr name android:textAppearanceSmallPopupMenu + */ + public static final int Theme_textAppearanceSmallPopupMenu = 150; + /** +

+ @attr description + Drawable to use for check marks. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textCheckMark}. + @attr name android:textCheckMark + */ + public static final int Theme_textCheckMark = 22; + /** +

This symbol is the offset where the {@link android.R.attr#textCheckMarkInverse} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:textCheckMarkInverse + */ + public static final int Theme_textCheckMarkInverse = 23; + /** +

+ @attr description + Color of list item text in alert dialogs. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorAlertDialogListItem}. + @attr name android:textColorAlertDialogListItem + */ + public static final int Theme_textColorAlertDialogListItem = 152; + /** +

+ @attr description + Color of highlighted text, when used in a light theme. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorHighlightInverse}. + @attr name android:textColorHighlightInverse + */ + public static final int Theme_textColorHighlightInverse = 175; + /** +

+ @attr description + Inverse hint text color. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorHintInverse}. + @attr name android:textColorHintInverse + */ + public static final int Theme_textColorHintInverse = 15; + /** +

+ @attr description + Color of link text (URLs), when used in a light theme. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorLinkInverse}. + @attr name android:textColorLinkInverse + */ + public static final int Theme_textColorLinkInverse = 176; + /** +

+ @attr description + The most prominent text color. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorPrimary}. + @attr name android:textColorPrimary + */ + public static final int Theme_textColorPrimary = 6; + /** +

+ @attr description + Bright text color for use over activated backgrounds. +

This is a private symbol. + @attr name com.android.internal:textColorPrimaryActivated + */ + public static final int Theme_textColorPrimaryActivated = 266; + /** +

+ @attr description + Bright text color. Only differentiates based on the disabled state. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorPrimaryDisableOnly}. + @attr name android:textColorPrimaryDisableOnly + */ + public static final int Theme_textColorPrimaryDisableOnly = 7; + /** +

+ @attr description + Primary inverse text color, useful for inverted backgrounds. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorPrimaryInverse}. + @attr name android:textColorPrimaryInverse + */ + public static final int Theme_textColorPrimaryInverse = 9; + /** +

+ @attr description + Bright inverse text color. Only differentiates based on the disabled state. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorPrimaryInverseDisableOnly}. + @attr name android:textColorPrimaryInverseDisableOnly + */ + public static final int Theme_textColorPrimaryInverseDisableOnly = 113; + /** +

+ @attr description + Bright inverse text color. This does not differentiate the disabled state. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorPrimaryInverseNoDisable}. + @attr name android:textColorPrimaryInverseNoDisable + */ + public static final int Theme_textColorPrimaryInverseNoDisable = 13; + /** +

+ @attr description + Bright text color. This does not differentiate the disabled state. As an example, + buttons use this since they display the disabled state via the background and not the + foreground text color. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorPrimaryNoDisable}. + @attr name android:textColorPrimaryNoDisable + */ + public static final int Theme_textColorPrimaryNoDisable = 11; + /** +

+ @attr description + Text color for urls in search suggestions, used by things like global search and the browser. @hide +

This is a private symbol. + @attr name com.android.internal:textColorSearchUrl + */ + public static final int Theme_textColorSearchUrl = 268; + /** +

+ @attr description + Secondary text color. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorSecondary}. + @attr name android:textColorSecondary + */ + public static final int Theme_textColorSecondary = 8; + /** +

+ @attr description + Dim text color for use over activated backgrounds. +

This is a private symbol. + @attr name com.android.internal:textColorSecondaryActivated + */ + public static final int Theme_textColorSecondaryActivated = 267; + /** +

+ @attr description + Secondary inverse text color, useful for inverted backgrounds. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorSecondaryInverse}. + @attr name android:textColorSecondaryInverse + */ + public static final int Theme_textColorSecondaryInverse = 10; + /** +

+ @attr description + Dim inverse text color. This does not differentiate the disabled state. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorSecondaryInverseNoDisable}. + @attr name android:textColorSecondaryInverseNoDisable + */ + public static final int Theme_textColorSecondaryInverseNoDisable = 14; + /** +

+ @attr description + Dim text color. This does not differentiate the disabled state. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorSecondaryNoDisable}. + @attr name android:textColorSecondaryNoDisable + */ + public static final int Theme_textColorSecondaryNoDisable = 12; + /** +

+ @attr description + Tertiary text color. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorTertiary}. + @attr name android:textColorTertiary + */ + public static final int Theme_textColorTertiary = 100; + /** +

+ @attr description + Tertiary inverse text color, useful for inverted backgrounds. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColorTertiaryInverse}. + @attr name android:textColorTertiaryInverse + */ + public static final int Theme_textColorTertiaryInverse = 101; + /** +

+ @attr description + Variation of textEditPasteWindowLayout displayed when the clipboard is empty. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textEditNoPasteWindowLayout}. + @attr name android:textEditNoPasteWindowLayout + */ + public static final int Theme_textEditNoPasteWindowLayout = 162; + /** +

+ @attr description + The layout of the view that is displayed on top of the cursor to paste inside a + TextEdit field. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textEditPasteWindowLayout}. + @attr name android:textEditPasteWindowLayout + */ + public static final int Theme_textEditPasteWindowLayout = 161; + /** +

+ @attr description + Variation of textEditSidePasteWindowLayout displayed when the clipboard is empty. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textEditSideNoPasteWindowLayout}. + @attr name android:textEditSideNoPasteWindowLayout + */ + public static final int Theme_textEditSideNoPasteWindowLayout = 186; + /** +

+ @attr description + Used instead of textEditPasteWindowLayout when the window is moved on the side of the + insertion cursor because it would be clipped if it were positioned on top. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textEditSidePasteWindowLayout}. + @attr name android:textEditSidePasteWindowLayout + */ + public static final int Theme_textEditSidePasteWindowLayout = 185; + /** +

+ @attr description + Layout of the TextView item that will populate the suggestion popup window. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textEditSuggestionItemLayout}. + @attr name android:textEditSuggestionItemLayout + */ + public static final int Theme_textEditSuggestionItemLayout = 191; + /** +

+ @attr description + Reference to a drawable that will be used to display a text selection + anchor for positioning the cursor within text. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textSelectHandle}. + @attr name android:textSelectHandle + */ + public static final int Theme_textSelectHandle = 128; + /** +

+ @attr description + Reference to a drawable that will be used to display a text selection + anchor on the left side of a selection region. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textSelectHandleLeft}. + @attr name android:textSelectHandleLeft + */ + public static final int Theme_textSelectHandleLeft = 126; + /** +

+ @attr description + Reference to a drawable that will be used to display a text selection + anchor on the right side of a selection region. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textSelectHandleRight}. + @attr name android:textSelectHandleRight + */ + public static final int Theme_textSelectHandleRight = 127; + /** +

+ @attr description + Reference to a style that will be used for the window containing a text + selection anchor. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textSelectHandleWindowStyle}. + @attr name android:textSelectHandleWindowStyle + */ + public static final int Theme_textSelectHandleWindowStyle = 129; + /** +

+ @attr description + Reference to a style that will be used for the window containing a list of possible + text suggestions in an EditText. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textSuggestionsWindowStyle}. + @attr name android:textSuggestionsWindowStyle + */ + public static final int Theme_textSuggestionsWindowStyle = 190; + /** +

+ @attr description + The underline color +

This is a private symbol. + @attr name com.android.internal:textUnderlineColor + */ + public static final int Theme_textUnderlineColor = 273; + /** +

+ @attr description + The underline thickness +

This is a private symbol. + @attr name com.android.internal:textUnderlineThickness + */ + public static final int Theme_textUnderlineThickness = 274; + /** +

+ @attr description + Default TextView style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textViewStyle}. + @attr name android:textViewStyle + */ + public static final int Theme_textViewStyle = 76; + /** +

+ @attr description + The TimePicker dialog theme. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#timePickerDialogTheme}. + @attr name android:timePickerDialogTheme + */ + public static final int Theme_timePickerDialogTheme = 250; + /** +

+ @attr description + The TimePicker style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#timePickerStyle}. + @attr name android:timePickerStyle + */ + public static final int Theme_timePickerStyle = 249; + /** +

+ @attr description + Background to use for toasts +

This is a private symbol. + @attr name com.android.internal:toastFrameBackground + */ + public static final int Theme_toastFrameBackground = 310; + /** +

+ @attr description + Default Toolbar style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#toolbarStyle}. + @attr name android:toolbarStyle + */ + public static final int Theme_toolbarStyle = 251; + /** +

+ @attr description + Default WebTextView style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#webTextViewStyle}. + @attr name android:webTextViewStyle + */ + public static final int Theme_webTextViewStyle = 125; + /** +

+ @attr description + Default WebView style. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#webViewStyle}. + @attr name android:webViewStyle + */ + public static final int Theme_webViewStyle = 77; + /** +

+ @attr description + Flag indicating whether this window should have an Action Bar + in place of the usual title bar. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowActionBar}. + @attr name android:windowActionBar + */ + public static final int Theme_windowActionBar = 130; + /** +

+ @attr description + Internal layout used internally for window decor +

This is a private symbol. + @attr name com.android.internal:windowActionBarFullscreenDecorLayout + */ + public static final int Theme_windowActionBarFullscreenDecorLayout = 280; + /** +

+ @attr description + Flag indicating whether this window's Action Bar should overlay + application content. Does nothing if the window would not + have an Action Bar. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowActionBarOverlay}. + @attr name android:windowActionBarOverlay + */ + public static final int Theme_windowActionBarOverlay = 138; + /** +

+ @attr description + Flag indicating whether action modes should overlay window content + when there is not reserved space for their UI (such as an Action Bar). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowActionModeOverlay}. + @attr name android:windowActionModeOverlay + */ + public static final int Theme_windowActionModeOverlay = 137; + /** +

+ @attr description + Flag indicating whether this window allows Activity Transitions. + Corresponds to {@link android.view.Window#FEATURE_ACTIVITY_TRANSITIONS}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowActivityTransitions}. + @attr name android:windowActivityTransitions + */ + public static final int Theme_windowActivityTransitions = 260; + /** +

+ @attr description + Flag indicating whether this Window's transition should overlap with + the exiting transition of the calling Activity. Corresponds to + {@link android.view.Window#setAllowEnterTransitionOverlap(boolean)}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowAllowEnterTransitionOverlap}. + @attr name android:windowAllowEnterTransitionOverlap + */ + public static final int Theme_windowAllowEnterTransitionOverlap = 235; + /** +

+ @attr description + Flag indicating whether this Window's transition should overlap with + the exiting transition of the called Activity when the called Activity + finishes. Corresponds to + {@link android.view.Window#setAllowReturnTransitionOverlap(boolean)}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowAllowReturnTransitionOverlap}. + @attr name android:windowAllowReturnTransitionOverlap + */ + public static final int Theme_windowAllowReturnTransitionOverlap = 234; + /** +

+ @attr description + Reference to a style resource holding + the set of window animations to use, which can be + any of the attributes defined by + {@link android.R.styleable#WindowAnimation}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowAnimationStyle}. + @attr name android:windowAnimationStyle + */ + public static final int Theme_windowAnimationStyle = 93; + /** +

+ @attr description + Drawable to use as the overall window background. As of + {@link android.os.Build.VERSION_CODES#HONEYCOMB}, this may + be a selector that uses state_accelerated to pick a non-solid + color when running on devices that can draw such a bitmap + with complex compositing on top at 60fps. + +

There are a few special considerations to use when setting this + drawable: +

    +
  • This information will be used to infer the pixel format + for your window's surface. If the drawable has any + non-opaque pixels, your window will be translucent + (32 bpp). +
  • If you want to draw the entire background + yourself, you should set this drawable to some solid + color that closely matches that background (so the + system's preview of your window will match), and + then in code manually set your window's background to + null so it will not be drawn. +
+ + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowBackground}. + @attr name android:windowBackground + */ + public static final int Theme_windowBackground = 36; + /** +

+ @attr description + Drawable to draw selectively within the inset areas when the windowBackground + has been set to null. This protects against seeing visual garbage in the + surface when the app has not drawn any content into this area. +

This is a private symbol. + @attr name com.android.internal:windowBackgroundFallback + */ + public static final int Theme_windowBackgroundFallback = 279; + /** +

+ @attr description + Control whether a container should automatically close itself if + the user touches outside of it. This only applies to activities + and dialogs. + +

Note: this attribute will only be respected for applications + that are targeting {@link android.os.Build.VERSION_CODES#HONEYCOMB} + or later. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowCloseOnTouchOutside}. + @attr name android:windowCloseOnTouchOutside + */ + public static final int Theme_windowCloseOnTouchOutside = 182; + /** +

+ @attr description + This Drawable is overlaid over the foreground of the Window's content area, usually + to place a shadow below the title. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowContentOverlay}. + @attr name android:windowContentOverlay + */ + public static final int Theme_windowContentOverlay = 41; + /** +

+ @attr description + Reference to a TransitionManager XML resource defining the desired + transitions between different window content. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowContentTransitionManager}. + @attr name android:windowContentTransitionManager + */ + public static final int Theme_windowContentTransitionManager = 220; + /** +

+ @attr description + Flag indicating whether this window requests that content changes be performed + as scene changes with transitions. Corresponds to + {@link android.view.Window#FEATURE_CONTENT_TRANSITIONS}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowContentTransitions}. + @attr name android:windowContentTransitions + */ + public static final int Theme_windowContentTransitions = 219; + /** +

+ @attr description + Flag allowing you to disable the preview animation for a window. + The default value is false; if set to true, the system can never + use the window's theme to show a preview of it before your + actual instance is shown to the user. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowDisablePreview}. + @attr name android:windowDisablePreview + */ + public static final int Theme_windowDisablePreview = 107; + /** +

+ @attr description + Flag indicating that this window should allow touches to be split + across other windows that also support split touch. + The default value is true for applications with a targetSdkVersion + of Honeycomb or newer; false otherwise. + When this flag is false, the first pointer that goes down determines + the window to which all subsequent touches go until all pointers go up. + When this flag is true, each pointer (not necessarily the first) that + goes down determines the window to which all subsequent touches of that + pointer will go until that pointers go up thereby enabling touches + with multiple pointers to be split across multiple windows. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowEnableSplitTouch}. + @attr name android:windowEnableSplitTouch + */ + public static final int Theme_windowEnableSplitTouch = 163; + /** +

+ @attr description + Reference to a Transition XML resource defining the desired Transition + used to move Views into the initial Window's content Scene. Corresponds to + {@link android.view.Window#setEnterTransition(android.transition.Transition)}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowEnterTransition}. + @attr name android:windowEnterTransition + */ + public static final int Theme_windowEnterTransition = 230; + /** +

+ @attr description + Reference to a Transition XML resource defining the desired Transition + used to move Views out of the Window's content Scene when launching a new Activity. + Corresponds to + {@link android.view.Window#setExitTransition(android.transition.Transition)}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowExitTransition}. + @attr name android:windowExitTransition + */ + public static final int Theme_windowExitTransition = 231; + /** +

+ @attr description + Drawable to use as a frame around the window. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowFrame}. + @attr name android:windowFrame + */ + public static final int Theme_windowFrame = 37; + /** +

+ @attr description + Flag indicating whether this window should fill the entire screen. Corresponds + to {@link android.view.WindowManager.LayoutParams#FLAG_FULLSCREEN}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowFullscreen}. + @attr name android:windowFullscreen + */ + public static final int Theme_windowFullscreen = 97; + /** +

+ @attr description + Flag indicating whether this is a floating window. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowIsFloating}. + @attr name android:windowIsFloating + */ + public static final int Theme_windowIsFloating = 39; + /** +

+ @attr description + Flag indicating whether this is a translucent window. If this attribute is unset (but + not if set to false), the window might still be considered translucent, if + windowSwipeToDismiss is set to true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowIsTranslucent}. + @attr name android:windowIsTranslucent + */ + public static final int Theme_windowIsTranslucent = 40; + /** +

+ @attr description + Flag indicating that this window should not be displayed at all. + The default value is false; if set to true, and this window is + the main window of an Activity, then it will never actually + be added to the window manager. This means that your activity + must immediately quit without waiting for user interaction, + because there will be no such interaction coming. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowNoDisplay}. + @attr name android:windowNoDisplay + */ + public static final int Theme_windowNoDisplay = 105; + /** +

+ @attr description + Flag indicating whether there should be no title on this window. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowNoTitle}. + @attr name android:windowNoTitle + */ + public static final int Theme_windowNoTitle = 38; + /** +

+ @attr description + Flag indicating whether this window should extend into overscan region. Corresponds + to {@link android.view.WindowManager.LayoutParams#FLAG_LAYOUT_IN_OVERSCAN}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowOverscan}. + @attr name android:windowOverscan + */ + public static final int Theme_windowOverscan = 215; + /** +

+ @attr description + Reference to a Transition XML resource defining the desired Transition + used to move Views in to the scene when returning from a previously-started Activity. + Corresponds to + {@link android.view.Window#setReenterTransition(android.transition.Transition)}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowReenterTransition}. + @attr name android:windowReenterTransition + */ + public static final int Theme_windowReenterTransition = 254; + /** +

+ @attr description + Reference to a Transition XML resource defining the desired Transition + used to move Views out of the scene when the Window is + preparing to close. Corresponds to + {@link android.view.Window#setReturnTransition(android.transition.Transition)}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowReturnTransition}. + @attr name android:windowReturnTransition + */ + public static final int Theme_windowReturnTransition = 253; + /** +

+ @attr description + Reference to a Transition XML resource defining the desired Transition + used to move shared elements transferred into the Window's initial content Scene. + Corresponds to {@link android.view.Window#setSharedElementEnterTransition( + android.transition.Transition)}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowSharedElementEnterTransition}. + @attr name android:windowSharedElementEnterTransition + */ + public static final int Theme_windowSharedElementEnterTransition = 232; + /** +

+ @attr description + Reference to a Transition XML resource defining the desired Transition + used when starting a new Activity to move shared elements prior to transferring + to the called Activity. + Corresponds to {@link android.view.Window#setSharedElementExitTransition( + android.transition.Transition)}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowSharedElementExitTransition}. + @attr name android:windowSharedElementExitTransition + */ + public static final int Theme_windowSharedElementExitTransition = 233; + /** +

+ @attr description + Reference to a Transition XML resource defining the desired Transition + used for shared elements transferred back to a calling Activity. + Corresponds to {@link android.view.Window#setSharedElementReenterTransition( + android.transition.Transition)}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowSharedElementReenterTransition}. + @attr name android:windowSharedElementReenterTransition + */ + public static final int Theme_windowSharedElementReenterTransition = 256; + /** +

+ @attr description + Reference to a Transition XML resource defining the desired Transition + used to move shared elements transferred back to a calling Activity. + Corresponds to {@link android.view.Window#setSharedElementReturnTransition( + android.transition.Transition)}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowSharedElementReturnTransition}. + @attr name android:windowSharedElementReturnTransition + */ + public static final int Theme_windowSharedElementReturnTransition = 255; + /** +

+ @attr description + Indicates whether or not shared elements should use an overlay + during transitions. The default value is true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowSharedElementsUseOverlay}. + @attr name android:windowSharedElementsUseOverlay + */ + public static final int Theme_windowSharedElementsUseOverlay = 257; + /** +

+ @attr description + Flag indicating that this window's background should be the + user's current wallpaper. Corresponds + to {@link android.view.WindowManager.LayoutParams#FLAG_SHOW_WALLPAPER}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowShowWallpaper}. + @attr name android:windowShowWallpaper + */ + public static final int Theme_windowShowWallpaper = 114; + /** +

+ @attr description + Defines the default soft input state that this window would + like when it is displayed. Corresponds + to {@link android.view.WindowManager.LayoutParams#softInputMode}. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
stateUnspecified0 Not specified, use what the system thinks is best. This + is the default.
stateUnchanged1 Leave the soft input window as-is, in whatever state it + last was.
stateHidden2 Make the soft input area hidden when normally appropriate + (when the user is navigating forward to your window).
stateAlwaysHidden3 Always make the soft input area hidden when this window + has input focus.
stateVisible4 Make the soft input area visible when normally appropriate + (when the user is navigating forward to your window).
stateAlwaysVisible5 Always make the soft input area visible when this window + has input focus.
adjustUnspecified0x00 The window resize/pan adjustment has not been specified, + the system will automatically select between resize and pan + modes, depending + on whether the content of the window has any layout views + that can scroll their contents. If there is such a view, + then the window will be resized, with the assumption being + that the resizeable area can be reduced to make room for + the input UI.
adjustResize0x10 Always resize the window: the content area of the window is + reduced to make room for the soft input area.
adjustPan0x20 Don't resize the window to make room for the soft input area; + instead pan the contents of the window as focus moves inside + of it so that the user can see what they are typing. This is + generally less desireable than panning because the user may + need to close the input area to get at and interact with + parts of the window.
adjustNothing0x30 Don't resize or pan the window to make room for the + soft input area; the window is never adjusted for it.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowSoftInputMode}. + @attr name android:windowSoftInputMode + */ + public static final int Theme_windowSoftInputMode = 108; + /** +

+ @attr description + Flag to indicate that a window can be swiped away to be dismissed. + Corresponds to {@link android.view.Window#FEATURE_SWIPE_TO_DISMISS}. It will also + dynamically change translucency of the window, if the windowIsTranslucent is not set. + If windowIsTranslucent is set (to either true or false) it will obey that setting. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowSwipeToDismiss}. + @attr name android:windowSwipeToDismiss + */ + public static final int Theme_windowSwipeToDismiss = 218; + /** +

+ @attr description + The style resource to use for a window's title area. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowTitleBackgroundStyle}. + @attr name android:windowTitleBackgroundStyle + */ + public static final int Theme_windowTitleBackgroundStyle = 44; + /** +

+ @attr description + The style resource to use for a window's title bar height. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowTitleSize}. + @attr name android:windowTitleSize + */ + public static final int Theme_windowTitleSize = 42; + /** +

+ @attr description + The style resource to use for a window's title text. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowTitleStyle}. + @attr name android:windowTitleStyle + */ + public static final int Theme_windowTitleStyle = 43; + /** +

+ @attr description + The duration, in milliseconds, of the window background fade duration + when transitioning into or away from an Activity when called with an + Activity Transition. Corresponds to + {@link android.view.Window#setTransitionBackgroundFadeDuration(long)}. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowTransitionBackgroundFadeDuration}. + @attr name android:windowTransitionBackgroundFadeDuration + */ + public static final int Theme_windowTransitionBackgroundFadeDuration = 240; + /** +

+ @attr description + Flag indicating whether this window requests a translucent navigation bar. Corresponds + to {@link android.view.WindowManager.LayoutParams#FLAG_TRANSLUCENT_NAVIGATION}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowTranslucentNavigation}. + @attr name android:windowTranslucentNavigation + */ + public static final int Theme_windowTranslucentNavigation = 217; + /** +

+ @attr description + Flag indicating whether this window requests a translucent status bar. Corresponds + to {@link android.view.WindowManager.LayoutParams#FLAG_TRANSLUCENT_STATUS}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowTranslucentStatus}. + @attr name android:windowTranslucentStatus + */ + public static final int Theme_windowTranslucentStatus = 216; + /** +

+ @attr description + Default style for YesNoPreference. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#yesNoPreferenceStyle}. + @attr name android:yesNoPreferenceStyle + */ + public static final int Theme_yesNoPreferenceStyle = 88; + /** Attributes that can be used with a TimePicker. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TimePicker_amPmBackgroundColor android:amPmBackgroundColor} The background color state list for the AM/PM selectors.
{@link #TimePicker_amPmTextColor android:amPmTextColor} The color for the AM/PM selectors.
{@link #TimePicker_headerAmPmTextAppearance android:headerAmPmTextAppearance} The text appearance for the AM/PM header.
{@link #TimePicker_headerBackground android:headerBackground} The background for the header containing the currently selected time.
{@link #TimePicker_headerTextColor android:headerTextColor} The text color for the selected time header text, ex.
{@link #TimePicker_headerTimeTextAppearance android:headerTimeTextAppearance} The text appearance for the time header.
{@link #TimePicker_internalLayout android:internalLayout} @hide The layout of the time picker.
{@link #TimePicker_legacyLayout android:legacyLayout} @hide The layout of the legacy time picker.
{@link #TimePicker_numbersBackgroundColor android:numbersBackgroundColor} The background color for the hours/minutes numbers.
{@link #TimePicker_numbersInnerTextColor android:numbersInnerTextColor} The color for the inner hours numbers used in 24-hour mode.
{@link #TimePicker_numbersSelectorColor android:numbersSelectorColor} The color for the hours/minutes selector.
{@link #TimePicker_numbersTextColor android:numbersTextColor} The color for the hours/minutes numbers.
{@link #TimePicker_timePickerMode android:timePickerMode} Defines the look of the widget.
+ @see #TimePicker_amPmBackgroundColor + @see #TimePicker_amPmTextColor + @see #TimePicker_headerAmPmTextAppearance + @see #TimePicker_headerBackground + @see #TimePicker_headerTextColor + @see #TimePicker_headerTimeTextAppearance + @see #TimePicker_internalLayout + @see #TimePicker_legacyLayout + @see #TimePicker_numbersBackgroundColor + @see #TimePicker_numbersInnerTextColor + @see #TimePicker_numbersSelectorColor + @see #TimePicker_numbersTextColor + @see #TimePicker_timePickerMode + */ + public static final int[] TimePicker = { + 0x0101012f, 0x0101049f, 0x010104a0, 0x010104a1, + 0x010104a2, 0x010104a3, 0x010104a4, 0x010104a5, + 0x010104b4, 0x010104e1, 0x01160061, 0x01160062, + 0x01160076 + }; + /** +

+ @attr description + The background color state list for the AM/PM selectors. + {@deprecated Use headerBackground instead.} + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#amPmBackgroundColor}. + @attr name android:amPmBackgroundColor + */ + @Deprecated + public static final int TimePicker_amPmBackgroundColor = 7; + /** +

+ @attr description + The color for the AM/PM selectors. + {@deprecated Use headerTextColor instead.} + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#amPmTextColor}. + @attr name android:amPmTextColor + */ + @Deprecated + public static final int TimePicker_amPmTextColor = 6; + /** +

+ @attr description + The text appearance for the AM/PM header. + @deprecated Use headerTextColor instead. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#headerAmPmTextAppearance}. + @attr name android:headerAmPmTextAppearance + */ + @Deprecated + public static final int TimePicker_headerAmPmTextAppearance = 2; + /** +

+ @attr description + The background for the header containing the currently selected time. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#headerBackground}. + @attr name android:headerBackground + */ + public static final int TimePicker_headerBackground = 0; + /** +

+ @attr description + The text color for the selected time header text, ex. "12" or + "PM". This should be a color state list where the activated state + will be used when the minute picker or hour picker is active. +

This is a private symbol. + @attr name com.android.internal:headerTextColor + */ + public static final int TimePicker_headerTextColor = 11; + /** +

+ @attr description + The text appearance for the time header. + @deprecated Use headerTextColor instead. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#headerTimeTextAppearance}. + @attr name android:headerTimeTextAppearance + */ + @Deprecated + public static final int TimePicker_headerTimeTextAppearance = 1; + /** +

+ @attr description + @hide The layout of the time picker. +

This is a private symbol. + @attr name com.android.internal:internalLayout + */ + public static final int TimePicker_internalLayout = 10; + /** +

+ @attr description + @hide The layout of the legacy time picker. +

This is a private symbol. + @attr name com.android.internal:legacyLayout + */ + public static final int TimePicker_legacyLayout = 12; + /** +

+ @attr description + The background color for the hours/minutes numbers. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#numbersBackgroundColor}. + @attr name android:numbersBackgroundColor + */ + public static final int TimePicker_numbersBackgroundColor = 4; + /** +

+ @attr description + The color for the inner hours numbers used in 24-hour mode. This + should be a color state list where the activated state will be + used when the number is active. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#numbersInnerTextColor}. + @attr name android:numbersInnerTextColor + */ + public static final int TimePicker_numbersInnerTextColor = 9; + /** +

+ @attr description + The color for the hours/minutes selector. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#numbersSelectorColor}. + @attr name android:numbersSelectorColor + */ + public static final int TimePicker_numbersSelectorColor = 5; + /** +

+ @attr description + The color for the hours/minutes numbers. This should be a color + state list where the activated state will be used when the number + is active. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#numbersTextColor}. + @attr name android:numbersTextColor + */ + public static final int TimePicker_numbersTextColor = 3; + /** +

+ @attr description + Defines the look of the widget. Prior to the L release, the only choice was + spinner. As of L, with the Material theme selected, the default layout is clock, + but this attribute can be used to force spinner to be used instead. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
spinner1 Time picker with spinner controls to select the time.
clock2 Time picker with clock face to select the time.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#timePickerMode}. + @attr name android:timePickerMode + */ + public static final int TimePicker_timePickerMode = 8; + /** Attributes that can be used with a ToggleButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ToggleButton_disabledAlpha android:disabledAlpha} The alpha to apply to the indicator when disabled.
{@link #ToggleButton_textOff android:textOff} The text for the button when it is not checked.
{@link #ToggleButton_textOn android:textOn} The text for the button when it is checked.
+ @see #ToggleButton_disabledAlpha + @see #ToggleButton_textOff + @see #ToggleButton_textOn + */ + public static final int[] ToggleButton = { + 0x01010033, 0x01010124, 0x01010125 + }; + /** +

+ @attr description + The alpha to apply to the indicator when disabled. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#disabledAlpha}. + @attr name android:disabledAlpha + */ + public static final int ToggleButton_disabledAlpha = 0; + /** +

+ @attr description + The text for the button when it is not checked. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textOff}. + @attr name android:textOff + */ + public static final int ToggleButton_textOff = 2; + /** +

+ @attr description + The text for the button when it is checked. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textOn}. + @attr name android:textOn + */ + public static final int ToggleButton_textOn = 1; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_buttonGravity android:buttonGravity}
{@link #Toolbar_collapseContentDescription android:collapseContentDescription} Text to set as the content description for the collapse button.
{@link #Toolbar_collapseIcon android:collapseIcon} Icon drawable to use for the collapse button.
{@link #Toolbar_contentInsetEnd android:contentInsetEnd} Minimum inset for content views within a bar.
{@link #Toolbar_contentInsetLeft android:contentInsetLeft} Minimum inset for content views within a bar.
{@link #Toolbar_contentInsetRight android:contentInsetRight} Minimum inset for content views within a bar.
{@link #Toolbar_contentInsetStart android:contentInsetStart} Minimum inset for content views within a bar.
{@link #Toolbar_gravity android:gravity} Specifies how an object should position its content, on both the X and Y axes, + within its own bounds.
{@link #Toolbar_logo android:logo} Drawable to set as the logo that appears at the starting side of + the Toolbar, just after the navigation button.
{@link #Toolbar_logoDescription android:logoDescription} A content description string to describe the appearance of the + associated logo image.
{@link #Toolbar_maxButtonHeight android:maxButtonHeight}
{@link #Toolbar_navigationButtonStyle android:navigationButtonStyle}
{@link #Toolbar_navigationContentDescription android:navigationContentDescription} Text to set as the content description for the navigation button + located at the start of the toolbar.
{@link #Toolbar_navigationIcon android:navigationIcon} Icon drawable to use for the navigation button located at + the start of the toolbar.
{@link #Toolbar_popupTheme android:popupTheme} Reference to a theme that should be used to inflate popups + shown by widgets in the toolbar.
{@link #Toolbar_subtitle android:subtitle} Specifies subtitle text used for navigationMode="normal"
{@link #Toolbar_subtitleTextAppearance android:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor android:subtitleTextColor} A color to apply to the subtitle string.
{@link #Toolbar_title android:title} The title associated with the item.
{@link #Toolbar_titleMarginBottom android:titleMarginBottom}
{@link #Toolbar_titleMarginEnd android:titleMarginEnd}
{@link #Toolbar_titleMarginStart android:titleMarginStart}
{@link #Toolbar_titleMarginTop android:titleMarginTop}
{@link #Toolbar_titleMargins android:titleMargins}
{@link #Toolbar_titleTextAppearance android:titleTextAppearance}
{@link #Toolbar_titleTextColor android:titleTextColor} A color to apply to the title string.
+ @see #Toolbar_buttonGravity + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_gravity + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationButtonStyle + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x010101e1, 0x010102be, 0x010102d1, + 0x0101042e, 0x0101042f, 0x01010453, 0x01010454, + 0x01010455, 0x01010456, 0x010104a9, 0x010104c0, + 0x010104c1, 0x010104d0, 0x010104e3, 0x010104e4, + 0x010104e9, 0x011600a8, 0x011600a9, 0x011600aa, + 0x011600ab, 0x011600ac, 0x011600ad, 0x011600ae, + 0x011600af, 0x011600b0 + }; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#buttonGravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name com.android.internal:buttonGravity + */ + public static final int Toolbar_buttonGravity = 24; + /** +

+ @attr description + Text to set as the content description for the collapse button. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#collapseContentDescription}. + @attr name android:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 13; + /** +

+ @attr description + Icon drawable to use for the collapse button. +

This is a private symbol. + @attr name com.android.internal:collapseIcon + */ + public static final int Toolbar_collapseIcon = 25; + /** +

+ @attr description + Minimum inset for content views within a bar. Navigation buttons and + menu views are excepted. Only valid for some themes and configurations. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#contentInsetEnd}. + @attr name android:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 7; + /** +

+ @attr description + Minimum inset for content views within a bar. Navigation buttons and + menu views are excepted. Only valid for some themes and configurations. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#contentInsetLeft}. + @attr name android:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 8; + /** +

+ @attr description + Minimum inset for content views within a bar. Navigation buttons and + menu views are excepted. Only valid for some themes and configurations. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#contentInsetRight}. + @attr name android:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 9; + /** +

+ @attr description + Minimum inset for content views within a bar. Navigation buttons and + menu views are excepted. Only valid for some themes and configurations. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#contentInsetStart}. + @attr name android:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 6; + /** +

+ @attr description + Specifies how an object should position its content, on both the X and Y axes, + within its own bounds. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#gravity}. + @attr name android:gravity + */ + public static final int Toolbar_gravity = 0; + /** +

+ @attr description + Drawable to set as the logo that appears at the starting side of + the Toolbar, just after the navigation button. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#logo}. + @attr name android:logo + */ + public static final int Toolbar_logo = 2; + /** +

+ @attr description + A content description string to describe the appearance of the + associated logo image. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#logoDescription}. + @attr name android:logoDescription + */ + public static final int Toolbar_logoDescription = 16; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name com.android.internal:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 22; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#navigationButtonStyle} + attribute's value can be found in the {@link #Toolbar} array. + @attr name com.android.internal:navigationButtonStyle + */ + public static final int Toolbar_navigationButtonStyle = 23; + /** +

+ @attr description + Text to set as the content description for the navigation button + located at the start of the toolbar. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#navigationContentDescription}. + @attr name android:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 12; + /** +

+ @attr description + Icon drawable to use for the navigation button located at + the start of the toolbar. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#navigationIcon}. + @attr name android:navigationIcon + */ + public static final int Toolbar_navigationIcon = 11; + /** +

+ @attr description + Reference to a theme that should be used to inflate popups + shown by widgets in the toolbar. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#popupTheme}. + @attr name android:popupTheme + */ + public static final int Toolbar_popupTheme = 10; + /** +

+ @attr description + Specifies subtitle text used for navigationMode="normal" + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#subtitle}. + @attr name android:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link android.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 5; + /** +

+ @attr description + A color to apply to the subtitle string. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#subtitleTextColor}. + @attr name android:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 15; + /** +

+ @attr description + The title associated with the item. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#title}. + @attr name android:title + */ + public static final int Toolbar_title = 1; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + @attr name com.android.internal:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 21; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + @attr name com.android.internal:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 19; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + @attr name com.android.internal:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 18; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + @attr name com.android.internal:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 20; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + @attr name com.android.internal:titleMargins + */ + public static final int Toolbar_titleMargins = 17; + /** +

This symbol is the offset where the {@link android.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 4; + /** +

+ @attr description + A color to apply to the title string. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#titleTextColor}. + @attr name android:titleTextColor + */ + public static final int Toolbar_titleTextColor = 14; + /** Attributes that can be used with a Toolbar_LayoutParams. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #Toolbar_LayoutParams_layout_gravity android:layout_gravity} Standard gravity constant that a child supplies to its parent.
+ @see #Toolbar_LayoutParams_layout_gravity + */ + public static final int[] Toolbar_LayoutParams = { + 0x010100b3 + }; + /** +

+ @attr description + Standard gravity constant that a child supplies to its parent. + Defines how the child view should be positioned, on both the X and Y axes, within its enclosing layout. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
start0x00800003 Push object to the beginning of its container, not changing its size.
end0x00800005 Push object to the end of its container, not changing its size.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_gravity}. + @attr name android:layout_gravity + */ + public static final int Toolbar_LayoutParams_layout_gravity = 0; + /** Use specific transition subclass names as the root tag of the XML resource that + describes a {@link android.transition.Transition Transition}, + such as changeBounds, fade, and transitionSet. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #Transition_duration android:duration} Amount of time (in milliseconds) that the transition should run.
{@link #Transition_interpolator android:interpolator} Interpolator to be used in the animations spawned by this transition.
{@link #Transition_matchOrder android:matchOrder} The match order to use for the transition.
{@link #Transition_startDelay android:startDelay} Delay in milliseconds before the transition starts.
+ @see #Transition_duration + @see #Transition_interpolator + @see #Transition_matchOrder + @see #Transition_startDelay + */ + public static final int[] Transition = { + 0x01010141, 0x01010198, 0x010103e2, 0x0101044f + }; + /** +

+ @attr description + Amount of time (in milliseconds) that the transition should run. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#duration}. + @attr name android:duration + */ + public static final int Transition_duration = 1; + /** +

+ @attr description + Interpolator to be used in the animations spawned by this transition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#interpolator}. + @attr name android:interpolator + */ + public static final int Transition_interpolator = 0; + /** +

+ @attr description + The match order to use for the transition. This is a comma-separated + list of values, containing one or more of the following: + id, itemId, name, instance. These correspond to + {@link android.transition.Transition#MATCH_ID}, + {@link android.transition.Transition#MATCH_ITEM_ID}, + {@link android.transition.Transition#MATCH_NAME}, and + {@link android.transition.Transition#MATCH_INSTANCE}, respectively. + This corresponds to {@link android.transition.Transition#setMatchOrder(int...)}. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#matchOrder}. + @attr name android:matchOrder + */ + public static final int Transition_matchOrder = 3; + /** +

+ @attr description + Delay in milliseconds before the transition starts. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#startDelay}. + @attr name android:startDelay + */ + public static final int Transition_startDelay = 2; + /** Use transitionManager as the root tag of the XML resource that + describes a {@link android.transition.TransitionManager + TransitionManager}. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TransitionManager_fromScene android:fromScene} The originating scene in this scene change.
{@link #TransitionManager_toScene android:toScene} The destination scene in this scene change.
{@link #TransitionManager_transition android:transition} The id of a transition to be used in a particular scene change.
+ @see #TransitionManager_fromScene + @see #TransitionManager_toScene + @see #TransitionManager_transition + */ + public static final int[] TransitionManager = { + 0x010103dd, 0x010103de, 0x010103df + }; + /** +

+ @attr description + The originating scene in this scene change. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fromScene}. + @attr name android:fromScene + */ + public static final int TransitionManager_fromScene = 0; + /** +

+ @attr description + The destination scene in this scene change. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#toScene}. + @attr name android:toScene + */ + public static final int TransitionManager_toScene = 1; + /** +

+ @attr description + The id of a transition to be used in a particular scene change. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#transition}. + @attr name android:transition + */ + public static final int TransitionManager_transition = 2; + /** Use set as the root tag of the XML resource that + describes a {@link android.transition.TransitionSet + TransitionSet} transition. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #TransitionSet_transitionOrdering android:transitionOrdering}
+ @see #TransitionSet_transitionOrdering + */ + public static final int[] TransitionSet = { + 0x010103e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#transitionOrdering} + attribute's value can be found in the {@link #TransitionSet} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
together0 child transitions should be played together.
sequential1 child transitions should be played sequentially, in the same order + as the xml.
+ @attr name android:transitionOrdering + */ + public static final int TransitionSet_transitionOrdering = 0; + /** Use target as the root tag of the XML resource that + describes a {@link android.transition.Transition#addTarget(int) + targetId} of a transition. There can be one or more targets inside + a targets tag, which is itself inside an appropriate + {@link android.R.styleable#Transition Transition} tag. + +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #TransitionTarget_excludeClass android:excludeClass} The fully-qualified name of the Class to exclude from this transition.
{@link #TransitionTarget_excludeId android:excludeId} The id of a target to exclude from this transition.
{@link #TransitionTarget_excludeName android:excludeName} The transitionName of the target to exclude from this transition.
{@link #TransitionTarget_targetClass android:targetClass} The fully-qualified name of the Class to include in this transition.
{@link #TransitionTarget_targetId android:targetId} The id of a target on which this transition will animate changes.
{@link #TransitionTarget_targetName android:targetName} The transitionName of the target on which this transition will animation changes.
+ @see #TransitionTarget_excludeClass + @see #TransitionTarget_excludeId + @see #TransitionTarget_excludeName + @see #TransitionTarget_targetClass + @see #TransitionTarget_targetId + @see #TransitionTarget_targetName + */ + public static final int[] TransitionTarget = { + 0x0101002f, 0x010103dc, 0x01010441, 0x01010442, + 0x0101044d, 0x0101044e + }; + /** +

+ @attr description + The fully-qualified name of the Class to exclude from this transition. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#excludeClass}. + @attr name android:excludeClass + */ + public static final int TransitionTarget_excludeClass = 3; + /** +

+ @attr description + The id of a target to exclude from this transition. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#excludeId}. + @attr name android:excludeId + */ + public static final int TransitionTarget_excludeId = 2; + /** +

+ @attr description + The transitionName of the target to exclude from this transition. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#excludeName}. + @attr name android:excludeName + */ + public static final int TransitionTarget_excludeName = 5; + /** +

+ @attr description + The fully-qualified name of the Class to include in this transition. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#targetClass}. + @attr name android:targetClass + */ + public static final int TransitionTarget_targetClass = 0; + /** +

+ @attr description + The id of a target on which this transition will animate changes. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#targetId}. + @attr name android:targetId + */ + public static final int TransitionTarget_targetId = 1; + /** +

+ @attr description + The transitionName of the target on which this transition will animation changes. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#targetName}. + @attr name android:targetName + */ + public static final int TransitionTarget_targetName = 4; + /** Attributes that can be used with a TranslateAnimation. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #TranslateAnimation_fromXDelta android:fromXDelta}
{@link #TranslateAnimation_fromYDelta android:fromYDelta}
{@link #TranslateAnimation_toXDelta android:toXDelta}
{@link #TranslateAnimation_toYDelta android:toYDelta}
+ @see #TranslateAnimation_fromXDelta + @see #TranslateAnimation_fromYDelta + @see #TranslateAnimation_toXDelta + @see #TranslateAnimation_toYDelta + */ + public static final int[] TranslateAnimation = { + 0x010101c6, 0x010101c7, 0x010101c8, 0x010101c9 + }; + /** +

This symbol is the offset where the {@link android.R.attr#fromXDelta} + attribute's value can be found in the {@link #TranslateAnimation} array. + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:fromXDelta + */ + public static final int TranslateAnimation_fromXDelta = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fromYDelta} + attribute's value can be found in the {@link #TranslateAnimation} array. + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:fromYDelta + */ + public static final int TranslateAnimation_fromYDelta = 2; + /** +

This symbol is the offset where the {@link android.R.attr#toXDelta} + attribute's value can be found in the {@link #TranslateAnimation} array. + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:toXDelta + */ + public static final int TranslateAnimation_toXDelta = 1; + /** +

This symbol is the offset where the {@link android.R.attr#toYDelta} + attribute's value can be found in the {@link #TranslateAnimation} array. + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:toYDelta + */ + public static final int TranslateAnimation_toYDelta = 3; + /** Use trust-agent as the root tag of the XML resource that + describes an {@link android.service.trust.TrustAgentService}, which is + referenced from its {@link android.service.trust.TrustAgentService#TRUST_AGENT_META_DATA} + meta-data entry. Described here are the attributes that can be included in that tag. + @hide +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TrustAgent_settingsActivity android:settingsActivity} @SystemApi Component name of an activity that allows the user to modify + the settings for this trust agent.
{@link #TrustAgent_summary android:summary} @SystemApi Summary for the same preference as the title.
{@link #TrustAgent_title android:title} @SystemApi Title for a preference that allows that user to launch the + activity to modify trust agent settings.
+ @see #TrustAgent_settingsActivity + @see #TrustAgent_summary + @see #TrustAgent_title + */ + @android.annotation.SystemApi + public static final int[] TrustAgent = { + 0x010101e1, 0x010101e9, 0x01010225 + }; + /** +

+ @attr description + Component name of an activity that allows the user to modify + the settings for this trust agent. @hide + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#settingsActivity}. + @attr name android:settingsActivity + */ + @android.annotation.SystemApi + public static final int TrustAgent_settingsActivity = 2; + /** +

+ @attr description + Summary for the same preference as the title. @hide + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#summary}. + @attr name android:summary + */ + @android.annotation.SystemApi + public static final int TrustAgent_summary = 1; + /** +

+ @attr description + Title for a preference that allows that user to launch the + activity to modify trust agent settings. @hide + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#title}. + @attr name android:title + */ + @android.annotation.SystemApi + public static final int TrustAgent_title = 0; + /** Use tv-input as the root tag of the XML resource that describes a + {@link android.media.tv.TvInputService}, which is referenced from its + {@link android.media.tv.TvInputService#SERVICE_META_DATA} meta-data entry. + Described here are the attributes that can be included in that tag. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #TvInputService_settingsActivity android:settingsActivity} Component name of an activity that allows the user to modify + the settings for this service.
{@link #TvInputService_setupActivity android:setupActivity} Component name of an activity for setup of this service.
+ @see #TvInputService_settingsActivity + @see #TvInputService_setupActivity + */ + public static final int[] TvInputService = { + 0x01010225, 0x010103f6 + }; + /** +

+ @attr description + Component name of an activity that allows the user to modify + the settings for this service. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#settingsActivity}. + @attr name android:settingsActivity + */ + public static final int TvInputService_settingsActivity = 0; + /** +

+ @attr description + Component name of an activity for setup of this service. + The setup includes scanning channels and registering EPG data. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#setupActivity}. + @attr name android:setupActivity + */ + public static final int TvInputService_setupActivity = 1; + /** Attributes that can be used with a TwoLineListItem. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #TwoLineListItem_mode android:mode}
+ @see #TwoLineListItem_mode + */ + public static final int[] TwoLineListItem = { + 0x0101017e + }; + /** +

This symbol is the offset where the {@link android.R.attr#mode} + attribute's value can be found in the {@link #TwoLineListItem} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
oneLine1 Always show only the first line.
collapsing2 When selected show both lines, otherwise show only the first line. + This is the default mode.
twoLine3 Always show both lines.
+ @attr name android:mode + */ + public static final int TwoLineListItem_mode = 0; + /** Drawable used to draw vector paths. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #VectorDrawable_alpha android:alpha} The opacity of the whole vector drawable, as a value between 0 + (completely transparent) and 1 (completely opaque).
{@link #VectorDrawable_autoMirrored android:autoMirrored} Indicates if the drawable needs to be mirrored when its layout direction is + RTL (right-to-left).
{@link #VectorDrawable_height android:height} The intrinsic height of the Vector Drawable.
{@link #VectorDrawable_name android:name} The name of this vector drawable
{@link #VectorDrawable_opticalInsetBottom android:opticalInsetBottom} Bottom optical inset.
{@link #VectorDrawable_opticalInsetLeft android:opticalInsetLeft} Left optical inset.
{@link #VectorDrawable_opticalInsetRight android:opticalInsetRight} Right optical inset.
{@link #VectorDrawable_opticalInsetTop android:opticalInsetTop} Top optical inset.
{@link #VectorDrawable_tint android:tint} If set, specifies the color to apply to the drawable as a tint.
{@link #VectorDrawable_tintMode android:tintMode} When a tint color is set, specifies its Porter-Duff blending mode.
{@link #VectorDrawable_viewportHeight android:viewportHeight} The height of the canvas the drawing is on.
{@link #VectorDrawable_viewportWidth android:viewportWidth} The width of the canvas the drawing is on.
{@link #VectorDrawable_width android:width} The intrinsic width of the Vector Drawable.
+ @see #VectorDrawable_alpha + @see #VectorDrawable_autoMirrored + @see #VectorDrawable_height + @see #VectorDrawable_name + @see #VectorDrawable_opticalInsetBottom + @see #VectorDrawable_opticalInsetLeft + @see #VectorDrawable_opticalInsetRight + @see #VectorDrawable_opticalInsetTop + @see #VectorDrawable_tint + @see #VectorDrawable_tintMode + @see #VectorDrawable_viewportHeight + @see #VectorDrawable_viewportWidth + @see #VectorDrawable_width + */ + public static final int[] VectorDrawable = { + 0x01010003, 0x01010121, 0x01010155, 0x01010159, + 0x0101031f, 0x010103ea, 0x010103fb, 0x01010402, + 0x01010403, 0x01160079, 0x0116007a, 0x0116007b, + 0x0116007c + }; + /** +

+ @attr description + The opacity of the whole vector drawable, as a value between 0 + (completely transparent) and 1 (completely opaque). + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#alpha}. + @attr name android:alpha + */ + public static final int VectorDrawable_alpha = 4; + /** +

+ @attr description + Indicates if the drawable needs to be mirrored when its layout direction is + RTL (right-to-left). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#autoMirrored}. + @attr name android:autoMirrored + */ + public static final int VectorDrawable_autoMirrored = 5; + /** +

+ @attr description + The intrinsic height of the Vector Drawable. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#height}. + @attr name android:height + */ + public static final int VectorDrawable_height = 2; + /** +

+ @attr description + The name of this vector drawable + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int VectorDrawable_name = 0; + /** +

+ @attr description + Bottom optical inset. + @hide Until optical insets are fully supported. +

This is a private symbol. + @attr name com.android.internal:opticalInsetBottom + */ + public static final int VectorDrawable_opticalInsetBottom = 12; + /** +

+ @attr description + Left optical inset. + @hide Until optical insets are fully supported. +

This is a private symbol. + @attr name com.android.internal:opticalInsetLeft + */ + public static final int VectorDrawable_opticalInsetLeft = 9; + /** +

+ @attr description + Right optical inset. + @hide Until optical insets are fully supported. +

This is a private symbol. + @attr name com.android.internal:opticalInsetRight + */ + public static final int VectorDrawable_opticalInsetRight = 11; + /** +

+ @attr description + Top optical inset. + @hide Until optical insets are fully supported. +

This is a private symbol. + @attr name com.android.internal:opticalInsetTop + */ + public static final int VectorDrawable_opticalInsetTop = 10; + /** +

+ @attr description + If set, specifies the color to apply to the drawable as a tint. By default, + no tint is applied. May be a color state list. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tint}. + @attr name android:tint + */ + public static final int VectorDrawable_tint = 1; + /** +

+ @attr description + When a tint color is set, specifies its Porter-Duff blending mode. The + default value is src_in, which treats the drawable as an alpha mask. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#tintMode}. + @attr name android:tintMode + */ + public static final int VectorDrawable_tintMode = 6; + /** +

+ @attr description + The height of the canvas the drawing is on. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#viewportHeight}. + @attr name android:viewportHeight + */ + public static final int VectorDrawable_viewportHeight = 8; + /** +

+ @attr description + The width of the canvas the drawing is on. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#viewportWidth}. + @attr name android:viewportWidth + */ + public static final int VectorDrawable_viewportWidth = 7; + /** +

+ @attr description + The intrinsic width of the Vector Drawable. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#width}. + @attr name android:width + */ + public static final int VectorDrawable_width = 3; + /** Defines the clip path used in VectorDrawables. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #VectorDrawableClipPath_name android:name} The Name of this path
{@link #VectorDrawableClipPath_pathData android:pathData} The specification of the operations that define the path
+ @see #VectorDrawableClipPath_name + @see #VectorDrawableClipPath_pathData + */ + public static final int[] VectorDrawableClipPath = { + 0x01010003, 0x01010405 + }; + /** +

+ @attr description + The Name of this path + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int VectorDrawableClipPath_name = 0; + /** +

+ @attr description + The specification of the operations that define the path + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#pathData}. + @attr name android:pathData + */ + public static final int VectorDrawableClipPath_pathData = 1; + /** Defines the group used in VectorDrawables. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #VectorDrawableGroup_name android:name} The name of this group
{@link #VectorDrawableGroup_pivotX android:pivotX} The X coordinate of the center of rotation of a group
{@link #VectorDrawableGroup_pivotY android:pivotY} The Y coordinate of the center of rotation of a group
{@link #VectorDrawableGroup_rotation android:rotation} The amount to rotate the group
{@link #VectorDrawableGroup_scaleX android:scaleX} The amount to scale the group on X coordinate
{@link #VectorDrawableGroup_scaleY android:scaleY} The amount to scale the group on X coordinate
{@link #VectorDrawableGroup_translateX android:translateX} The amount to translate the group on X coordinate
{@link #VectorDrawableGroup_translateY android:translateY} The amount to translate the group on Y coordinate
+ @see #VectorDrawableGroup_name + @see #VectorDrawableGroup_pivotX + @see #VectorDrawableGroup_pivotY + @see #VectorDrawableGroup_rotation + @see #VectorDrawableGroup_scaleX + @see #VectorDrawableGroup_scaleY + @see #VectorDrawableGroup_translateX + @see #VectorDrawableGroup_translateY + */ + public static final int[] VectorDrawableGroup = { + 0x01010003, 0x010101b5, 0x010101b6, 0x01010324, + 0x01010325, 0x01010326, 0x0101045a, 0x0101045b + }; + /** +

+ @attr description + The name of this group + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int VectorDrawableGroup_name = 0; + /** +

+ @attr description + The X coordinate of the center of rotation of a group + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#pivotX}. + @attr name android:pivotX + */ + public static final int VectorDrawableGroup_pivotX = 1; + /** +

+ @attr description + The Y coordinate of the center of rotation of a group + + +

May be a floating point value, such as "1.2". +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#pivotY}. + @attr name android:pivotY + */ + public static final int VectorDrawableGroup_pivotY = 2; + /** +

+ @attr description + The amount to rotate the group + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#rotation}. + @attr name android:rotation + */ + public static final int VectorDrawableGroup_rotation = 5; + /** +

+ @attr description + The amount to scale the group on X coordinate + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scaleX}. + @attr name android:scaleX + */ + public static final int VectorDrawableGroup_scaleX = 3; + /** +

+ @attr description + The amount to scale the group on X coordinate + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scaleY}. + @attr name android:scaleY + */ + public static final int VectorDrawableGroup_scaleY = 4; + /** +

+ @attr description + The amount to translate the group on X coordinate + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#translateX}. + @attr name android:translateX + */ + public static final int VectorDrawableGroup_translateX = 6; + /** +

+ @attr description + The amount to translate the group on Y coordinate + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#translateY}. + @attr name android:translateY + */ + public static final int VectorDrawableGroup_translateY = 7; + /** Defines the path used in VectorDrawables. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #VectorDrawablePath_fillAlpha android:fillAlpha} The alpha of the path fill, as a value between 0 (completely transparent) + and 1 (completely opaque)
{@link #VectorDrawablePath_fillColor android:fillColor} The color to fill the path if not defined implies no fill
{@link #VectorDrawablePath_name android:name} The name of this path
{@link #VectorDrawablePath_pathData android:pathData} The specification of the operations that define the path
{@link #VectorDrawablePath_strokeAlpha android:strokeAlpha} The opacity of a path stroke, as a value between 0 (completely transparent) + and 1 (completely opaque)
{@link #VectorDrawablePath_strokeColor android:strokeColor} The color to stroke the path if not defined implies no stroke
{@link #VectorDrawablePath_strokeLineCap android:strokeLineCap} sets the linecap for a stroked path
{@link #VectorDrawablePath_strokeLineJoin android:strokeLineJoin} sets the lineJoin for a stroked path
{@link #VectorDrawablePath_strokeMiterLimit android:strokeMiterLimit} sets the Miter limit for a stroked path
{@link #VectorDrawablePath_strokeWidth android:strokeWidth} The width a path stroke
{@link #VectorDrawablePath_trimPathEnd android:trimPathEnd} The fraction of the path to trim from the end from 0 to 1
{@link #VectorDrawablePath_trimPathOffset android:trimPathOffset} Shift trim region (allows visible region to include the start and end) from 0 to 1
{@link #VectorDrawablePath_trimPathStart android:trimPathStart} The fraction of the path to trim from the start from 0 to 1
+ @see #VectorDrawablePath_fillAlpha + @see #VectorDrawablePath_fillColor + @see #VectorDrawablePath_name + @see #VectorDrawablePath_pathData + @see #VectorDrawablePath_strokeAlpha + @see #VectorDrawablePath_strokeColor + @see #VectorDrawablePath_strokeLineCap + @see #VectorDrawablePath_strokeLineJoin + @see #VectorDrawablePath_strokeMiterLimit + @see #VectorDrawablePath_strokeWidth + @see #VectorDrawablePath_trimPathEnd + @see #VectorDrawablePath_trimPathOffset + @see #VectorDrawablePath_trimPathStart + */ + public static final int[] VectorDrawablePath = { + 0x01010003, 0x01010404, 0x01010405, 0x01010406, + 0x01010407, 0x01010408, 0x01010409, 0x0101040a, + 0x0101040b, 0x0101040c, 0x0101040d, 0x010104cb, + 0x010104cc + }; + /** +

+ @attr description + The alpha of the path fill, as a value between 0 (completely transparent) + and 1 (completely opaque) + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fillAlpha}. + @attr name android:fillAlpha + */ + public static final int VectorDrawablePath_fillAlpha = 12; + /** +

+ @attr description + The color to fill the path if not defined implies no fill + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fillColor}. + @attr name android:fillColor + */ + public static final int VectorDrawablePath_fillColor = 1; + /** +

+ @attr description + The name of this path + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#name}. + @attr name android:name + */ + public static final int VectorDrawablePath_name = 0; + /** +

+ @attr description + The specification of the operations that define the path + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#pathData}. + @attr name android:pathData + */ + public static final int VectorDrawablePath_pathData = 2; + /** +

+ @attr description + The opacity of a path stroke, as a value between 0 (completely transparent) + and 1 (completely opaque) + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#strokeAlpha}. + @attr name android:strokeAlpha + */ + public static final int VectorDrawablePath_strokeAlpha = 11; + /** +

+ @attr description + The color to stroke the path if not defined implies no stroke + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#strokeColor}. + @attr name android:strokeColor + */ + public static final int VectorDrawablePath_strokeColor = 3; + /** +

+ @attr description + sets the linecap for a stroked path + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
butt0
round1
square2
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#strokeLineCap}. + @attr name android:strokeLineCap + */ + public static final int VectorDrawablePath_strokeLineCap = 8; + /** +

+ @attr description + sets the lineJoin for a stroked path + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
miter0
round1
bevel2
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#strokeLineJoin}. + @attr name android:strokeLineJoin + */ + public static final int VectorDrawablePath_strokeLineJoin = 9; + /** +

+ @attr description + sets the Miter limit for a stroked path + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#strokeMiterLimit}. + @attr name android:strokeMiterLimit + */ + public static final int VectorDrawablePath_strokeMiterLimit = 10; + /** +

+ @attr description + The width a path stroke + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#strokeWidth}. + @attr name android:strokeWidth + */ + public static final int VectorDrawablePath_strokeWidth = 4; + /** +

+ @attr description + The fraction of the path to trim from the end from 0 to 1 + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#trimPathEnd}. + @attr name android:trimPathEnd + */ + public static final int VectorDrawablePath_trimPathEnd = 6; + /** +

+ @attr description + Shift trim region (allows visible region to include the start and end) from 0 to 1 + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#trimPathOffset}. + @attr name android:trimPathOffset + */ + public static final int VectorDrawablePath_trimPathOffset = 7; + /** +

+ @attr description + The fraction of the path to trim from the start from 0 to 1 + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#trimPathStart}. + @attr name android:trimPathStart + */ + public static final int VectorDrawablePath_trimPathStart = 5; + /** Attributes that can be used with a VerticalSlider_Layout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #VerticalSlider_Layout_layout_scale android:layout_scale}
+ @see #VerticalSlider_Layout_layout_scale + */ + public static final int[] VerticalSlider_Layout = { + 0x01010193 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_scale} + attribute's value can be found in the {@link #VerticalSlider_Layout} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:layout_scale + */ + public static final int VerticalSlider_Layout_layout_scale = 0; + /** Attributes that can be used with {@link android.view.View} or + any of its subclasses. Also see {@link #ViewGroup_Layout} for + attributes that are processed by the view's parent. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #View_accessibilityLiveRegion android:accessibilityLiveRegion} Indicates to accessibility services whether the user should be notified when + this view changes.
{@link #View_accessibilityTraversalAfter android:accessibilityTraversalAfter} Sets the id of a view after which this one is visited in accessibility traversal.
{@link #View_accessibilityTraversalBefore android:accessibilityTraversalBefore} Sets the id of a view before which this one is visited in accessibility traversal.
{@link #View_alpha android:alpha} alpha property of the view, as a value between 0 (completely transparent) and 1 + (completely opaque).
{@link #View_background android:background} A drawable to use as the background.
{@link #View_backgroundTint android:backgroundTint} Tint to apply to the background.
{@link #View_backgroundTintMode android:backgroundTintMode} Blending mode used to apply the background tint.
{@link #View_clickable android:clickable} Defines whether this view reacts to click events.
{@link #View_contentDescription android:contentDescription} Defines text that briefly describes content of the view.
{@link #View_contextClickable android:contextClickable} Defines whether this view reacts to context click events.
{@link #View_drawingCacheQuality android:drawingCacheQuality} Defines the quality of translucent drawing caches.
{@link #View_duplicateParentState android:duplicateParentState} When this attribute is set to true, the view gets its drawable state + (focused, pressed, etc.
{@link #View_elevation android:elevation} base z depth of the view
{@link #View_fadeScrollbars android:fadeScrollbars} Defines whether to fade out scrollbars when they are not in use.
{@link #View_fadingEdge android:fadingEdge} This attribute is deprecated and will be ignored as of + API level 14 ({@link android.os.Build.VERSION_CODES#ICE_CREAM_SANDWICH}).
{@link #View_fadingEdgeLength android:fadingEdgeLength} Defines the length of the fading edges.
{@link #View_filterTouchesWhenObscured android:filterTouchesWhenObscured} Specifies whether to filter touches when the view's window is obscured by + another visible window.
{@link #View_fitsSystemWindows android:fitsSystemWindows} Boolean internal attribute to adjust view layout based on + system windows such as the status bar.
{@link #View_focusable android:focusable} Boolean that controls whether a view can take focus.
{@link #View_focusableInTouchMode android:focusableInTouchMode} Boolean that controls whether a view can take focus while in touch mode.
{@link #View_foreground android:foreground} Defines the drawable to draw over the content.
{@link #View_foregroundGravity android:foregroundGravity} Defines the gravity to apply to the foreground drawable.
{@link #View_foregroundInsidePadding android:foregroundInsidePadding} Defines whether the foreground drawable should be drawn inside the padding.
{@link #View_foregroundTint android:foregroundTint} Tint to apply to the foreground.
{@link #View_foregroundTintMode android:foregroundTintMode} Blending mode used to apply the foreground tint.
{@link #View_hapticFeedbackEnabled android:hapticFeedbackEnabled} Boolean that controls whether a view should have haptic feedback + enabled for events such as long presses.
{@link #View_id android:id} Supply an identifier name for this view, to later retrieve it + with {@link android.view.View#findViewById View.findViewById()} or + {@link android.app.Activity#findViewById Activity.findViewById()}.
{@link #View_importantForAccessibility android:importantForAccessibility} Controls how this View is important for accessibility which is if it fires + accessibility events and if it is reported to accessibility services that + query the screen.
{@link #View_isScrollContainer android:isScrollContainer} Set this if the view will serve as a scrolling container, meaning + that it can be resized to shrink its overall window so that there + will be space for an input method.
{@link #View_keepScreenOn android:keepScreenOn} Controls whether the view's window should keep the screen on + while visible.
{@link #View_labelFor android:labelFor} Specifies the id of a view for which this view serves as a label for + accessibility purposes.
{@link #View_layerType android:layerType} Specifies the type of layer backing this view.
{@link #View_layoutDirection android:layoutDirection} Defines the direction of layout drawing.
{@link #View_longClickable android:longClickable} Defines whether this view reacts to long click events.
{@link #View_minHeight android:minHeight} Defines the minimum height of the view.
{@link #View_minWidth android:minWidth} Defines the minimum width of the view.
{@link #View_nestedScrollingEnabled android:nestedScrollingEnabled} Specifies that this view should permit nested scrolling within a compatible + ancestor view.
{@link #View_nextFocusDown android:nextFocusDown} Defines the next view to give focus to when the next focus is + {@link android.view.View#FOCUS_DOWN} + + If the reference refers to a view that does not exist or is part + of a hierarchy that is invisible, a {@link java.lang.RuntimeException} + will result when the reference is accessed.
{@link #View_nextFocusForward android:nextFocusForward} Defines the next view to give focus to when the next focus is + {@link android.view.View#FOCUS_FORWARD} + + If the reference refers to a view that does not exist or is part + of a hierarchy that is invisible, a {@link java.lang.RuntimeException} + will result when the reference is accessed.
{@link #View_nextFocusLeft android:nextFocusLeft} Defines the next view to give focus to when the next focus is + {@link android.view.View#FOCUS_LEFT}.
{@link #View_nextFocusRight android:nextFocusRight} Defines the next view to give focus to when the next focus is + {@link android.view.View#FOCUS_RIGHT} + + If the reference refers to a view that does not exist or is part + of a hierarchy that is invisible, a {@link java.lang.RuntimeException} + will result when the reference is accessed.
{@link #View_nextFocusUp android:nextFocusUp} Defines the next view to give focus to when the next focus is + {@link android.view.View#FOCUS_UP} + + If the reference refers to a view that does not exist or is part + of a hierarchy that is invisible, a {@link java.lang.RuntimeException} + will result when the reference is accessed.
{@link #View_onClick android:onClick} Name of the method in this View's context to invoke when the view is + clicked.
{@link #View_outlineProvider android:outlineProvider} ViewOutlineProvider used to determine the View's Outline.
{@link #View_overScrollMode android:overScrollMode} Defines over-scrolling behavior.
{@link #View_padding android:padding} Sets the padding, in pixels, of all four edges.
{@link #View_paddingBottom android:paddingBottom} Sets the padding, in pixels, of the bottom edge; see {@link android.R.attr#padding}.
{@link #View_paddingEnd android:paddingEnd} Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
{@link #View_paddingLeft android:paddingLeft} Sets the padding, in pixels, of the left edge; see {@link android.R.attr#padding}.
{@link #View_paddingRight android:paddingRight} Sets the padding, in pixels, of the right edge; see {@link android.R.attr#padding}.
{@link #View_paddingStart android:paddingStart} Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
{@link #View_paddingTop android:paddingTop} Sets the padding, in pixels, of the top edge; see {@link android.R.attr#padding}.
{@link #View_requiresFadingEdge android:requiresFadingEdge} Defines which edges should be faded on scrolling.
{@link #View_rotation android:rotation} rotation of the view, in degrees.
{@link #View_rotationX android:rotationX} rotation of the view around the x axis, in degrees.
{@link #View_rotationY android:rotationY} rotation of the view around the y axis, in degrees.
{@link #View_saveEnabled android:saveEnabled} If false, no state will be saved for this view when it is being + frozen.
{@link #View_scaleX android:scaleX} scale of the view in the x direction.
{@link #View_scaleY android:scaleY} scale of the view in the y direction.
{@link #View_scrollIndicators android:scrollIndicators} Defines which scroll indicators should be displayed when the view + can be scrolled.
{@link #View_scrollX android:scrollX} The initial horizontal scroll offset, in pixels.
{@link #View_scrollY android:scrollY} The initial vertical scroll offset, in pixels.
{@link #View_scrollbarAlwaysDrawHorizontalTrack android:scrollbarAlwaysDrawHorizontalTrack} Defines whether the horizontal scrollbar track should always be drawn.
{@link #View_scrollbarAlwaysDrawVerticalTrack android:scrollbarAlwaysDrawVerticalTrack} Defines whether the vertical scrollbar track should always be drawn.
{@link #View_scrollbarDefaultDelayBeforeFade android:scrollbarDefaultDelayBeforeFade} Defines the delay in milliseconds that a scrollbar waits before fade out.
{@link #View_scrollbarFadeDuration android:scrollbarFadeDuration} Defines the delay in milliseconds that a scrollbar takes to fade out.
{@link #View_scrollbarSize android:scrollbarSize} Sets the width of vertical scrollbars and height of horizontal scrollbars.
{@link #View_scrollbarStyle android:scrollbarStyle} Controls the scrollbar style and position.
{@link #View_scrollbarThumbHorizontal android:scrollbarThumbHorizontal} Defines the horizontal scrollbar thumb drawable.
{@link #View_scrollbarThumbVertical android:scrollbarThumbVertical} Defines the vertical scrollbar thumb drawable.
{@link #View_scrollbarTrackHorizontal android:scrollbarTrackHorizontal} Defines the horizontal scrollbar track drawable.
{@link #View_scrollbarTrackVertical android:scrollbarTrackVertical} Defines the vertical scrollbar track drawable.
{@link #View_scrollbars android:scrollbars} Defines which scrollbars should be displayed on scrolling or not.
{@link #View_soundEffectsEnabled android:soundEffectsEnabled} Boolean that controls whether a view should have sound effects + enabled for events such as clicking and touching.
{@link #View_stateListAnimator android:stateListAnimator} Sets the state-based animator for the View.
{@link #View_tag android:tag} Supply a tag for this view containing a String, to be retrieved + later with {@link android.view.View#getTag View.getTag()} or + searched for with {@link android.view.View#findViewWithTag + View.findViewWithTag()}.
{@link #View_textAlignment android:textAlignment} Defines the alignment of the text.
{@link #View_textDirection android:textDirection} Defines the direction of the text.
{@link #View_theme android:theme} Specifies a theme override for a view.
{@link #View_transformPivotX android:transformPivotX} x location of the pivot point around which the view will rotate and scale.
{@link #View_transformPivotY android:transformPivotY} y location of the pivot point around which the view will rotate and scale.
{@link #View_transitionName android:transitionName} Names a View such that it can be identified for Transitions.
{@link #View_translationX android:translationX} translation in x of the view.
{@link #View_translationY android:translationY} translation in y of the view.
{@link #View_translationZ android:translationZ} translation in z of the view.
{@link #View_verticalScrollbarPosition android:verticalScrollbarPosition} Determines which side the vertical scroll bar should be placed on.
{@link #View_visibility android:visibility} Controls the initial visibility of the view.
+ @see #View_accessibilityLiveRegion + @see #View_accessibilityTraversalAfter + @see #View_accessibilityTraversalBefore + @see #View_alpha + @see #View_background + @see #View_backgroundTint + @see #View_backgroundTintMode + @see #View_clickable + @see #View_contentDescription + @see #View_contextClickable + @see #View_drawingCacheQuality + @see #View_duplicateParentState + @see #View_elevation + @see #View_fadeScrollbars + @see #View_fadingEdge + @see #View_fadingEdgeLength + @see #View_filterTouchesWhenObscured + @see #View_fitsSystemWindows + @see #View_focusable + @see #View_focusableInTouchMode + @see #View_foreground + @see #View_foregroundGravity + @see #View_foregroundInsidePadding + @see #View_foregroundTint + @see #View_foregroundTintMode + @see #View_hapticFeedbackEnabled + @see #View_id + @see #View_importantForAccessibility + @see #View_isScrollContainer + @see #View_keepScreenOn + @see #View_labelFor + @see #View_layerType + @see #View_layoutDirection + @see #View_longClickable + @see #View_minHeight + @see #View_minWidth + @see #View_nestedScrollingEnabled + @see #View_nextFocusDown + @see #View_nextFocusForward + @see #View_nextFocusLeft + @see #View_nextFocusRight + @see #View_nextFocusUp + @see #View_onClick + @see #View_outlineProvider + @see #View_overScrollMode + @see #View_padding + @see #View_paddingBottom + @see #View_paddingEnd + @see #View_paddingLeft + @see #View_paddingRight + @see #View_paddingStart + @see #View_paddingTop + @see #View_requiresFadingEdge + @see #View_rotation + @see #View_rotationX + @see #View_rotationY + @see #View_saveEnabled + @see #View_scaleX + @see #View_scaleY + @see #View_scrollIndicators + @see #View_scrollX + @see #View_scrollY + @see #View_scrollbarAlwaysDrawHorizontalTrack + @see #View_scrollbarAlwaysDrawVerticalTrack + @see #View_scrollbarDefaultDelayBeforeFade + @see #View_scrollbarFadeDuration + @see #View_scrollbarSize + @see #View_scrollbarStyle + @see #View_scrollbarThumbHorizontal + @see #View_scrollbarThumbVertical + @see #View_scrollbarTrackHorizontal + @see #View_scrollbarTrackVertical + @see #View_scrollbars + @see #View_soundEffectsEnabled + @see #View_stateListAnimator + @see #View_tag + @see #View_textAlignment + @see #View_textDirection + @see #View_theme + @see #View_transformPivotX + @see #View_transformPivotY + @see #View_transitionName + @see #View_translationX + @see #View_translationY + @see #View_translationZ + @see #View_verticalScrollbarPosition + @see #View_visibility + */ + public static final int[] View = { + 0x01010000, 0x01010063, 0x01010064, 0x01010065, + 0x01010066, 0x01010067, 0x01010068, 0x01010069, + 0x0101007f, 0x010100d0, 0x010100d1, 0x010100d2, + 0x010100d3, 0x010100d4, 0x010100d5, 0x010100d6, + 0x010100d7, 0x010100d8, 0x010100d9, 0x010100da, + 0x010100db, 0x010100dc, 0x010100dd, 0x010100de, + 0x010100df, 0x010100e0, 0x010100e1, 0x010100e2, + 0x010100e3, 0x010100e4, 0x010100e5, 0x010100e6, + 0x010100e7, 0x010100e8, 0x010100e9, 0x01010109, + 0x0101013f, 0x01010140, 0x01010200, 0x01010215, + 0x01010216, 0x0101024e, 0x0101025e, 0x0101026f, + 0x01010273, 0x010102a8, 0x010102a9, 0x010102aa, + 0x010102c1, 0x010102c4, 0x0101031f, 0x01010320, + 0x01010321, 0x01010322, 0x01010323, 0x01010324, + 0x01010325, 0x01010326, 0x01010327, 0x01010328, + 0x01010334, 0x0101033c, 0x01010354, 0x010103a5, + 0x010103aa, 0x010103b0, 0x010103b1, 0x010103b2, + 0x010103b3, 0x010103b4, 0x010103c6, 0x010103ee, + 0x010103fa, 0x01010400, 0x01010436, 0x01010440, + 0x01010448, 0x0101046b, 0x0101046c, 0x0101046d, + 0x0101046e, 0x010104b8, 0x010104d1, 0x010104d2, + 0x010104e6, 0x010104e7, 0x01160046 + }; + /** +

+ @attr description + Indicates to accessibility services whether the user should be notified when + this view changes. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0 Accessibility services should not announce changes to this view.
polite1 Accessibility services should announce changes to this view.
assertive2 Accessibility services should interrupt ongoing speech to immediately + announce changes to this view.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#accessibilityLiveRegion}. + @attr name android:accessibilityLiveRegion + */ + public static final int View_accessibilityLiveRegion = 71; + /** +

+ @attr description + Sets the id of a view after which this one is visited in accessibility traversal. + A screen-reader must visit the content of the other view before the content of + this one. + @see android.view.View#setAccessibilityTraversalAfter(int)} + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#accessibilityTraversalAfter}. + @attr name android:accessibilityTraversalAfter + */ + public static final int View_accessibilityTraversalAfter = 83; + /** +

+ @attr description + Sets the id of a view before which this one is visited in accessibility traversal. + A screen-reader must visit the content of this view before the content of the one + it precedes. + @see android.view.View#setAccessibilityTraversalBefore(int)} + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#accessibilityTraversalBefore}. + @attr name android:accessibilityTraversalBefore + */ + public static final int View_accessibilityTraversalBefore = 82; + /** +

+ @attr description + alpha property of the view, as a value between 0 (completely transparent) and 1 + (completely opaque). + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#alpha}. + @attr name android:alpha + */ + public static final int View_alpha = 50; + /** +

+ @attr description + A drawable to use as the background. This can be either a reference + to a full drawable resource (such as a PNG image, 9-patch, + XML state list description, etc), or a solid color such as "#ff000000" + (black). + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#background}. + @attr name android:background + */ + public static final int View_background = 13; + /** +

+ @attr description + Tint to apply to the background. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#backgroundTint}. + @attr name android:backgroundTint + */ + public static final int View_backgroundTint = 77; + /** +

+ @attr description + Blending mode used to apply the background tint. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#backgroundTintMode}. + @attr name android:backgroundTintMode + */ + public static final int View_backgroundTintMode = 78; + /** +

+ @attr description + Defines whether this view reacts to click events. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#clickable}. + @attr name android:clickable + */ + public static final int View_clickable = 30; + /** +

+ @attr description + Defines text that briefly describes content of the view. This property is used + primarily for accessibility. Since some views do not have textual + representation this attribute can be used for providing such. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#contentDescription}. + @attr name android:contentDescription + */ + public static final int View_contentDescription = 44; + /** +

+ @attr description + Defines whether this view reacts to context click events. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#contextClickable}. + @attr name android:contextClickable + */ + public static final int View_contextClickable = 85; + /** +

+ @attr description + Defines the quality of translucent drawing caches. This property is used + only when the drawing cache is enabled and translucent. The default value is auto. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
auto0 Lets the framework decide what quality level should be used + for the drawing cache.
low1 Low quality. When set to low quality, the drawing cache uses a lower color + depth, thus losing precision in rendering gradients, but uses less memory.
high2 High quality. When set to high quality, the drawing cache uses a higher + color depth but uses more memory.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#drawingCacheQuality}. + @attr name android:drawingCacheQuality + */ + public static final int View_drawingCacheQuality = 33; + /** +

+ @attr description + When this attribute is set to true, the view gets its drawable state + (focused, pressed, etc.) from its direct parent rather than from itself. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#duplicateParentState}. + @attr name android:duplicateParentState + */ + public static final int View_duplicateParentState = 34; + /** +

+ @attr description + base z depth of the view + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#elevation}. + @attr name android:elevation + */ + public static final int View_elevation = 75; + /** +

+ @attr description + Defines whether to fade out scrollbars when they are not in use. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fadeScrollbars}. + @attr name android:fadeScrollbars + */ + public static final int View_fadeScrollbars = 47; + /** +

+ @attr description + This attribute is deprecated and will be ignored as of + API level 14 ({@link android.os.Build.VERSION_CODES#ICE_CREAM_SANDWICH}). + Using fading edges may introduce noticeable performance + degradations and should be used only when required by the application's + visual design. To request fading edges with API level 14 and above, + use the android:requiresFadingEdge attribute instead. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0x00000000 No edge is faded.
horizontal0x00001000 Fades horizontal edges only.
vertical0x00002000 Fades vertical edges only.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#fadingEdge}. + @attr name android:fadingEdge + */ + public static final int View_fadingEdge = 24; + /** +

+ @attr description + Defines the length of the fading edges. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fadingEdgeLength}. + @attr name android:fadingEdgeLength + */ + public static final int View_fadingEdgeLength = 25; + /** +

+ @attr description + Specifies whether to filter touches when the view's window is obscured by + another visible window. When set to true, the view will not receive touches + whenever a toast, dialog or other window appears above the view's window. + Refer to the {@link android.view.View} security documentation for more details. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#filterTouchesWhenObscured}. + @attr name android:filterTouchesWhenObscured + */ + public static final int View_filterTouchesWhenObscured = 49; + /** +

+ @attr description + Boolean internal attribute to adjust view layout based on + system windows such as the status bar. + If true, adjusts the padding of this view to leave space for the system windows. + Will only take effect if this view is in a non-embedded activity. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#fitsSystemWindows}. + @attr name android:fitsSystemWindows + */ + public static final int View_fitsSystemWindows = 22; + /** +

+ @attr description + Boolean that controls whether a view can take focus. By default the user can not + move focus to a view; by setting this attribute to true the view is + allowed to take focus. This value does not impact the behavior of + directly calling {@link android.view.View#requestFocus}, which will + always request focus regardless of this view. It only impacts where + focus navigation will try to move focus. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#focusable}. + @attr name android:focusable + */ + public static final int View_focusable = 19; + /** +

+ @attr description + Boolean that controls whether a view can take focus while in touch mode. + If this is true for a view, that view can gain focus when clicked on, and can keep + focus if another view is clicked on that doesn't have this attribute set to true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#focusableInTouchMode}. + @attr name android:focusableInTouchMode + */ + public static final int View_focusableInTouchMode = 20; + /** +

+ @attr description + Defines the drawable to draw over the content. This can be used as an overlay. + The foreground drawable participates in the padding of the content if the gravity + is set to fill. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#foreground}. + @attr name android:foreground + */ + public static final int View_foreground = 35; + /** +

+ @attr description + Defines the gravity to apply to the foreground drawable. The gravity defaults + to fill. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + +
ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 Additional option that can be set to have the top and/or bottom edges of + the child clipped to its container's bounds. + The clip will be based on the vertical gravity: a top gravity will clip the bottom + edge, a bottom gravity will clip the top edge, and neither will clip both edges.
clip_horizontal0x08 Additional option that can be set to have the left and/or right edges of + the child clipped to its container's bounds. + The clip will be based on the horizontal gravity: a left gravity will clip the right + edge, a right gravity will clip the left edge, and neither will clip both edges.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#foregroundGravity}. + @attr name android:foregroundGravity + */ + public static final int View_foregroundGravity = 38; + /** +

+ @attr description + Defines whether the foreground drawable should be drawn inside the padding. + This property is turned on by default. +

This is a private symbol. + @attr name com.android.internal:foregroundInsidePadding + */ + public static final int View_foregroundInsidePadding = 86; + /** +

+ @attr description + Tint to apply to the foreground. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#foregroundTint}. + @attr name android:foregroundTint + */ + public static final int View_foregroundTint = 79; + /** +

+ @attr description + Blending mode used to apply the foreground tint. + + +

Must be one of the following constant values.

+ ++++ + + + + + + +
ConstantValueDescription
src_over3 The tint is drawn on top of the drawable. + [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
src_in5 The tint is masked by the alpha channel of the drawable. The drawable’s + color channels are thrown out. [Sa * Da, Sc * Da]
src_atop9 The tint is drawn above the drawable, but with the drawable’s alpha + channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
multiply14 Multiplies the color and alpha channels of the drawable with those of + the tint. [Sa * Da, Sc * Dc]
screen15 [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
add16 Combines the tint and drawable color and alpha channels, clamping the + result to valid color values. Saturate(S + D)
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#foregroundTintMode}. + @attr name android:foregroundTintMode + */ + public static final int View_foregroundTintMode = 80; + /** +

+ @attr description + Boolean that controls whether a view should have haptic feedback + enabled for events such as long presses. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#hapticFeedbackEnabled}. + @attr name android:hapticFeedbackEnabled + */ + public static final int View_hapticFeedbackEnabled = 42; + /** +

+ @attr description + Supply an identifier name for this view, to later retrieve it + with {@link android.view.View#findViewById View.findViewById()} or + {@link android.app.Activity#findViewById Activity.findViewById()}. + This must be a + resource reference; typically you set this using the + @+ syntax to create a new ID resources. + For example: android:id="@+id/my_id" which + allows you to later retrieve the view + with findViewById(R.id.my_id). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#id}. + @attr name android:id + */ + public static final int View_id = 9; + /** +

+ @attr description + Controls how this View is important for accessibility which is if it fires + accessibility events and if it is reported to accessibility services that + query the screen. Note: While not recommended, an accessibility service may + decide to ignore this attribute and operate on all views in the view tree. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
auto0 The system determines whether the view is important for accessibility - default + (recommended).
yes1 The view is important for accessibility.
no2 The view is not important for accessibility.
noHideDescendants4 The view is not important for accessibility, nor are any of its descendant + views.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#importantForAccessibility}. + @attr name android:importantForAccessibility + */ + public static final int View_importantForAccessibility = 64; + /** +

+ @attr description + Set this if the view will serve as a scrolling container, meaning + that it can be resized to shrink its overall window so that there + will be space for an input method. If not set, the default + value will be true if "scrollbars" has the vertical scrollbar + set, else it will be false. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#isScrollContainer}. + @attr name android:isScrollContainer + */ + public static final int View_isScrollContainer = 41; + /** +

+ @attr description + Controls whether the view's window should keep the screen on + while visible. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#keepScreenOn}. + @attr name android:keepScreenOn + */ + public static final int View_keepScreenOn = 40; + /** +

+ @attr description + Specifies the id of a view for which this view serves as a label for + accessibility purposes. For example, a TextView before an EditText in + the UI usually specifies what infomation is contained in the EditText. + Hence, the TextView is a label for the EditText. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#labelFor}. + @attr name android:labelFor + */ + public static final int View_labelFor = 70; + /** +

+ @attr description + Specifies the type of layer backing this view. The default value is none. + Refer to {@link android.view.View#setLayerType(int, android.graphics.Paint)} + for more information. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0 Don't use a layer.
software1 Use a software layer. Refer to + {@link android.view.View#setLayerType(int, android.graphics.Paint)} for + more information.
hardware2 Use a hardware layer. Refer to + {@link android.view.View#setLayerType(int, android.graphics.Paint)} for + more information.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#layerType}. + @attr name android:layerType + */ + public static final int View_layerType = 62; + /** +

+ @attr description + Defines the direction of layout drawing. This typically is associated with writing + direction of the language script used. The possible values are "ltr" for Left-to-Right, + "rtl" for Right-to-Left, "locale" and "inherit" from parent view. If there is nothing + to inherit, "locale" is used. "locale" falls back to "en-US". "ltr" is the direction + used in "en-US". The default for this attribute is "inherit". + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
ltr0 Left-to-Right
rtl1 Right-to-Left
inherit2 Inherit from parent
locale3 Locale
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#layoutDirection}. + @attr name android:layoutDirection + */ + public static final int View_layoutDirection = 67; + /** +

+ @attr description + Defines whether this view reacts to long click events. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#longClickable}. + @attr name android:longClickable + */ + public static final int View_longClickable = 31; + /** +

+ @attr description + Defines the minimum height of the view. It is not guaranteed + the view will be able to achieve this minimum height (for example, + if its parent layout constrains it with less available height). + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#minHeight}. + @attr name android:minHeight + */ + public static final int View_minHeight = 37; + /** +

+ @attr description + Defines the minimum width of the view. It is not guaranteed + the view will be able to achieve this minimum width (for example, + if its parent layout constrains it with less available width). + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#minWidth}. + @attr name android:minWidth + */ + public static final int View_minWidth = 36; + /** +

+ @attr description + Specifies that this view should permit nested scrolling within a compatible + ancestor view. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#nestedScrollingEnabled}. + @attr name android:nestedScrollingEnabled + */ + public static final int View_nestedScrollingEnabled = 74; + /** +

+ @attr description + Defines the next view to give focus to when the next focus is + {@link android.view.View#FOCUS_DOWN} + + If the reference refers to a view that does not exist or is part + of a hierarchy that is invisible, a {@link java.lang.RuntimeException} + will result when the reference is accessed. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#nextFocusDown}. + @attr name android:nextFocusDown + */ + public static final int View_nextFocusDown = 29; + /** +

+ @attr description + Defines the next view to give focus to when the next focus is + {@link android.view.View#FOCUS_FORWARD} + + If the reference refers to a view that does not exist or is part + of a hierarchy that is invisible, a {@link java.lang.RuntimeException} + will result when the reference is accessed. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#nextFocusForward}. + @attr name android:nextFocusForward + */ + public static final int View_nextFocusForward = 61; + /** +

+ @attr description + Defines the next view to give focus to when the next focus is + {@link android.view.View#FOCUS_LEFT}. + + If the reference refers to a view that does not exist or is part + of a hierarchy that is invisible, a {@link java.lang.RuntimeException} + will result when the reference is accessed. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#nextFocusLeft}. + @attr name android:nextFocusLeft + */ + public static final int View_nextFocusLeft = 26; + /** +

+ @attr description + Defines the next view to give focus to when the next focus is + {@link android.view.View#FOCUS_RIGHT} + + If the reference refers to a view that does not exist or is part + of a hierarchy that is invisible, a {@link java.lang.RuntimeException} + will result when the reference is accessed. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#nextFocusRight}. + @attr name android:nextFocusRight + */ + public static final int View_nextFocusRight = 27; + /** +

+ @attr description + Defines the next view to give focus to when the next focus is + {@link android.view.View#FOCUS_UP} + + If the reference refers to a view that does not exist or is part + of a hierarchy that is invisible, a {@link java.lang.RuntimeException} + will result when the reference is accessed. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#nextFocusUp}. + @attr name android:nextFocusUp + */ + public static final int View_nextFocusUp = 28; + /** +

+ @attr description + Name of the method in this View's context to invoke when the view is + clicked. This name must correspond to a public method that takes + exactly one parameter of type View. For instance, if you specify + android:onClick="sayHello", you must declare a + public void sayHello(View v) method of your context + (typically, your Activity). + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#onClick}. + @attr name android:onClick + */ + public static final int View_onClick = 43; + /** +

+ @attr description + ViewOutlineProvider used to determine the View's Outline. + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
background0 Default, background drawable-driven outline.
none1 No outline provider.
bounds2 Generates an opaque outline for the bounds of the view.
paddedBounds3 Generates an opaque outline for the padded bounds of the view.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#outlineProvider}. + @attr name android:outlineProvider + */ + public static final int View_outlineProvider = 81; + /** +

+ @attr description + Defines over-scrolling behavior. This property is used only if the + View is scrollable. Over-scrolling is the ability for the user to + receive feedback when attempting to scroll beyond meaningful content. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
always0 Always show over-scroll effects, even if the content fits entirely + within the available space.
ifContentScrolls1 Only show over-scroll effects if the content is large + enough to meaningfully scroll.
never2 Never show over-scroll effects.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#overScrollMode}. + @attr name android:overScrollMode + */ + public static final int View_overScrollMode = 48; + /** +

+ @attr description + Sets the padding, in pixels, of all four edges. Padding is defined as + space between the edges of the view and the view's content. A views size + will include it's padding. If a {@link android.R.attr#background} + is provided, the padding will initially be set to that (0 if the + drawable does not have padding). Explicitly setting a padding value + will override the corresponding padding found in the background. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#padding}. + @attr name android:padding + */ + public static final int View_padding = 14; + /** +

+ @attr description + Sets the padding, in pixels, of the bottom edge; see {@link android.R.attr#padding}. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#paddingBottom}. + @attr name android:paddingBottom + */ + public static final int View_paddingBottom = 18; + /** +

+ @attr description + Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#paddingEnd}. + @attr name android:paddingEnd + */ + public static final int View_paddingEnd = 69; + /** +

+ @attr description + Sets the padding, in pixels, of the left edge; see {@link android.R.attr#padding}. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#paddingLeft}. + @attr name android:paddingLeft + */ + public static final int View_paddingLeft = 15; + /** +

+ @attr description + Sets the padding, in pixels, of the right edge; see {@link android.R.attr#padding}. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#paddingRight}. + @attr name android:paddingRight + */ + public static final int View_paddingRight = 17; + /** +

+ @attr description + Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#paddingStart}. + @attr name android:paddingStart + */ + public static final int View_paddingStart = 68; + /** +

+ @attr description + Sets the padding, in pixels, of the top edge; see {@link android.R.attr#padding}. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#paddingTop}. + @attr name android:paddingTop + */ + public static final int View_paddingTop = 16; + /** +

+ @attr description + Defines which edges should be faded on scrolling. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0x00000000 No edge is faded.
horizontal0x00001000 Fades horizontal edges only.
vertical0x00002000 Fades vertical edges only.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#requiresFadingEdge}. + @attr name android:requiresFadingEdge + */ + public static final int View_requiresFadingEdge = 63; + /** +

+ @attr description + rotation of the view, in degrees. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#rotation}. + @attr name android:rotation + */ + public static final int View_rotation = 57; + /** +

+ @attr description + rotation of the view around the x axis, in degrees. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#rotationX}. + @attr name android:rotationX + */ + public static final int View_rotationX = 58; + /** +

+ @attr description + rotation of the view around the y axis, in degrees. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#rotationY}. + @attr name android:rotationY + */ + public static final int View_rotationY = 59; + /** +

+ @attr description + If false, no state will be saved for this view when it is being + frozen. The default is true, allowing the view to be saved + (however it also must have an ID assigned to it for its + state to be saved). Setting this to false only disables the + state for this view, not for its children which may still + be saved. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#saveEnabled}. + @attr name android:saveEnabled + */ + public static final int View_saveEnabled = 32; + /** +

+ @attr description + scale of the view in the x direction. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scaleX}. + @attr name android:scaleX + */ + public static final int View_scaleX = 55; + /** +

+ @attr description + scale of the view in the y direction. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scaleY}. + @attr name android:scaleY + */ + public static final int View_scaleY = 56; + /** +

+ @attr description + Defines which scroll indicators should be displayed when the view + can be scrolled. Multiple values may be combined using logical OR, + for example "top|bottom". + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0x00 No scroll indicators are displayed.
top0x01 Displays top scroll indicator when view can be scrolled up.
bottom0x02 Displays bottom scroll indicator when vew can be scrolled down.
left0x04 Displays left scroll indicator when vew can be scrolled left.
right0x08 Displays right scroll indicator when vew can be scrolled right.
start0x10 Displays right scroll indicator when vew can be scrolled in the + start direction.
end0x20 Displays right scroll indicator when vew can be scrolled in the + end direction.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#scrollIndicators}. + @attr name android:scrollIndicators + */ + public static final int View_scrollIndicators = 84; + /** +

+ @attr description + The initial horizontal scroll offset, in pixels. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scrollX}. + @attr name android:scrollX + */ + public static final int View_scrollX = 11; + /** +

+ @attr description + The initial vertical scroll offset, in pixels. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scrollY}. + @attr name android:scrollY + */ + public static final int View_scrollY = 12; + /** +

+ @attr description + Defines whether the horizontal scrollbar track should always be drawn. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scrollbarAlwaysDrawHorizontalTrack}. + @attr name android:scrollbarAlwaysDrawHorizontalTrack + */ + public static final int View_scrollbarAlwaysDrawHorizontalTrack = 6; + /** +

+ @attr description + Defines whether the vertical scrollbar track should always be drawn. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scrollbarAlwaysDrawVerticalTrack}. + @attr name android:scrollbarAlwaysDrawVerticalTrack + */ + public static final int View_scrollbarAlwaysDrawVerticalTrack = 7; + /** +

+ @attr description + Defines the delay in milliseconds that a scrollbar waits before fade out. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scrollbarDefaultDelayBeforeFade}. + @attr name android:scrollbarDefaultDelayBeforeFade + */ + public static final int View_scrollbarDefaultDelayBeforeFade = 46; + /** +

+ @attr description + Defines the delay in milliseconds that a scrollbar takes to fade out. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scrollbarFadeDuration}. + @attr name android:scrollbarFadeDuration + */ + public static final int View_scrollbarFadeDuration = 45; + /** +

+ @attr description + Sets the width of vertical scrollbars and height of horizontal scrollbars. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scrollbarSize}. + @attr name android:scrollbarSize + */ + public static final int View_scrollbarSize = 1; + /** +

+ @attr description + Controls the scrollbar style and position. The scrollbars can be overlaid or + inset. When inset, they add to the padding of the view. And the + scrollbars can be drawn inside the padding area or on the edge of + the view. For example, if a view has a background drawable and you + want to draw the scrollbars inside the padding specified by the + drawable, you can use insideOverlay or insideInset. If you want them + to appear at the edge of the view, ignoring the padding, then you can + use outsideOverlay or outsideInset. + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
insideOverlay0x0 Inside the padding and overlaid
insideInset0x01000000 Inside the padding and inset
outsideOverlay0x02000000 Edge of the view and overlaid
outsideInset0x03000000 Edge of the view and inset
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#scrollbarStyle}. + @attr name android:scrollbarStyle + */ + public static final int View_scrollbarStyle = 8; + /** +

+ @attr description + Defines the horizontal scrollbar thumb drawable. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scrollbarThumbHorizontal}. + @attr name android:scrollbarThumbHorizontal + */ + public static final int View_scrollbarThumbHorizontal = 2; + /** +

+ @attr description + Defines the vertical scrollbar thumb drawable. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scrollbarThumbVertical}. + @attr name android:scrollbarThumbVertical + */ + public static final int View_scrollbarThumbVertical = 3; + /** +

+ @attr description + Defines the horizontal scrollbar track drawable. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scrollbarTrackHorizontal}. + @attr name android:scrollbarTrackHorizontal + */ + public static final int View_scrollbarTrackHorizontal = 4; + /** +

+ @attr description + Defines the vertical scrollbar track drawable. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#scrollbarTrackVertical}. + @attr name android:scrollbarTrackVertical + */ + public static final int View_scrollbarTrackVertical = 5; + /** +

+ @attr description + Defines which scrollbars should be displayed on scrolling or not. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0x00000000 No scrollbar is displayed.
horizontal0x00000100 Displays horizontal scrollbar only.
vertical0x00000200 Displays vertical scrollbar only.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#scrollbars}. + @attr name android:scrollbars + */ + public static final int View_scrollbars = 23; + /** +

+ @attr description + Boolean that controls whether a view should have sound effects + enabled for events such as clicking and touching. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#soundEffectsEnabled}. + @attr name android:soundEffectsEnabled + */ + public static final int View_soundEffectsEnabled = 39; + /** +

+ @attr description + Sets the state-based animator for the View. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#stateListAnimator}. + @attr name android:stateListAnimator + */ + public static final int View_stateListAnimator = 76; + /** +

+ @attr description + Supply a tag for this view containing a String, to be retrieved + later with {@link android.view.View#getTag View.getTag()} or + searched for with {@link android.view.View#findViewWithTag + View.findViewWithTag()}. It is generally preferable to use + IDs (through the android:id attribute) instead of tags because + they are faster and allow for compile-time type checking. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#tag}. + @attr name android:tag + */ + public static final int View_tag = 10; + /** +

+ @attr description + Defines the alignment of the text. A heuristic is used to determine the resolved + text alignment. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
inherit0 Default
gravity1 Default for the root view. The gravity determines the alignment, ALIGN_NORMAL, + ALIGN_CENTER, or ALIGN_OPPOSITE, which are relative to each paragraph’s + text direction
textStart2 Align to the start of the paragraph, e.g. ALIGN_NORMAL.
textEnd3 Align to the end of the paragraph, e.g. ALIGN_OPPOSITE.
center4 Center the paragraph, e.g. ALIGN_CENTER.
viewStart5 Align to the start of the view, which is ALIGN_LEFT if the view’s resolved + layoutDirection is LTR, and ALIGN_RIGHT otherwise.
viewEnd6 Align to the end of the view, which is ALIGN_RIGHT if the view’s resolved + layoutDirection is LTR, and ALIGN_LEFT otherwise
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#textAlignment}. + @attr name android:textAlignment + */ + public static final int View_textAlignment = 66; + /** +

+ @attr description + Defines the direction of the text. A heuristic is used to determine the resolved text + direction of paragraphs. + + +

May be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + + + + + + +
ConstantValueDescription
inherit0 Default
firstStrong1 Default for the root view. The first strong directional character determines the + paragraph direction. If there is no strong directional character, the paragraph + direction is the view’s resolved layout direction.
anyRtl2 The paragraph direction is RTL if it contains any strong RTL character, otherwise + it is LTR if it contains any strong LTR characters. If there are neither, the + paragraph direction is the view’s resolved layout direction.
ltr3 The paragraph direction is left to right.
rtl4 The paragraph direction is right to left.
locale5 The paragraph direction is coming from the system Locale.
firstStrongLtr6 The first strong directional character determines the paragraph direction. If + there is no strong directional character, the paragraph direction is LTR.
firstStrongRtl7 The first strong directional character determines the paragraph direction. If + there is no strong directional character, the paragraph direction is RTL.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#textDirection}. + @attr name android:textDirection + */ + public static final int View_textDirection = 65; + /** +

+ @attr description + Specifies a theme override for a view. When a theme override is set, the + view will be inflated using a {@link android.content.Context} themed with + the specified resource. During XML inflation, any child views under the + view with a theme override will inherit the themed context. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#theme}. + @attr name android:theme + */ + public static final int View_theme = 0; + /** +

+ @attr description + x location of the pivot point around which the view will rotate and scale. + This xml attribute sets the pivotX property of the View. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#transformPivotX}. + @attr name android:transformPivotX + */ + public static final int View_transformPivotX = 51; + /** +

+ @attr description + y location of the pivot point around which the view will rotate and scale. + This xml attribute sets the pivotY property of the View. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#transformPivotY}. + @attr name android:transformPivotY + */ + public static final int View_transformPivotY = 52; + /** +

+ @attr description + Names a View such that it can be identified for Transitions. Names should be + unique in the View hierarchy. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#transitionName}. + @attr name android:transitionName + */ + public static final int View_transitionName = 73; + /** +

+ @attr description + translation in x of the view. This value is added post-layout to the left + property of the view, which is set by its layout. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#translationX}. + @attr name android:translationX + */ + public static final int View_translationX = 53; + /** +

+ @attr description + translation in y of the view. This value is added post-layout to the top + property of the view, which is set by its layout. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#translationY}. + @attr name android:translationY + */ + public static final int View_translationY = 54; + /** +

+ @attr description + translation in z of the view. This value is added to its elevation. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#translationZ}. + @attr name android:translationZ + */ + public static final int View_translationZ = 72; + /** +

+ @attr description + Determines which side the vertical scroll bar should be placed on. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
defaultPosition0 Place the scroll bar wherever the system default determines.
left1 Place the scroll bar on the left.
right2 Place the scroll bar on the right.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#verticalScrollbarPosition}. + @attr name android:verticalScrollbarPosition + */ + public static final int View_verticalScrollbarPosition = 60; + /** +

+ @attr description + Controls the initial visibility of the view. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
visible0 Visible on screen; the default value.
invisible1 Not displayed, but taken into account during layout (space is left for it).
gone2 Completely hidden, as if the view had not been added.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#visibility}. + @attr name android:visibility + */ + public static final int View_visibility = 21; + /** Attributes that can be used with a ViewAnimator. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewAnimator_animateFirstView android:animateFirstView} Defines whether to animate the current View when the ViewAnimation + is first displayed.
{@link #ViewAnimator_inAnimation android:inAnimation} Identifier for the animation to use when a view is shown.
{@link #ViewAnimator_outAnimation android:outAnimation} Identifier for the animation to use when a view is hidden.
+ @see #ViewAnimator_animateFirstView + @see #ViewAnimator_inAnimation + @see #ViewAnimator_outAnimation + */ + public static final int[] ViewAnimator = { + 0x01010177, 0x01010178, 0x010102d5 + }; + /** +

+ @attr description + Defines whether to animate the current View when the ViewAnimation + is first displayed. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#animateFirstView}. + @attr name android:animateFirstView + */ + public static final int ViewAnimator_animateFirstView = 2; + /** +

+ @attr description + Identifier for the animation to use when a view is shown. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#inAnimation}. + @attr name android:inAnimation + */ + public static final int ViewAnimator_inAnimation = 0; + /** +

+ @attr description + Identifier for the animation to use when a view is hidden. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#outAnimation}. + @attr name android:outAnimation + */ + public static final int ViewAnimator_outAnimation = 1; + /** Attributes that can be used with a ViewDrawableStates. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #ViewDrawableStates_state_accelerated android:state_accelerated} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + indicating that the Drawable is in a view that is hardware accelerated.
{@link #ViewDrawableStates_state_activated android:state_activated} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view or its parent has been "activated" meaning the user has currently + marked it as being of interest.
{@link #ViewDrawableStates_state_drag_can_accept android:state_drag_can_accept} State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} + indicating that the Drawable is in a view that is capable of accepting a drop of + the content currently being manipulated in a drag-and-drop operation.
{@link #ViewDrawableStates_state_drag_hovered android:state_drag_hovered} State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} + indicating that a drag operation (for which the Drawable's view is a valid recipient) + is currently positioned over the Drawable.
{@link #ViewDrawableStates_state_enabled android:state_enabled} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view is enabled.
{@link #ViewDrawableStates_state_focused android:state_focused} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view has input focus.
{@link #ViewDrawableStates_state_hovered android:state_hovered} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a pointer is hovering over the view.
{@link #ViewDrawableStates_state_pressed android:state_pressed} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when the user is pressing down in a view.
{@link #ViewDrawableStates_state_selected android:state_selected} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view (or one of its parents) is currently selected.
{@link #ViewDrawableStates_state_window_focused android:state_window_focused} State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view's window has input focus.
+ @see #ViewDrawableStates_state_accelerated + @see #ViewDrawableStates_state_activated + @see #ViewDrawableStates_state_drag_can_accept + @see #ViewDrawableStates_state_drag_hovered + @see #ViewDrawableStates_state_enabled + @see #ViewDrawableStates_state_focused + @see #ViewDrawableStates_state_hovered + @see #ViewDrawableStates_state_pressed + @see #ViewDrawableStates_state_selected + @see #ViewDrawableStates_state_window_focused + */ + public static final int[] ViewDrawableStates = { + 0x0101009c, 0x0101009d, 0x0101009e, 0x010100a1, + 0x010100a7, 0x010102fe, 0x0101031b, 0x01010367, + 0x01010368, 0x01010369 + }; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + indicating that the Drawable is in a view that is hardware accelerated. + This means that the device can at least render a full-screen scaled + bitmap with one layer of text and bitmaps composited on top of it + at 60fps. When this is set, the colorBackgroundCacheHint will be + ignored even if it specifies a solid color, since that optimization + is not needed. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_accelerated}. + @attr name android:state_accelerated + */ + public static final int ViewDrawableStates_state_accelerated = 6; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view or its parent has been "activated" meaning the user has currently + marked it as being of interest. This is an alternative representation of + state_checked for when the state should be propagated down the view hierarchy. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_activated}. + @attr name android:state_activated + */ + public static final int ViewDrawableStates_state_activated = 5; + /** +

+ @attr description + State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} + indicating that the Drawable is in a view that is capable of accepting a drop of + the content currently being manipulated in a drag-and-drop operation. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_drag_can_accept}. + @attr name android:state_drag_can_accept + */ + public static final int ViewDrawableStates_state_drag_can_accept = 8; + /** +

+ @attr description + State for {@link android.graphics.drawable.StateListDrawable StateListDrawable} + indicating that a drag operation (for which the Drawable's view is a valid recipient) + is currently positioned over the Drawable. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_drag_hovered}. + @attr name android:state_drag_hovered + */ + public static final int ViewDrawableStates_state_drag_hovered = 9; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view is enabled. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_enabled}. + @attr name android:state_enabled + */ + public static final int ViewDrawableStates_state_enabled = 2; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view has input focus. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_focused}. + @attr name android:state_focused + */ + public static final int ViewDrawableStates_state_focused = 0; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a pointer is hovering over the view. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_hovered}. + @attr name android:state_hovered + */ + public static final int ViewDrawableStates_state_hovered = 7; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when the user is pressing down in a view. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_pressed}. + @attr name android:state_pressed + */ + public static final int ViewDrawableStates_state_pressed = 4; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view (or one of its parents) is currently selected. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_selected}. + @attr name android:state_selected + */ + public static final int ViewDrawableStates_state_selected = 3; + /** +

+ @attr description + State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable}, + set when a view's window has input focus. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#state_window_focused}. + @attr name android:state_window_focused + */ + public static final int ViewDrawableStates_state_window_focused = 1; + /** Attributes that can be used with a ViewFlipper. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ViewFlipper_autoStart android:autoStart} When true, automatically start animating
{@link #ViewFlipper_flipInterval android:flipInterval}
+ @see #ViewFlipper_autoStart + @see #ViewFlipper_flipInterval + */ + public static final int[] ViewFlipper = { + 0x01010179, 0x010102b5 + }; + /** +

+ @attr description + When true, automatically start animating + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#autoStart}. + @attr name android:autoStart + */ + public static final int ViewFlipper_autoStart = 1; + /** +

This symbol is the offset where the {@link android.R.attr#flipInterval} + attribute's value can be found in the {@link #ViewFlipper} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android:flipInterval + */ + public static final int ViewFlipper_flipInterval = 0; + /** Attributes that can be used with a {@link android.view.ViewGroup} or any + of its subclasses. Also see {@link #ViewGroup_Layout} for + attributes that this class processes in its children. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ViewGroup_addStatesFromChildren android:addStatesFromChildren} Sets whether this ViewGroup's drawable states also include + its children's drawable states.
{@link #ViewGroup_alwaysDrawnWithCache android:alwaysDrawnWithCache} Defines whether the ViewGroup should always draw its children using their + drawing cache or not.
{@link #ViewGroup_animateLayoutChanges android:animateLayoutChanges} Defines whether changes in layout (caused by adding and removing items) should + cause a LayoutTransition to run.
{@link #ViewGroup_animationCache android:animationCache} Defines whether layout animations should create a drawing cache for their + children.
{@link #ViewGroup_clipChildren android:clipChildren} Defines whether a child is limited to draw inside of its bounds or not.
{@link #ViewGroup_clipToPadding android:clipToPadding} Defines whether the ViewGroup will clip its children and resize (but not clip) any + EdgeEffect to its padding, if padding is not zero.
{@link #ViewGroup_descendantFocusability android:descendantFocusability} Defines the relationship between the ViewGroup and its descendants + when looking for a View to take focus.
{@link #ViewGroup_layoutAnimation android:layoutAnimation} Defines the layout animation to use the first time the ViewGroup is laid out.
{@link #ViewGroup_layoutMode android:layoutMode} Defines the layout mode of this ViewGroup.
{@link #ViewGroup_persistentDrawingCache android:persistentDrawingCache} Defines the persistence of the drawing cache.
{@link #ViewGroup_splitMotionEvents android:splitMotionEvents} Sets whether this ViewGroup should split MotionEvents + to separate child views during touch event dispatch.
{@link #ViewGroup_touchscreenBlocksFocus android:touchscreenBlocksFocus} Set to true if this ViewGroup blocks focus in the presence of a touchscreen.
{@link #ViewGroup_transitionGroup android:transitionGroup} Sets whether or not this ViewGroup should be treated as a single entity + when doing an Activity transition.
+ @see #ViewGroup_addStatesFromChildren + @see #ViewGroup_alwaysDrawnWithCache + @see #ViewGroup_animateLayoutChanges + @see #ViewGroup_animationCache + @see #ViewGroup_clipChildren + @see #ViewGroup_clipToPadding + @see #ViewGroup_descendantFocusability + @see #ViewGroup_layoutAnimation + @see #ViewGroup_layoutMode + @see #ViewGroup_persistentDrawingCache + @see #ViewGroup_splitMotionEvents + @see #ViewGroup_touchscreenBlocksFocus + @see #ViewGroup_transitionGroup + */ + public static final int[] ViewGroup = { + 0x010100ea, 0x010100eb, 0x010100ec, 0x010100ed, + 0x010100ee, 0x010100ef, 0x010100f0, 0x010100f1, + 0x010102ef, 0x010102f2, 0x010103da, 0x01010401, + 0x0101048f + }; + /** +

+ @attr description + Sets whether this ViewGroup's drawable states also include + its children's drawable states. This is used, for example, to + make a group appear to be focused when its child EditText or button + is focused. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#addStatesFromChildren}. + @attr name android:addStatesFromChildren + */ + public static final int ViewGroup_addStatesFromChildren = 6; + /** +

+ @attr description + Defines whether the ViewGroup should always draw its children using their + drawing cache or not. The default value is true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#alwaysDrawnWithCache}. + @attr name android:alwaysDrawnWithCache + */ + public static final int ViewGroup_alwaysDrawnWithCache = 5; + /** +

+ @attr description + Defines whether changes in layout (caused by adding and removing items) should + cause a LayoutTransition to run. When this flag is set to true, a default + LayoutTransition object will be set on the ViewGroup container and default + animations will run when these layout changes occur. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#animateLayoutChanges}. + @attr name android:animateLayoutChanges + */ + public static final int ViewGroup_animateLayoutChanges = 9; + /** +

+ @attr description + Defines whether layout animations should create a drawing cache for their + children. Enabling the animation cache consumes more memory and requires + a longer initialization but provides better performance. The animation + cache is enabled by default. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#animationCache}. + @attr name android:animationCache + */ + public static final int ViewGroup_animationCache = 3; + /** +

+ @attr description + Defines whether a child is limited to draw inside of its bounds or not. + This is useful with animations that scale the size of the children to more + than 100% for instance. In such a case, this property should be set to false + to allow the children to draw outside of their bounds. The default value of + this property is true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#clipChildren}. + @attr name android:clipChildren + */ + public static final int ViewGroup_clipChildren = 0; + /** +

+ @attr description + Defines whether the ViewGroup will clip its children and resize (but not clip) any + EdgeEffect to its padding, if padding is not zero. This property is set to true by + default. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#clipToPadding}. + @attr name android:clipToPadding + */ + public static final int ViewGroup_clipToPadding = 1; + /** +

+ @attr description + Defines the relationship between the ViewGroup and its descendants + when looking for a View to take focus. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
beforeDescendants0 The ViewGroup will get focus before any of its descendants.
afterDescendants1 The ViewGroup will get focus only if none of its descendants want it.
blocksDescendants2 The ViewGroup will block its descendants from receiving focus.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#descendantFocusability}. + @attr name android:descendantFocusability + */ + public static final int ViewGroup_descendantFocusability = 7; + /** +

+ @attr description + Defines the layout animation to use the first time the ViewGroup is laid out. + Layout animations can also be started manually after the first layout. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layoutAnimation}. + @attr name android:layoutAnimation + */ + public static final int ViewGroup_layoutAnimation = 2; + /** +

+ @attr description + Defines the layout mode of this ViewGroup. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
clipBounds0 Use the children's clip bounds when laying out this container.
opticalBounds1 Use the children's optical bounds when laying out this container.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#layoutMode}. + @attr name android:layoutMode + */ + public static final int ViewGroup_layoutMode = 10; + /** +

+ @attr description + Defines the persistence of the drawing cache. The drawing cache might be + enabled by a ViewGroup for all its children in specific situations (for + instance during a scrolling.) This property lets you persist the cache + in memory after its initial usage. Persisting the cache consumes more + memory but may prevent frequent garbage collection is the cache is created + over and over again. By default the persistence is set to scrolling. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0x0 The drawing cache is not persisted after use.
animation0x1 The drawing cache is persisted after a layout animation.
scrolling0x2 The drawing cache is persisted after a scroll.
all0x3 The drawing cache is always persisted.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#persistentDrawingCache}. + @attr name android:persistentDrawingCache + */ + public static final int ViewGroup_persistentDrawingCache = 4; + /** +

+ @attr description + Sets whether this ViewGroup should split MotionEvents + to separate child views during touch event dispatch. + If false (default), touch events will be dispatched to + the child view where the first pointer went down until + the last pointer goes up. + If true, touch events may be dispatched to multiple children. + MotionEvents for each pointer will be dispatched to the child + view where the initial ACTION_DOWN event happened. + See {@link android.view.ViewGroup#setMotionEventSplittingEnabled(boolean)} + for more information. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#splitMotionEvents}. + @attr name android:splitMotionEvents + */ + public static final int ViewGroup_splitMotionEvents = 8; + /** +

+ @attr description + Set to true if this ViewGroup blocks focus in the presence of a touchscreen. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#touchscreenBlocksFocus}. + @attr name android:touchscreenBlocksFocus + */ + public static final int ViewGroup_touchscreenBlocksFocus = 12; + /** +

+ @attr description + Sets whether or not this ViewGroup should be treated as a single entity + when doing an Activity transition. Typically, the elements inside a + ViewGroup are each transitioned from the scene individually. The default + for a ViewGroup is false unless it has a background. See + {@link android.app.ActivityOptions#makeSceneTransitionAnimation(android.app.Activity, + android.view.View, String)} for more information. Corresponds to + {@link android.view.ViewGroup#setTransitionGroup(boolean)}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#transitionGroup}. + @attr name android:transitionGroup + */ + public static final int ViewGroup_transitionGroup = 11; + /** This is the basic set of layout attributes that are common to all + layout managers. These attributes are specified with the rest of + a view's normal attributes (such as {@link android.R.attr#background}, + but will be parsed by the view's parent and ignored by the child. +

The values defined here correspond to the base layout attribute + class {@link android.view.ViewGroup.LayoutParams}. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ViewGroup_Layout_layout_height android:layout_height} Specifies the basic height of the view.
{@link #ViewGroup_Layout_layout_width android:layout_width} Specifies the basic width of the view.
+ @see #ViewGroup_Layout_layout_height + @see #ViewGroup_Layout_layout_width + */ + public static final int[] ViewGroup_Layout = { + 0x010100f4, 0x010100f5 + }; + /** +

+ @attr description + Specifies the basic height of the view. This is a required attribute + for any view inside of a containing layout manager. Its value may + be a dimension (such as "12dip") for a constant height or one of + the special constants. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
fill_parent-1 The view should be as big as its parent (minus padding). + This constant is deprecated starting from API Level 8 and + is replaced by {@code match_parent}.
match_parent-1 The view should be as big as its parent (minus padding). + Introduced in API Level 8.
wrap_content-2 The view should be only big enough to enclose its content (plus padding).
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_height}. + @attr name android:layout_height + */ + public static final int ViewGroup_Layout_layout_height = 1; + /** +

+ @attr description + Specifies the basic width of the view. This is a required attribute + for any view inside of a containing layout manager. Its value may + be a dimension (such as "12dip") for a constant width or one of + the special constants. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
fill_parent-1 The view should be as big as its parent (minus padding). + This constant is deprecated starting from API Level 8 and + is replaced by {@code match_parent}.
match_parent-1 The view should be as big as its parent (minus padding). + Introduced in API Level 8.
wrap_content-2 The view should be only big enough to enclose its content (plus padding).
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_width}. + @attr name android:layout_width + */ + public static final int ViewGroup_Layout_layout_width = 0; + /** This is the basic set of layout attributes for layout managers that + wish to place margins around their child views. + These attributes are specified with the rest of + a view's normal attributes (such as {@link android.R.attr#background}, + but will be parsed by the view's parent and ignored by the child. +

The values defined here correspond to the base layout attribute + class {@link android.view.ViewGroup.MarginLayoutParams}. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #ViewGroup_MarginLayout_layout_height android:layout_height} Specifies the basic height of the view.
{@link #ViewGroup_MarginLayout_layout_margin android:layout_margin} Specifies extra space on the left, top, right and bottom + sides of this view.
{@link #ViewGroup_MarginLayout_layout_marginBottom android:layout_marginBottom} Specifies extra space on the bottom side of this view.
{@link #ViewGroup_MarginLayout_layout_marginEnd android:layout_marginEnd} Specifies extra space on the end side of this view.
{@link #ViewGroup_MarginLayout_layout_marginLeft android:layout_marginLeft} Specifies extra space on the left side of this view.
{@link #ViewGroup_MarginLayout_layout_marginRight android:layout_marginRight} Specifies extra space on the right side of this view.
{@link #ViewGroup_MarginLayout_layout_marginStart android:layout_marginStart} Specifies extra space on the start side of this view.
{@link #ViewGroup_MarginLayout_layout_marginTop android:layout_marginTop} Specifies extra space on the top side of this view.
{@link #ViewGroup_MarginLayout_layout_width android:layout_width} Specifies the basic width of the view.
+ @see #ViewGroup_MarginLayout_layout_height + @see #ViewGroup_MarginLayout_layout_margin + @see #ViewGroup_MarginLayout_layout_marginBottom + @see #ViewGroup_MarginLayout_layout_marginEnd + @see #ViewGroup_MarginLayout_layout_marginLeft + @see #ViewGroup_MarginLayout_layout_marginRight + @see #ViewGroup_MarginLayout_layout_marginStart + @see #ViewGroup_MarginLayout_layout_marginTop + @see #ViewGroup_MarginLayout_layout_width + */ + public static final int[] ViewGroup_MarginLayout = { + 0x010100f4, 0x010100f5, 0x010100f6, 0x010100f7, + 0x010100f8, 0x010100f9, 0x010100fa, 0x010103b5, + 0x010103b6 + }; + /** +

+ @attr description + Specifies the basic height of the view. This is a required attribute + for any view inside of a containing layout manager. Its value may + be a dimension (such as "12dip") for a constant height or one of + the special constants. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
fill_parent-1 The view should be as big as its parent (minus padding). + This constant is deprecated starting from API Level 8 and + is replaced by {@code match_parent}.
match_parent-1 The view should be as big as its parent (minus padding). + Introduced in API Level 8.
wrap_content-2 The view should be only big enough to enclose its content (plus padding).
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_height}. + @attr name android:layout_height + */ + public static final int ViewGroup_MarginLayout_layout_height = 1; + /** +

+ @attr description + Specifies extra space on the left, top, right and bottom + sides of this view. This space is outside this view's bounds. + Margin values should be positive. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_margin}. + @attr name android:layout_margin + */ + public static final int ViewGroup_MarginLayout_layout_margin = 2; + /** +

+ @attr description + Specifies extra space on the bottom side of this view. + This space is outside this view's bounds. + Margin values should be positive. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_marginBottom}. + @attr name android:layout_marginBottom + */ + public static final int ViewGroup_MarginLayout_layout_marginBottom = 6; + /** +

+ @attr description + Specifies extra space on the end side of this view. + This space is outside this view's bounds. + Margin values should be positive. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_marginEnd}. + @attr name android:layout_marginEnd + */ + public static final int ViewGroup_MarginLayout_layout_marginEnd = 8; + /** +

+ @attr description + Specifies extra space on the left side of this view. + This space is outside this view's bounds. + Margin values should be positive. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_marginLeft}. + @attr name android:layout_marginLeft + */ + public static final int ViewGroup_MarginLayout_layout_marginLeft = 3; + /** +

+ @attr description + Specifies extra space on the right side of this view. + This space is outside this view's bounds. + Margin values should be positive. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_marginRight}. + @attr name android:layout_marginRight + */ + public static final int ViewGroup_MarginLayout_layout_marginRight = 5; + /** +

+ @attr description + Specifies extra space on the start side of this view. + This space is outside this view's bounds. + Margin values should be positive. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_marginStart}. + @attr name android:layout_marginStart + */ + public static final int ViewGroup_MarginLayout_layout_marginStart = 7; + /** +

+ @attr description + Specifies extra space on the top side of this view. + This space is outside this view's bounds. + Margin values should be positive. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_marginTop}. + @attr name android:layout_marginTop + */ + public static final int ViewGroup_MarginLayout_layout_marginTop = 4; + /** +

+ @attr description + Specifies the basic width of the view. This is a required attribute + for any view inside of a containing layout manager. Its value may + be a dimension (such as "12dip") for a constant width or one of + the special constants. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
fill_parent-1 The view should be as big as its parent (minus padding). + This constant is deprecated starting from API Level 8 and + is replaced by {@code match_parent}.
match_parent-1 The view should be as big as its parent (minus padding). + Introduced in API Level 8.
wrap_content-2 The view should be only big enough to enclose its content (plus padding).
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout_width}. + @attr name android:layout_width + */ + public static final int ViewGroup_MarginLayout_layout_width = 0; + /** A {@link android.view.ViewStub} lets you lazily include other XML layouts + inside your application at runtime. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStub_id android:id} Supply an identifier name for this view.
{@link #ViewStub_inflatedId android:inflatedId} Overrides the id of the inflated View with this value.
{@link #ViewStub_layout android:layout} Supply an identifier for the layout resource to inflate when the ViewStub + becomes visible or when forced to do so.
+ @see #ViewStub_id + @see #ViewStub_inflatedId + @see #ViewStub_layout + */ + public static final int[] ViewStub = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

+ @attr description + Supply an identifier name for this view. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#id}. + @attr name android:id + */ + public static final int ViewStub_id = 0; + /** +

+ @attr description + Overrides the id of the inflated View with this value. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#inflatedId}. + @attr name android:inflatedId + */ + public static final int ViewStub_inflatedId = 2; + /** +

+ @attr description + Supply an identifier for the layout resource to inflate when the ViewStub + becomes visible or when forced to do so. The layout resource must be a + valid reference to a layout. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#layout}. + @attr name android:layout + */ + public static final int ViewStub_layout = 1; + /** Attributes that can be used with a ViewSwitcher. + */ + public static final int[] ViewSwitcher = { + + }; + /** Attributes that can be assigned to a tag for a particular View. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ViewTag_id android:id} Specifies the key identifying a tag.
{@link #ViewTag_value android:value} Specifies the value with which to tag the view.
+ @see #ViewTag_id + @see #ViewTag_value + */ + public static final int[] ViewTag = { + 0x01010024, 0x010100d0 + }; + /** +

+ @attr description + Specifies the key identifying a tag. This must be a resource reference. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#id}. + @attr name android:id + */ + public static final int ViewTag_id = 1; + /** +

+ @attr description + Specifies the value with which to tag the view. + + +

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

May be an integer value, such as "100". +

May be a boolean value, either "true" or "false". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

May be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#value}. + @attr name android:value + */ + public static final int ViewTag_value = 0; + /** Use with {@link android.transition.Visibility} transitions, such as + slide, explode, and fade to mark which + views are supported. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #VisibilityTransition_transitionVisibilityMode android:transitionVisibilityMode} Changes whether the transition supports appearing and/or disappearing Views.
+ @see #VisibilityTransition_transitionVisibilityMode + */ + public static final int[] VisibilityTransition = { + 0x0101047c + }; + /** +

+ @attr description + Changes whether the transition supports appearing and/or disappearing Views. + Corresponds to {@link android.transition.Visibility#setMode(int)}. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + +
ConstantValueDescription
mode_in1 Only appearing Views will be supported.
mode_out2 Only disappearing Views will be supported.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#transitionVisibilityMode}. + @attr name android:transitionVisibilityMode + */ + public static final int VisibilityTransition_transitionVisibilityMode = 0; + /** Use voice-enrollment-application + as the root tag of the XML resource that escribes the supported keyphrases (hotwords) + by the enrollment application. + Described here are the attributes that can be included in that tag. + @hide + +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #VoiceEnrollmentApplication_searchKeyphrase android:searchKeyphrase} The actual keyphrase/hint text, or empty if not keyphrase dependent.
{@link #VoiceEnrollmentApplication_searchKeyphraseId android:searchKeyphraseId} A globally unique ID for the keyphrase.
{@link #VoiceEnrollmentApplication_searchKeyphraseRecognitionFlags android:searchKeyphraseRecognitionFlags} Flags for supported recognition modes.
{@link #VoiceEnrollmentApplication_searchKeyphraseSupportedLocales android:searchKeyphraseSupportedLocales} A comma separated list of BCP-47 language tag for locales that are supported + for this keyphrase, or empty if not locale dependent.
+ @see #VoiceEnrollmentApplication_searchKeyphrase + @see #VoiceEnrollmentApplication_searchKeyphraseId + @see #VoiceEnrollmentApplication_searchKeyphraseRecognitionFlags + @see #VoiceEnrollmentApplication_searchKeyphraseSupportedLocales + */ + @android.annotation.SystemApi + public static final int[] VoiceEnrollmentApplication = { + 0x0101045e, 0x0101045f, 0x01010460, 0x010104a6 + }; + /** +

+ @attr description + The actual keyphrase/hint text, or empty if not keyphrase dependent. @hide + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#searchKeyphrase}. + @attr name android:searchKeyphrase + */ + @android.annotation.SystemApi + public static final int VoiceEnrollmentApplication_searchKeyphrase = 1; + /** +

+ @attr description + A globally unique ID for the keyphrase. @hide + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#searchKeyphraseId}. + @attr name android:searchKeyphraseId + */ + @android.annotation.SystemApi + public static final int VoiceEnrollmentApplication_searchKeyphraseId = 0; + /** +

+ @attr description + Flags for supported recognition modes. @hide + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
voiceTrigger0x1
userIdentification0x2
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#searchKeyphraseRecognitionFlags}. + @attr name android:searchKeyphraseRecognitionFlags + */ + @android.annotation.SystemApi + public static final int VoiceEnrollmentApplication_searchKeyphraseRecognitionFlags = 3; + /** +

+ @attr description + A comma separated list of BCP-47 language tag for locales that are supported + for this keyphrase, or empty if not locale dependent. @hide + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#searchKeyphraseSupportedLocales}. + @attr name android:searchKeyphraseSupportedLocales + */ + @android.annotation.SystemApi + public static final int VoiceEnrollmentApplication_searchKeyphraseSupportedLocales = 2; + /** Use voice-interaction-service as the root tag of the XML resource that + describes a {@link android.service.voice.VoiceInteractionService}, which is referenced from + its {@link android.service.voice.VoiceInteractionService#SERVICE_META_DATA} meta-data entry. + Described here are the attributes that can be included in that tag. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #VoiceInteractionService_recognitionService android:recognitionService} The service that provides voice recognition.
{@link #VoiceInteractionService_sessionService android:sessionService} The service that hosts active voice interaction sessions.
{@link #VoiceInteractionService_settingsActivity android:settingsActivity} Component name of an activity that allows the user to modify + the settings for this service.
{@link #VoiceInteractionService_supportsAssist android:supportsAssist} Flag indicating whether this voice interaction service is capable of handling the + assist action.
{@link #VoiceInteractionService_supportsLaunchVoiceAssistFromKeyguard android:supportsLaunchVoiceAssistFromKeyguard} Flag indicating whether this voice interaction service is capable of being launched + from the keyguard.
+ @see #VoiceInteractionService_recognitionService + @see #VoiceInteractionService_sessionService + @see #VoiceInteractionService_settingsActivity + @see #VoiceInteractionService_supportsAssist + @see #VoiceInteractionService_supportsLaunchVoiceAssistFromKeyguard + */ + public static final int[] VoiceInteractionService = { + 0x01010225, 0x0101043d, 0x0101049c, 0x010104f0, + 0x010104f1 + }; + /** +

+ @attr description + The service that provides voice recognition. This is required. When the user + selects this voice interaction service, they will also be implicitly selecting + the component here for their recognition service. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#recognitionService}. + @attr name android:recognitionService + */ + public static final int VoiceInteractionService_recognitionService = 2; + /** +

+ @attr description + The service that hosts active voice interaction sessions. This is required. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#sessionService}. + @attr name android:sessionService + */ + public static final int VoiceInteractionService_sessionService = 1; + /** +

+ @attr description + Component name of an activity that allows the user to modify + the settings for this service. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#settingsActivity}. + @attr name android:settingsActivity + */ + public static final int VoiceInteractionService_settingsActivity = 0; + /** +

+ @attr description + Flag indicating whether this voice interaction service is capable of handling the + assist action. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#supportsAssist}. + @attr name android:supportsAssist + */ + public static final int VoiceInteractionService_supportsAssist = 3; + /** +

+ @attr description + Flag indicating whether this voice interaction service is capable of being launched + from the keyguard. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#supportsLaunchVoiceAssistFromKeyguard}. + @attr name android:supportsLaunchVoiceAssistFromKeyguard + */ + public static final int VoiceInteractionService_supportsLaunchVoiceAssistFromKeyguard = 4; + /** Attributes that can be used with a VoiceInteractionSession. + */ + public static final int[] VoiceInteractionSession = { + + }; + /** Base attributes available to VolumePreference. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #VolumePreference_streamType android:streamType} Different audio stream types.
+ @see #VolumePreference_streamType + */ + public static final int[] VolumePreference = { + 0x01010209 + }; + /** +

+ @attr description + Different audio stream types. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
voice0
system1
ring2
music3
alarm4
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#streamType}. + @attr name android:streamType + */ + public static final int VolumePreference_streamType = 0; + /** Use wallpaper as the root tag of the XML resource that + describes an + {@link android.service.wallpaper.WallpaperService}, which is + referenced from its + {@link android.service.wallpaper.WallpaperService#SERVICE_META_DATA} + meta-data entry. Described here are the attributes that can be + included in that tag. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #Wallpaper_author android:author} Name of the author of this component, e.
{@link #Wallpaper_description android:description} Short description of the component's purpose or behavior.
{@link #Wallpaper_settingsActivity android:settingsActivity} Component name of an activity that allows the user to modify + the settings for this service.
{@link #Wallpaper_thumbnail android:thumbnail} Reference to a the wallpaper's thumbnail bitmap.
+ @see #Wallpaper_author + @see #Wallpaper_description + @see #Wallpaper_settingsActivity + @see #Wallpaper_thumbnail + */ + public static final int[] Wallpaper = { + 0x01010020, 0x01010225, 0x010102a5, 0x010102b4 + }; + /** +

+ @attr description + Name of the author of this component, e.g. Google. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#author}. + @attr name android:author + */ + public static final int Wallpaper_author = 3; + /** +

+ @attr description + Short description of the component's purpose or behavior. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#description}. + @attr name android:description + */ + public static final int Wallpaper_description = 0; + /** +

+ @attr description + Component name of an activity that allows the user to modify + the settings for this service. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#settingsActivity}. + @attr name android:settingsActivity + */ + public static final int Wallpaper_settingsActivity = 1; + /** +

+ @attr description + Reference to a the wallpaper's thumbnail bitmap. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#thumbnail}. + @attr name android:thumbnail + */ + public static final int Wallpaper_thumbnail = 2; + /** Use wallpaper-preview as the root tag of the XML resource that + describes a wallpaper preview. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #WallpaperPreviewInfo_staticWallpaperPreview android:staticWallpaperPreview} A resource id of a static drawable.
+ @see #WallpaperPreviewInfo_staticWallpaperPreview + */ + public static final int[] WallpaperPreviewInfo = { + 0x01010331 + }; + /** +

+ @attr description + A resource id of a static drawable. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#staticWallpaperPreview}. + @attr name android:staticWallpaperPreview + */ + public static final int WallpaperPreviewInfo_staticWallpaperPreview = 0; + /** @hide +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #WeightedLinearLayout_majorWeightMax android:majorWeightMax}
{@link #WeightedLinearLayout_majorWeightMin android:majorWeightMin}
{@link #WeightedLinearLayout_minorWeightMax android:minorWeightMax}
{@link #WeightedLinearLayout_minorWeightMin android:minorWeightMin}
+ @see #WeightedLinearLayout_majorWeightMax + @see #WeightedLinearLayout_majorWeightMin + @see #WeightedLinearLayout_minorWeightMax + @see #WeightedLinearLayout_minorWeightMin + */ + public static final int[] WeightedLinearLayout = { + 0x01160065, 0x01160066, 0x01160067, 0x01160068 + }; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#majorWeightMax} + attribute's value can be found in the {@link #WeightedLinearLayout} array. + @attr name com.android.internal:majorWeightMax + */ + public static final int WeightedLinearLayout_majorWeightMax = 2; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#majorWeightMin} + attribute's value can be found in the {@link #WeightedLinearLayout} array. + @attr name com.android.internal:majorWeightMin + */ + public static final int WeightedLinearLayout_majorWeightMin = 0; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#minorWeightMax} + attribute's value can be found in the {@link #WeightedLinearLayout} array. + @attr name com.android.internal:minorWeightMax + */ + public static final int WeightedLinearLayout_minorWeightMax = 3; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#minorWeightMin} + attribute's value can be found in the {@link #WeightedLinearLayout} array. + @attr name com.android.internal:minorWeightMin + */ + public static final int WeightedLinearLayout_minorWeightMin = 1; + /** The set of attributes that describe a Windows's theme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Window_backgroundDimAmount android:backgroundDimAmount} Default background dim amount when a menu, dialog, or something similar pops up.
{@link #Window_backgroundDimEnabled android:backgroundDimEnabled} Control whether dimming behind the window is enabled.
{@link #Window_navigationBarColor android:navigationBarColor} The color for the navigation bar.
{@link #Window_statusBarColor android:statusBarColor} The color for the status bar.
{@link #Window_textColor android:textColor} Color of text (usually same as colorForeground).
{@link #Window_windowActionBar android:windowActionBar} Flag indicating whether this window should have an Action Bar + in place of the usual title bar.
{@link #Window_windowActionBarFullscreenDecorLayout android:windowActionBarFullscreenDecorLayout}
{@link #Window_windowActionBarOverlay android:windowActionBarOverlay} Flag indicating whether this window's Action Bar should overlay + application content.
{@link #Window_windowActionModeOverlay android:windowActionModeOverlay} Flag indicating whether action modes should overlay window content + when there is not reserved space for their UI (such as an Action Bar).
{@link #Window_windowActivityTransitions android:windowActivityTransitions} Flag indicating whether this window allows Activity Transitions.
{@link #Window_windowAllowEnterTransitionOverlap android:windowAllowEnterTransitionOverlap} Flag indicating whether this Window's transition should overlap with + the exiting transition of the calling Activity.
{@link #Window_windowAllowReturnTransitionOverlap android:windowAllowReturnTransitionOverlap} Flag indicating whether this Window's transition should overlap with + the exiting transition of the called Activity when the called Activity + finishes.
{@link #Window_windowAnimationStyle android:windowAnimationStyle} Reference to a style resource holding + the set of window animations to use, which can be + any of the attributes defined by + {@link android.R.styleable#WindowAnimation}.
{@link #Window_windowBackground android:windowBackground} Drawable to use as the overall window background.
{@link #Window_windowBackgroundFallback android:windowBackgroundFallback}
{@link #Window_windowClipToOutline android:windowClipToOutline} Whether to clip window content to the outline of the window background.
{@link #Window_windowCloseOnTouchOutside android:windowCloseOnTouchOutside} Control whether a container should automatically close itself if + the user touches outside of it.
{@link #Window_windowContentOverlay android:windowContentOverlay} This Drawable is overlaid over the foreground of the Window's content area, usually + to place a shadow below the title.
{@link #Window_windowContentTransitionManager android:windowContentTransitionManager} Reference to a TransitionManager XML resource defining the desired + transitions between different window content.
{@link #Window_windowContentTransitions android:windowContentTransitions} Flag indicating whether this window requests that content changes be performed + as scene changes with transitions.
{@link #Window_windowDisablePreview android:windowDisablePreview} Flag allowing you to disable the preview animation for a window.
{@link #Window_windowDrawsSystemBarBackgrounds android:windowDrawsSystemBarBackgrounds} Flag indicating whether this Window is responsible for drawing the background for the + system bars.
{@link #Window_windowElevation android:windowElevation} Elevation to use for the window.
{@link #Window_windowEnableSplitTouch android:windowEnableSplitTouch} Flag indicating that this window should allow touches to be split + across other windows that also support split touch.
{@link #Window_windowEnterTransition android:windowEnterTransition} Reference to a Transition XML resource defining the desired Transition + used to move Views into the initial Window's content Scene.
{@link #Window_windowExitTransition android:windowExitTransition} Reference to a Transition XML resource defining the desired Transition + used to move Views out of the Window's content Scene when launching a new Activity.
{@link #Window_windowFixedHeightMajor android:windowFixedHeightMajor} A fixed height for the window along the major axis of the screen, + that is, when in portrait.
{@link #Window_windowFixedHeightMinor android:windowFixedHeightMinor} A fixed height for the window along the minor axis of the screen, + that is, when in landscape.
{@link #Window_windowFixedWidthMajor android:windowFixedWidthMajor} A fixed width for the window along the major axis of the screen, + that is, when in landscape.
{@link #Window_windowFixedWidthMinor android:windowFixedWidthMinor} A fixed width for the window along the minor axis of the screen, + that is, when in portrait.
{@link #Window_windowFrame android:windowFrame} Drawable to use as a frame around the window.
{@link #Window_windowFullscreen android:windowFullscreen} Flag indicating whether this window should fill the entire screen.
{@link #Window_windowIsFloating android:windowIsFloating} Flag indicating whether this is a floating window.
{@link #Window_windowIsTranslucent android:windowIsTranslucent} Flag indicating whether this is a translucent window.
{@link #Window_windowLightStatusBar android:windowLightStatusBar} If set, the status bar will be drawn such that it is compatible with a light + status bar background.
{@link #Window_windowMinWidthMajor android:windowMinWidthMajor} The minimum width the window is allowed to be, along the major + axis of the screen.
{@link #Window_windowMinWidthMinor android:windowMinWidthMinor} The minimum width the window is allowed to be, along the minor + axis of the screen.
{@link #Window_windowNoDisplay android:windowNoDisplay} Flag indicating that this window should not be displayed at all.
{@link #Window_windowNoTitle android:windowNoTitle} Flag indicating whether there should be no title on this window.
{@link #Window_windowOutsetBottom android:windowOutsetBottom}
{@link #Window_windowOverscan android:windowOverscan} Flag indicating whether this window should extend into overscan region.
{@link #Window_windowReenterTransition android:windowReenterTransition} Reference to a Transition XML resource defining the desired Transition + used to move Views in to the scene when returning from a previously-started Activity.
{@link #Window_windowReturnTransition android:windowReturnTransition} Reference to a Transition XML resource defining the desired Transition + used to move Views out of the scene when the Window is + preparing to close.
{@link #Window_windowSharedElementEnterTransition android:windowSharedElementEnterTransition} Reference to a Transition XML resource defining the desired Transition + used to move shared elements transferred into the Window's initial content Scene.
{@link #Window_windowSharedElementExitTransition android:windowSharedElementExitTransition} Reference to a Transition XML resource defining the desired Transition + used when starting a new Activity to move shared elements prior to transferring + to the called Activity.
{@link #Window_windowSharedElementReenterTransition android:windowSharedElementReenterTransition} Reference to a Transition XML resource defining the desired Transition + used for shared elements transferred back to a calling Activity.
{@link #Window_windowSharedElementReturnTransition android:windowSharedElementReturnTransition} Reference to a Transition XML resource defining the desired Transition + used to move shared elements transferred back to a calling Activity.
{@link #Window_windowSharedElementsUseOverlay android:windowSharedElementsUseOverlay} Indicates whether or not shared elements should use an overlay + during transitions.
{@link #Window_windowShowWallpaper android:windowShowWallpaper} Flag indicating that this window's background should be the + user's current wallpaper.
{@link #Window_windowSoftInputMode android:windowSoftInputMode} Defines the default soft input state that this window would + like when it is displayed.
{@link #Window_windowSwipeToDismiss android:windowSwipeToDismiss} Flag to indicate that a window can be swiped away to be dismissed.
{@link #Window_windowTransitionBackgroundFadeDuration android:windowTransitionBackgroundFadeDuration} The duration, in milliseconds, of the window background fade duration + when transitioning into or away from an Activity when called with an + Activity Transition.
{@link #Window_windowTranslucentNavigation android:windowTranslucentNavigation} Flag indicating whether this window requests a translucent navigation bar.
{@link #Window_windowTranslucentStatus android:windowTranslucentStatus} Flag indicating whether this window requests a translucent status bar.
+ @see #Window_backgroundDimAmount + @see #Window_backgroundDimEnabled + @see #Window_navigationBarColor + @see #Window_statusBarColor + @see #Window_textColor + @see #Window_windowActionBar + @see #Window_windowActionBarFullscreenDecorLayout + @see #Window_windowActionBarOverlay + @see #Window_windowActionModeOverlay + @see #Window_windowActivityTransitions + @see #Window_windowAllowEnterTransitionOverlap + @see #Window_windowAllowReturnTransitionOverlap + @see #Window_windowAnimationStyle + @see #Window_windowBackground + @see #Window_windowBackgroundFallback + @see #Window_windowClipToOutline + @see #Window_windowCloseOnTouchOutside + @see #Window_windowContentOverlay + @see #Window_windowContentTransitionManager + @see #Window_windowContentTransitions + @see #Window_windowDisablePreview + @see #Window_windowDrawsSystemBarBackgrounds + @see #Window_windowElevation + @see #Window_windowEnableSplitTouch + @see #Window_windowEnterTransition + @see #Window_windowExitTransition + @see #Window_windowFixedHeightMajor + @see #Window_windowFixedHeightMinor + @see #Window_windowFixedWidthMajor + @see #Window_windowFixedWidthMinor + @see #Window_windowFrame + @see #Window_windowFullscreen + @see #Window_windowIsFloating + @see #Window_windowIsTranslucent + @see #Window_windowLightStatusBar + @see #Window_windowMinWidthMajor + @see #Window_windowMinWidthMinor + @see #Window_windowNoDisplay + @see #Window_windowNoTitle + @see #Window_windowOutsetBottom + @see #Window_windowOverscan + @see #Window_windowReenterTransition + @see #Window_windowReturnTransition + @see #Window_windowSharedElementEnterTransition + @see #Window_windowSharedElementExitTransition + @see #Window_windowSharedElementReenterTransition + @see #Window_windowSharedElementReturnTransition + @see #Window_windowSharedElementsUseOverlay + @see #Window_windowShowWallpaper + @see #Window_windowSoftInputMode + @see #Window_windowSwipeToDismiss + @see #Window_windowTransitionBackgroundFadeDuration + @see #Window_windowTranslucentNavigation + @see #Window_windowTranslucentStatus + */ + public static final int[] Window = { + 0x01010032, 0x01010054, 0x01010055, 0x01010056, + 0x01010057, 0x01010058, 0x01010059, 0x01010098, + 0x010100ae, 0x0101020d, 0x0101021e, 0x0101021f, + 0x01010222, 0x0101022b, 0x01010292, 0x010102cd, + 0x010102dd, 0x010102e4, 0x01010317, 0x01010356, + 0x01010357, 0x0101035b, 0x010103cf, 0x010103ef, + 0x010103f0, 0x010103f3, 0x010103f8, 0x010103f9, + 0x01010437, 0x01010438, 0x01010439, 0x0101043a, + 0x0101043b, 0x0101043c, 0x01010450, 0x01010451, + 0x01010452, 0x01010461, 0x01010490, 0x010104ab, + 0x010104ae, 0x010104af, 0x010104b0, 0x010104b1, + 0x010104bb, 0x010104cd, 0x010104e0, 0x0116000e, + 0x0116000f, 0x01160038, 0x01160039, 0x0116003a, + 0x0116003b, 0x0116003c + }; + /** +

+ @attr description + Default background dim amount when a menu, dialog, or something similar pops up. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#backgroundDimAmount}. + @attr name android:backgroundDimAmount + */ + public static final int Window_backgroundDimAmount = 0; + /** +

+ @attr description + Control whether dimming behind the window is enabled. The default + theme does not set this value, meaning it is based on whether the + window is floating. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#backgroundDimEnabled}. + @attr name android:backgroundDimEnabled + */ + public static final int Window_backgroundDimEnabled = 11; + /** +

+ @attr description + The color for the navigation bar. If the color is not opaque, consider setting + {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_STABLE} and + {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION}. + For this to take effect, the window must be drawing the system bar backgrounds with + {@link android.R.attr#windowDrawsSystemBarBackgrounds} and the navigation bar must not + have been requested to be translucent with + {@link android.R.attr#windowTranslucentNavigation}. + Corresponds to {@link android.view.Window#setNavigationBarColor(int)}. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#navigationBarColor}. + @attr name android:navigationBarColor + */ + public static final int Window_navigationBarColor = 36; + /** +

+ @attr description + The color for the status bar. If the color is not opaque, consider setting + {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_STABLE} and + {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN}. + For this to take effect, the window must be drawing the system bar backgrounds with + {@link android.R.attr#windowDrawsSystemBarBackgrounds} and the status bar must not + have been requested to be translucent with + {@link android.R.attr#windowTranslucentStatus}. + Corresponds to {@link android.view.Window#setStatusBarColor(int)}. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#statusBarColor}. + @attr name android:statusBarColor + */ + public static final int Window_statusBarColor = 35; + /** +

+ @attr description + Color of text (usually same as colorForeground). + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#textColor}. + @attr name android:textColor + */ + public static final int Window_textColor = 7; + /** +

+ @attr description + Flag indicating whether this window should have an Action Bar + in place of the usual title bar. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowActionBar}. + @attr name android:windowActionBar + */ + public static final int Window_windowActionBar = 15; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#windowActionBarFullscreenDecorLayout} + attribute's value can be found in the {@link #Window} array. + @attr name com.android.internal:windowActionBarFullscreenDecorLayout + */ + public static final int Window_windowActionBarFullscreenDecorLayout = 48; + /** +

+ @attr description + Flag indicating whether this window's Action Bar should overlay + application content. Does nothing if the window would not + have an Action Bar. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowActionBarOverlay}. + @attr name android:windowActionBarOverlay + */ + public static final int Window_windowActionBarOverlay = 17; + /** +

+ @attr description + Flag indicating whether action modes should overlay window content + when there is not reserved space for their UI (such as an Action Bar). + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowActionModeOverlay}. + @attr name android:windowActionModeOverlay + */ + public static final int Window_windowActionModeOverlay = 16; + /** +

+ @attr description + Flag indicating whether this window allows Activity Transitions. + Corresponds to {@link android.view.Window#FEATURE_ACTIVITY_TRANSITIONS}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowActivityTransitions}. + @attr name android:windowActivityTransitions + */ + public static final int Window_windowActivityTransitions = 45; + /** +

+ @attr description + Flag indicating whether this Window's transition should overlap with + the exiting transition of the calling Activity. Corresponds to + {@link android.view.Window#setAllowEnterTransitionOverlap(boolean)}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowAllowEnterTransitionOverlap}. + @attr name android:windowAllowEnterTransitionOverlap + */ + public static final int Window_windowAllowEnterTransitionOverlap = 33; + /** +

+ @attr description + Flag indicating whether this Window's transition should overlap with + the exiting transition of the called Activity when the called Activity + finishes. Corresponds to + {@link android.view.Window#setAllowReturnTransitionOverlap(boolean)}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowAllowReturnTransitionOverlap}. + @attr name android:windowAllowReturnTransitionOverlap + */ + public static final int Window_windowAllowReturnTransitionOverlap = 32; + /** +

+ @attr description + Reference to a style resource holding + the set of window animations to use, which can be + any of the attributes defined by + {@link android.R.styleable#WindowAnimation}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowAnimationStyle}. + @attr name android:windowAnimationStyle + */ + public static final int Window_windowAnimationStyle = 8; + /** +

+ @attr description + Drawable to use as the overall window background. As of + {@link android.os.Build.VERSION_CODES#HONEYCOMB}, this may + be a selector that uses state_accelerated to pick a non-solid + color when running on devices that can draw such a bitmap + with complex compositing on top at 60fps. + +

There are a few special considerations to use when setting this + drawable: +

    +
  • This information will be used to infer the pixel format + for your window's surface. If the drawable has any + non-opaque pixels, your window will be translucent + (32 bpp). +
  • If you want to draw the entire background + yourself, you should set this drawable to some solid + color that closely matches that background (so the + system's preview of your window will match), and + then in code manually set your window's background to + null so it will not be drawn. +
+ + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowBackground}. + @attr name android:windowBackground + */ + public static final int Window_windowBackground = 1; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#windowBackgroundFallback} + attribute's value can be found in the {@link #Window} array. + @attr name com.android.internal:windowBackgroundFallback + */ + public static final int Window_windowBackgroundFallback = 47; + /** +

+ @attr description + Whether to clip window content to the outline of the window background. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowClipToOutline}. + @attr name android:windowClipToOutline + */ + public static final int Window_windowClipToOutline = 39; + /** +

+ @attr description + Control whether a container should automatically close itself if + the user touches outside of it. This only applies to activities + and dialogs. + +

Note: this attribute will only be respected for applications + that are targeting {@link android.os.Build.VERSION_CODES#HONEYCOMB} + or later. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowCloseOnTouchOutside}. + @attr name android:windowCloseOnTouchOutside + */ + public static final int Window_windowCloseOnTouchOutside = 21; + /** +

+ @attr description + This Drawable is overlaid over the foreground of the Window's content area, usually + to place a shadow below the title. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowContentOverlay}. + @attr name android:windowContentOverlay + */ + public static final int Window_windowContentOverlay = 6; + /** +

+ @attr description + Reference to a TransitionManager XML resource defining the desired + transitions between different window content. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowContentTransitionManager}. + @attr name android:windowContentTransitionManager + */ + public static final int Window_windowContentTransitionManager = 27; + /** +

+ @attr description + Flag indicating whether this window requests that content changes be performed + as scene changes with transitions. Corresponds to + {@link android.view.Window#FEATURE_CONTENT_TRANSITIONS}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowContentTransitions}. + @attr name android:windowContentTransitions + */ + public static final int Window_windowContentTransitions = 26; + /** +

+ @attr description + Flag allowing you to disable the preview animation for a window. + The default value is false; if set to true, the system can never + use the window's theme to show a preview of it before your + actual instance is shown to the user. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowDisablePreview}. + @attr name android:windowDisablePreview + */ + public static final int Window_windowDisablePreview = 12; + /** +

+ @attr description + Flag indicating whether this Window is responsible for drawing the background for the + system bars. If true and the window is not floating, the system bars are drawn with a + transparent background and the corresponding areas in this window are filled with the + colors specified in {@link android.R.attr#statusBarColor} and + {@link android.R.attr#navigationBarColor}. Corresponds to + {@link android.view.WindowManager.LayoutParams#FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowDrawsSystemBarBackgrounds}. + @attr name android:windowDrawsSystemBarBackgrounds + */ + public static final int Window_windowDrawsSystemBarBackgrounds = 34; + /** +

+ @attr description + Elevation to use for the window. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowElevation}. + @attr name android:windowElevation + */ + public static final int Window_windowElevation = 38; + /** +

+ @attr description + Flag indicating that this window should allow touches to be split + across other windows that also support split touch. + The default value is true for applications with a targetSdkVersion + of Honeycomb or newer; false otherwise. + When this flag is false, the first pointer that goes down determines + the window to which all subsequent touches go until all pointers go up. + When this flag is true, each pointer (not necessarily the first) that + goes down determines the window to which all subsequent touches of that + pointer will go until that pointers go up thereby enabling touches + with multiple pointers to be split across multiple windows. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowEnableSplitTouch}. + @attr name android:windowEnableSplitTouch + */ + public static final int Window_windowEnableSplitTouch = 18; + /** +

+ @attr description + Reference to a Transition XML resource defining the desired Transition + used to move Views into the initial Window's content Scene. Corresponds to + {@link android.view.Window#setEnterTransition(android.transition.Transition)}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowEnterTransition}. + @attr name android:windowEnterTransition + */ + public static final int Window_windowEnterTransition = 28; + /** +

+ @attr description + Reference to a Transition XML resource defining the desired Transition + used to move Views out of the Window's content Scene when launching a new Activity. + Corresponds to + {@link android.view.Window#setExitTransition(android.transition.Transition)}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowExitTransition}. + @attr name android:windowExitTransition + */ + public static final int Window_windowExitTransition = 29; + /** +

+ @attr description + A fixed height for the window along the major axis of the screen, + that is, when in portrait. Can be either an absolute dimension + or a fraction of the screen size in that dimension. +

This is a private symbol. + @attr name com.android.internal:windowFixedHeightMajor + */ + public static final int Window_windowFixedHeightMajor = 52; + /** +

+ @attr description + A fixed height for the window along the minor axis of the screen, + that is, when in landscape. Can be either an absolute dimension + or a fraction of the screen size in that dimension. +

This is a private symbol. + @attr name com.android.internal:windowFixedHeightMinor + */ + public static final int Window_windowFixedHeightMinor = 50; + /** +

+ @attr description + A fixed width for the window along the major axis of the screen, + that is, when in landscape. Can be either an absolute dimension + or a fraction of the screen size in that dimension. +

This is a private symbol. + @attr name com.android.internal:windowFixedWidthMajor + */ + public static final int Window_windowFixedWidthMajor = 49; + /** +

+ @attr description + A fixed width for the window along the minor axis of the screen, + that is, when in portrait. Can be either an absolute dimension + or a fraction of the screen size in that dimension. +

This is a private symbol. + @attr name com.android.internal:windowFixedWidthMinor + */ + public static final int Window_windowFixedWidthMinor = 51; + /** +

+ @attr description + Drawable to use as a frame around the window. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowFrame}. + @attr name android:windowFrame + */ + public static final int Window_windowFrame = 2; + /** +

+ @attr description + Flag indicating whether this window should fill the entire screen. Corresponds + to {@link android.view.WindowManager.LayoutParams#FLAG_FULLSCREEN}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowFullscreen}. + @attr name android:windowFullscreen + */ + public static final int Window_windowFullscreen = 9; + /** +

+ @attr description + Flag indicating whether this is a floating window. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowIsFloating}. + @attr name android:windowIsFloating + */ + public static final int Window_windowIsFloating = 4; + /** +

+ @attr description + Flag indicating whether this is a translucent window. If this attribute is unset (but + not if set to false), the window might still be considered translucent, if + windowSwipeToDismiss is set to true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowIsTranslucent}. + @attr name android:windowIsTranslucent + */ + public static final int Window_windowIsTranslucent = 5; + /** +

+ @attr description + If set, the status bar will be drawn such that it is compatible with a light + status bar background. +

For this to take effect, the window must be drawing the system bar backgrounds with + {@link android.R.attr#windowDrawsSystemBarBackgrounds} and the status bar must not + have been requested to be translucent with + {@link android.R.attr#windowTranslucentStatus}. + Corresponds to setting {@link android.view.View#SYSTEM_UI_FLAG_LIGHT_STATUS_BAR} on + the decor view. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowLightStatusBar}. + @attr name android:windowLightStatusBar + */ + public static final int Window_windowLightStatusBar = 46; + /** +

+ @attr description + The minimum width the window is allowed to be, along the major + axis of the screen. That is, when in landscape. Can be either + an absolute dimension or a fraction of the screen size in that + dimension. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowMinWidthMajor}. + @attr name android:windowMinWidthMajor + */ + public static final int Window_windowMinWidthMajor = 19; + /** +

+ @attr description + The minimum width the window is allowed to be, along the minor + axis of the screen. That is, when in portrait. Can be either + an absolute dimension or a fraction of the screen size in that + dimension. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowMinWidthMinor}. + @attr name android:windowMinWidthMinor + */ + public static final int Window_windowMinWidthMinor = 20; + /** +

+ @attr description + Flag indicating that this window should not be displayed at all. + The default value is false; if set to true, and this window is + the main window of an Activity, then it will never actually + be added to the window manager. This means that your activity + must immediately quit without waiting for user interaction, + because there will be no such interaction coming. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowNoDisplay}. + @attr name android:windowNoDisplay + */ + public static final int Window_windowNoDisplay = 10; + /** +

+ @attr description + Flag indicating whether there should be no title on this window. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowNoTitle}. + @attr name android:windowNoTitle + */ + public static final int Window_windowNoTitle = 3; + /** +

This symbol is the offset where the {@link com.android.internal.R.attr#windowOutsetBottom} + attribute's value can be found in the {@link #Window} array. + @attr name com.android.internal:windowOutsetBottom + */ + public static final int Window_windowOutsetBottom = 53; + /** +

+ @attr description + Flag indicating whether this window should extend into overscan region. Corresponds + to {@link android.view.WindowManager.LayoutParams#FLAG_LAYOUT_IN_OVERSCAN}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowOverscan}. + @attr name android:windowOverscan + */ + public static final int Window_windowOverscan = 22; + /** +

+ @attr description + Reference to a Transition XML resource defining the desired Transition + used to move Views in to the scene when returning from a previously-started Activity. + Corresponds to + {@link android.view.Window#setReenterTransition(android.transition.Transition)}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowReenterTransition}. + @attr name android:windowReenterTransition + */ + public static final int Window_windowReenterTransition = 41; + /** +

+ @attr description + Reference to a Transition XML resource defining the desired Transition + used to move Views out of the scene when the Window is + preparing to close. Corresponds to + {@link android.view.Window#setReturnTransition(android.transition.Transition)}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowReturnTransition}. + @attr name android:windowReturnTransition + */ + public static final int Window_windowReturnTransition = 40; + /** +

+ @attr description + Reference to a Transition XML resource defining the desired Transition + used to move shared elements transferred into the Window's initial content Scene. + Corresponds to {@link android.view.Window#setSharedElementEnterTransition( + android.transition.Transition)}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowSharedElementEnterTransition}. + @attr name android:windowSharedElementEnterTransition + */ + public static final int Window_windowSharedElementEnterTransition = 30; + /** +

+ @attr description + Reference to a Transition XML resource defining the desired Transition + used when starting a new Activity to move shared elements prior to transferring + to the called Activity. + Corresponds to {@link android.view.Window#setSharedElementExitTransition( + android.transition.Transition)}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowSharedElementExitTransition}. + @attr name android:windowSharedElementExitTransition + */ + public static final int Window_windowSharedElementExitTransition = 31; + /** +

+ @attr description + Reference to a Transition XML resource defining the desired Transition + used for shared elements transferred back to a calling Activity. + Corresponds to {@link android.view.Window#setSharedElementReenterTransition( + android.transition.Transition)}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowSharedElementReenterTransition}. + @attr name android:windowSharedElementReenterTransition + */ + public static final int Window_windowSharedElementReenterTransition = 43; + /** +

+ @attr description + Reference to a Transition XML resource defining the desired Transition + used to move shared elements transferred back to a calling Activity. + Corresponds to {@link android.view.Window#setSharedElementReturnTransition( + android.transition.Transition)}. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowSharedElementReturnTransition}. + @attr name android:windowSharedElementReturnTransition + */ + public static final int Window_windowSharedElementReturnTransition = 42; + /** +

+ @attr description + Indicates whether or not shared elements should use an overlay + during transitions. The default value is true. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowSharedElementsUseOverlay}. + @attr name android:windowSharedElementsUseOverlay + */ + public static final int Window_windowSharedElementsUseOverlay = 44; + /** +

+ @attr description + Flag indicating that this window's background should be the + user's current wallpaper. Corresponds + to {@link android.view.WindowManager.LayoutParams#FLAG_SHOW_WALLPAPER}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowShowWallpaper}. + @attr name android:windowShowWallpaper + */ + public static final int Window_windowShowWallpaper = 14; + /** +

+ @attr description + Defines the default soft input state that this window would + like when it is displayed. Corresponds + to {@link android.view.WindowManager.LayoutParams#softInputMode}. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
stateUnspecified0 Not specified, use what the system thinks is best. This + is the default.
stateUnchanged1 Leave the soft input window as-is, in whatever state it + last was.
stateHidden2 Make the soft input area hidden when normally appropriate + (when the user is navigating forward to your window).
stateAlwaysHidden3 Always make the soft input area hidden when this window + has input focus.
stateVisible4 Make the soft input area visible when normally appropriate + (when the user is navigating forward to your window).
stateAlwaysVisible5 Always make the soft input area visible when this window + has input focus.
adjustUnspecified0x00 The window resize/pan adjustment has not been specified, + the system will automatically select between resize and pan + modes, depending + on whether the content of the window has any layout views + that can scroll their contents. If there is such a view, + then the window will be resized, with the assumption being + that the resizeable area can be reduced to make room for + the input UI.
adjustResize0x10 Always resize the window: the content area of the window is + reduced to make room for the soft input area.
adjustPan0x20 Don't resize the window to make room for the soft input area; + instead pan the contents of the window as focus moves inside + of it so that the user can see what they are typing. This is + generally less desireable than panning because the user may + need to close the input area to get at and interact with + parts of the window.
adjustNothing0x30 Don't resize or pan the window to make room for the + soft input area; the window is never adjusted for it.
+

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowSoftInputMode}. + @attr name android:windowSoftInputMode + */ + public static final int Window_windowSoftInputMode = 13; + /** +

+ @attr description + Flag to indicate that a window can be swiped away to be dismissed. + Corresponds to {@link android.view.Window#FEATURE_SWIPE_TO_DISMISS}. It will also + dynamically change translucency of the window, if the windowIsTranslucent is not set. + If windowIsTranslucent is set (to either true or false) it will obey that setting. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowSwipeToDismiss}. + @attr name android:windowSwipeToDismiss + */ + public static final int Window_windowSwipeToDismiss = 25; + /** +

+ @attr description + The duration, in milliseconds, of the window background fade duration + when transitioning into or away from an Activity when called with an + Activity Transition. Corresponds to + {@link android.view.Window#setTransitionBackgroundFadeDuration(long)}. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowTransitionBackgroundFadeDuration}. + @attr name android:windowTransitionBackgroundFadeDuration + */ + public static final int Window_windowTransitionBackgroundFadeDuration = 37; + /** +

+ @attr description + Flag indicating whether this window requests a translucent navigation bar. Corresponds + to {@link android.view.WindowManager.LayoutParams#FLAG_TRANSLUCENT_NAVIGATION}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowTranslucentNavigation}. + @attr name android:windowTranslucentNavigation + */ + public static final int Window_windowTranslucentNavigation = 24; + /** +

+ @attr description + Flag indicating whether this window requests a translucent status bar. Corresponds + to {@link android.view.WindowManager.LayoutParams#FLAG_TRANSLUCENT_STATUS}. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowTranslucentStatus}. + @attr name android:windowTranslucentStatus + */ + public static final int Window_windowTranslucentStatus = 23; + /** Window animation class attributes. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #WindowAnimation_activityCloseEnterAnimation android:activityCloseEnterAnimation} When closing the current activity, this is the animation that is + run on the next activity (which is entering the screen).
{@link #WindowAnimation_activityCloseExitAnimation android:activityCloseExitAnimation} When closing the current activity, this is the animation that is + run on the current activity (which is exiting the screen).
{@link #WindowAnimation_activityOpenEnterAnimation android:activityOpenEnterAnimation} When opening a new activity, this is the animation that is + run on the next activity (which is entering the screen).
{@link #WindowAnimation_activityOpenExitAnimation android:activityOpenExitAnimation} When opening a new activity, this is the animation that is + run on the previous activity (which is exiting the screen).
{@link #WindowAnimation_launchTaskBehindSourceAnimation android:launchTaskBehindSourceAnimation} When opening an activity in a new task using Intent.
{@link #WindowAnimation_launchTaskBehindTargetAnimation android:launchTaskBehindTargetAnimation} When opening an activity in a new task using Intent/FLAG_ACTIVITY_LAUNCH_BEHIND, + this is the animation that is run on the activity of the new task (which is + entering the screen and then leaving).
{@link #WindowAnimation_taskCloseEnterAnimation android:taskCloseEnterAnimation} When closing the last activity of a task, this is the animation that is + run on the activity of the next task (which is entering the screen).
{@link #WindowAnimation_taskCloseExitAnimation android:taskCloseExitAnimation} When opening an activity in a new task, this is the animation that is + run on the activity of the old task (which is exiting the screen).
{@link #WindowAnimation_taskOpenEnterAnimation android:taskOpenEnterAnimation} When opening an activity in a new task, this is the animation that is + run on the activity of the new task (which is entering the screen).
{@link #WindowAnimation_taskOpenExitAnimation android:taskOpenExitAnimation} When opening an activity in a new task, this is the animation that is + run on the activity of the old task (which is exiting the screen).
{@link #WindowAnimation_taskToBackEnterAnimation android:taskToBackEnterAnimation} When sending the current task to the background, this is the + animation that is run on the top activity of the task behind + it (which is entering the screen).
{@link #WindowAnimation_taskToBackExitAnimation android:taskToBackExitAnimation} When sending the current task to the background, this is the + animation that is run on the top activity of the current task + (which is exiting the screen).
{@link #WindowAnimation_taskToFrontEnterAnimation android:taskToFrontEnterAnimation} When bringing an existing task to the foreground, this is the + animation that is run on the top activity of the task being brought + to the foreground (which is entering the screen).
{@link #WindowAnimation_taskToFrontExitAnimation android:taskToFrontExitAnimation} When bringing an existing task to the foreground, this is the + animation that is run on the current foreground activity + (which is exiting the screen).
{@link #WindowAnimation_wallpaperCloseEnterAnimation android:wallpaperCloseEnterAnimation} When opening a new activity that hides the wallpaper, while + currently showing the wallpaper, this is the animation that + is run on the new activity (which is entering the screen).
{@link #WindowAnimation_wallpaperCloseExitAnimation android:wallpaperCloseExitAnimation} When opening a new activity that hides the wallpaper, while + currently showing the wallpaper, this is the animation that + is run on the old wallpaper activity (which is exiting the screen).
{@link #WindowAnimation_wallpaperIntraCloseEnterAnimation android:wallpaperIntraCloseEnterAnimation} When closing a foreround activity that is on top of the wallpaper + when the previous activity is also on top of the wallpaper, + this is the animation that is run on the previous activity + (which is entering the screen).
{@link #WindowAnimation_wallpaperIntraCloseExitAnimation android:wallpaperIntraCloseExitAnimation} When closing a foreround activity that is on top of the wallpaper + when the previous activity is also on top of the wallpaper, + this is the animation that is run on the current activity + (which is exiting the screen).
{@link #WindowAnimation_wallpaperIntraOpenEnterAnimation android:wallpaperIntraOpenEnterAnimation} When opening a new activity that is on top of the wallpaper + when the current activity is also on top of the wallpaper, + this is the animation that is run on the new activity + (which is entering the screen).
{@link #WindowAnimation_wallpaperIntraOpenExitAnimation android:wallpaperIntraOpenExitAnimation} When opening a new activity that is on top of the wallpaper + when the current activity is also on top of the wallpaper, + this is the animation that is run on the current activity + (which is exiting the screen).
{@link #WindowAnimation_wallpaperOpenEnterAnimation android:wallpaperOpenEnterAnimation} When opening a new activity that shows the wallpaper, while + currently not showing the wallpaper, this is the animation that + is run on the new wallpaper activity (which is entering the screen).
{@link #WindowAnimation_wallpaperOpenExitAnimation android:wallpaperOpenExitAnimation} When opening a new activity that shows the wallpaper, while + currently not showing the wallpaper, this is the animation that + is run on the current activity (which is exiting the screen).
{@link #WindowAnimation_windowEnterAnimation android:windowEnterAnimation} The animation used when a window is being added.
{@link #WindowAnimation_windowExitAnimation android:windowExitAnimation} The animation used when a window is being removed.
{@link #WindowAnimation_windowHideAnimation android:windowHideAnimation} The animation used when a window is going from VISIBLE to INVISIBLE.
{@link #WindowAnimation_windowShowAnimation android:windowShowAnimation} The animation used when a window is going from INVISIBLE to VISIBLE.
+ @see #WindowAnimation_activityCloseEnterAnimation + @see #WindowAnimation_activityCloseExitAnimation + @see #WindowAnimation_activityOpenEnterAnimation + @see #WindowAnimation_activityOpenExitAnimation + @see #WindowAnimation_launchTaskBehindSourceAnimation + @see #WindowAnimation_launchTaskBehindTargetAnimation + @see #WindowAnimation_taskCloseEnterAnimation + @see #WindowAnimation_taskCloseExitAnimation + @see #WindowAnimation_taskOpenEnterAnimation + @see #WindowAnimation_taskOpenExitAnimation + @see #WindowAnimation_taskToBackEnterAnimation + @see #WindowAnimation_taskToBackExitAnimation + @see #WindowAnimation_taskToFrontEnterAnimation + @see #WindowAnimation_taskToFrontExitAnimation + @see #WindowAnimation_wallpaperCloseEnterAnimation + @see #WindowAnimation_wallpaperCloseExitAnimation + @see #WindowAnimation_wallpaperIntraCloseEnterAnimation + @see #WindowAnimation_wallpaperIntraCloseExitAnimation + @see #WindowAnimation_wallpaperIntraOpenEnterAnimation + @see #WindowAnimation_wallpaperIntraOpenExitAnimation + @see #WindowAnimation_wallpaperOpenEnterAnimation + @see #WindowAnimation_wallpaperOpenExitAnimation + @see #WindowAnimation_windowEnterAnimation + @see #WindowAnimation_windowExitAnimation + @see #WindowAnimation_windowHideAnimation + @see #WindowAnimation_windowShowAnimation + */ + public static final int[] WindowAnimation = { + 0x010100b4, 0x010100b5, 0x010100b6, 0x010100b7, + 0x010100b8, 0x010100b9, 0x010100ba, 0x010100bb, + 0x010100bc, 0x010100bd, 0x010100be, 0x010100bf, + 0x010100c0, 0x010100c1, 0x010100c2, 0x010100c3, + 0x01010293, 0x01010294, 0x01010295, 0x01010296, + 0x01010297, 0x01010298, 0x01010299, 0x0101029a, + 0x01010491, 0x01010492 + }; + /** +

+ @attr description + When closing the current activity, this is the animation that is + run on the next activity (which is entering the screen). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#activityCloseEnterAnimation}. + @attr name android:activityCloseEnterAnimation + */ + public static final int WindowAnimation_activityCloseEnterAnimation = 6; + /** +

+ @attr description + When closing the current activity, this is the animation that is + run on the current activity (which is exiting the screen). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#activityCloseExitAnimation}. + @attr name android:activityCloseExitAnimation + */ + public static final int WindowAnimation_activityCloseExitAnimation = 7; + /** +

+ @attr description + When opening a new activity, this is the animation that is + run on the next activity (which is entering the screen). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#activityOpenEnterAnimation}. + @attr name android:activityOpenEnterAnimation + */ + public static final int WindowAnimation_activityOpenEnterAnimation = 4; + /** +

+ @attr description + When opening a new activity, this is the animation that is + run on the previous activity (which is exiting the screen). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#activityOpenExitAnimation}. + @attr name android:activityOpenExitAnimation + */ + public static final int WindowAnimation_activityOpenExitAnimation = 5; + /** +

+ @attr description + When opening an activity in a new task using Intent.FLAG_ACTIVITY_LAUNCH_BEHIND, + this is the animation that is run on the activity of the old task (which is + already on the screen and then stays on). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#launchTaskBehindSourceAnimation}. + @attr name android:launchTaskBehindSourceAnimation + */ + public static final int WindowAnimation_launchTaskBehindSourceAnimation = 25; + /** +

+ @attr description + When opening an activity in a new task using Intent/FLAG_ACTIVITY_LAUNCH_BEHIND, + this is the animation that is run on the activity of the new task (which is + entering the screen and then leaving). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#launchTaskBehindTargetAnimation}. + @attr name android:launchTaskBehindTargetAnimation + */ + public static final int WindowAnimation_launchTaskBehindTargetAnimation = 24; + /** +

+ @attr description + When closing the last activity of a task, this is the animation that is + run on the activity of the next task (which is entering the screen). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#taskCloseEnterAnimation}. + @attr name android:taskCloseEnterAnimation + */ + public static final int WindowAnimation_taskCloseEnterAnimation = 10; + /** +

+ @attr description + When opening an activity in a new task, this is the animation that is + run on the activity of the old task (which is exiting the screen). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#taskCloseExitAnimation}. + @attr name android:taskCloseExitAnimation + */ + public static final int WindowAnimation_taskCloseExitAnimation = 11; + /** +

+ @attr description + When opening an activity in a new task, this is the animation that is + run on the activity of the new task (which is entering the screen). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#taskOpenEnterAnimation}. + @attr name android:taskOpenEnterAnimation + */ + public static final int WindowAnimation_taskOpenEnterAnimation = 8; + /** +

+ @attr description + When opening an activity in a new task, this is the animation that is + run on the activity of the old task (which is exiting the screen). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#taskOpenExitAnimation}. + @attr name android:taskOpenExitAnimation + */ + public static final int WindowAnimation_taskOpenExitAnimation = 9; + /** +

+ @attr description + When sending the current task to the background, this is the + animation that is run on the top activity of the task behind + it (which is entering the screen). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#taskToBackEnterAnimation}. + @attr name android:taskToBackEnterAnimation + */ + public static final int WindowAnimation_taskToBackEnterAnimation = 14; + /** +

+ @attr description + When sending the current task to the background, this is the + animation that is run on the top activity of the current task + (which is exiting the screen). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#taskToBackExitAnimation}. + @attr name android:taskToBackExitAnimation + */ + public static final int WindowAnimation_taskToBackExitAnimation = 15; + /** +

+ @attr description + When bringing an existing task to the foreground, this is the + animation that is run on the top activity of the task being brought + to the foreground (which is entering the screen). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#taskToFrontEnterAnimation}. + @attr name android:taskToFrontEnterAnimation + */ + public static final int WindowAnimation_taskToFrontEnterAnimation = 12; + /** +

+ @attr description + When bringing an existing task to the foreground, this is the + animation that is run on the current foreground activity + (which is exiting the screen). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#taskToFrontExitAnimation}. + @attr name android:taskToFrontExitAnimation + */ + public static final int WindowAnimation_taskToFrontExitAnimation = 13; + /** +

+ @attr description + When opening a new activity that hides the wallpaper, while + currently showing the wallpaper, this is the animation that + is run on the new activity (which is entering the screen). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#wallpaperCloseEnterAnimation}. + @attr name android:wallpaperCloseEnterAnimation + */ + public static final int WindowAnimation_wallpaperCloseEnterAnimation = 18; + /** +

+ @attr description + When opening a new activity that hides the wallpaper, while + currently showing the wallpaper, this is the animation that + is run on the old wallpaper activity (which is exiting the screen). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#wallpaperCloseExitAnimation}. + @attr name android:wallpaperCloseExitAnimation + */ + public static final int WindowAnimation_wallpaperCloseExitAnimation = 19; + /** +

+ @attr description + When closing a foreround activity that is on top of the wallpaper + when the previous activity is also on top of the wallpaper, + this is the animation that is run on the previous activity + (which is entering the screen). The wallpaper remains + static behind the animation. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#wallpaperIntraCloseEnterAnimation}. + @attr name android:wallpaperIntraCloseEnterAnimation + */ + public static final int WindowAnimation_wallpaperIntraCloseEnterAnimation = 22; + /** +

+ @attr description + When closing a foreround activity that is on top of the wallpaper + when the previous activity is also on top of the wallpaper, + this is the animation that is run on the current activity + (which is exiting the screen). The wallpaper remains + static behind the animation. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#wallpaperIntraCloseExitAnimation}. + @attr name android:wallpaperIntraCloseExitAnimation + */ + public static final int WindowAnimation_wallpaperIntraCloseExitAnimation = 23; + /** +

+ @attr description + When opening a new activity that is on top of the wallpaper + when the current activity is also on top of the wallpaper, + this is the animation that is run on the new activity + (which is entering the screen). The wallpaper remains + static behind the animation. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#wallpaperIntraOpenEnterAnimation}. + @attr name android:wallpaperIntraOpenEnterAnimation + */ + public static final int WindowAnimation_wallpaperIntraOpenEnterAnimation = 20; + /** +

+ @attr description + When opening a new activity that is on top of the wallpaper + when the current activity is also on top of the wallpaper, + this is the animation that is run on the current activity + (which is exiting the screen). The wallpaper remains + static behind the animation. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#wallpaperIntraOpenExitAnimation}. + @attr name android:wallpaperIntraOpenExitAnimation + */ + public static final int WindowAnimation_wallpaperIntraOpenExitAnimation = 21; + /** +

+ @attr description + When opening a new activity that shows the wallpaper, while + currently not showing the wallpaper, this is the animation that + is run on the new wallpaper activity (which is entering the screen). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#wallpaperOpenEnterAnimation}. + @attr name android:wallpaperOpenEnterAnimation + */ + public static final int WindowAnimation_wallpaperOpenEnterAnimation = 16; + /** +

+ @attr description + When opening a new activity that shows the wallpaper, while + currently not showing the wallpaper, this is the animation that + is run on the current activity (which is exiting the screen). + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#wallpaperOpenExitAnimation}. + @attr name android:wallpaperOpenExitAnimation + */ + public static final int WindowAnimation_wallpaperOpenExitAnimation = 17; + /** +

+ @attr description + The animation used when a window is being added. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowEnterAnimation}. + @attr name android:windowEnterAnimation + */ + public static final int WindowAnimation_windowEnterAnimation = 0; + /** +

+ @attr description + The animation used when a window is being removed. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowExitAnimation}. + @attr name android:windowExitAnimation + */ + public static final int WindowAnimation_windowExitAnimation = 1; + /** +

+ @attr description + The animation used when a window is going from VISIBLE to INVISIBLE. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowHideAnimation}. + @attr name android:windowHideAnimation + */ + public static final int WindowAnimation_windowHideAnimation = 3; + /** +

+ @attr description + The animation used when a window is going from INVISIBLE to VISIBLE. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

This corresponds to the global attribute + resource symbol {@link android.R.attr#windowShowAnimation}. + @attr name android:windowShowAnimation + */ + public static final int WindowAnimation_windowShowAnimation = 2; + }; }